Files
lgp-wx-new/components/common/Footer.vue
2026-06-05 14:06:20 +08:00

23 lines
375 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script>
export default {
name: "Footer"
}
</script>
<template>
<view class="footer">
<view>各位经销商</view>
<view>合作商请绑定公司名称与电话</view>
<view>并联系业务经理</view>
</view>
</template>
<style scoped lang="scss">
.footer {
color: #999;
margin: 50rpx auto;
text-align: center;
line-height: 50rpx;
}
</style>