This commit is contained in:
2025-10-27 15:55:29 +08:00
commit 6632080b83
513 changed files with 117442 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<template>
<page-meta :page-style="themeColor"></page-meta>
<view class="contact">
<image :src="$util.img('public/uniapp/member/contact_service.png')" mode="widthFix"></image>
<!--<ns-contact><button type="primary">联系客服</button></ns-contact>-->
</view>
</template>
<script>
export default {
data() {
return {};
},
onLoad(options) {},
onShow() {},
methods: {}
};
</script>
<style lang="scss">
.contact {
width: 80%;
text-align: center;
margin: 0 auto;
image {
width: 500rpx;
}
}
</style>