bottom.vue 615 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="bottom">
  3. <view class="row1">
  4. Copyright cyt56.cn All Right Reserved @黑龙江畅运通物流供应链有限公司
  5. </view>
  6. <view class="">
  7. <a href="https://beian.miit.gov.cn">黑ICP备2022004661号</a>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'bottom',
  14. data() {
  15. return {
  16. }
  17. },
  18. watch: {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang="scss" lang="scss">
  25. .bottom {
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: center;
  29. align-items: center;
  30. margin: 100rpx 0;
  31. }
  32. a {
  33. text-decoration: none;
  34. color: black;
  35. }
  36. </style>