Files
lucky_shop/pages_tool/member/contact.vue

39 lines
716 B
Vue
Raw Permalink 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.
<template>
<page-meta :page-style="themeColor"></page-meta>
<view class="contact">
<image :src="$util.img('public/uniapp/member/contact_service.png')" mode="widthFix"></image>
<view class="tips">请点击下方按钮联系客服</view>
<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%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin: 150rpx auto 0;
image {
width: 500rpx;
}
.tips{
font-size: 24rpx;
color: #999;
margin-bottom: 20rpx;
}
}
</style>