chore(分包): 拆分pages_tooll子包

This commit is contained in:
2026-01-04 16:02:31 +08:00
parent db8fb25da8
commit 311efe1ecd
32 changed files with 489 additions and 357 deletions

View File

@@ -0,0 +1,29 @@
<template>
<view class="contact" :style="themeColor">
<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>