1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="bottom">
- <view class="row1">
- Copyright changyuntong56.com All Right Reserved @黑龙江畅运通物流供应链有限公司
- </view>
- <view class="">
- <a href="https://beian.miit.gov.cn">黑ICP备2022004661号</a>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'bottom',
- data() {
- return {
- }
- },
- watch: {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" lang="scss">
- .bottom {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: 100rpx 0;
- }
- a {
- text-decoration: none;
- color: black;
- }
- </style>
|