You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
<!--引导用户关注公众号-->
|
|
<template>
|
|
<view class="main">
|
|
<view class="back" />
|
|
<u-navbar
|
|
title="官方客服"
|
|
:safeAreaInsetTop="true"
|
|
:fixed="true"
|
|
bgColor="#FFFFFF"
|
|
:placeholder="true"
|
|
@leftClick="onBackTouched"
|
|
/>
|
|
<view class="body">
|
|
<text>请搜索并关注公众号:兔讯科技</text>
|
|
<u-gap height="24rpx" />
|
|
<text>或扫描下方二维码进行关注</text>
|
|
<u-gap height="24rpx" />
|
|
<image src="../../static/images/gongzhonghao.jpg" mode="widthFix"></image>
|
|
<u-gap height="24rpx" />
|
|
<text>或联系下方电话号码</text>
|
|
<u-gap height="24rpx" />
|
|
<text>400-880-8800</text>
|
|
<u-gap height="24rpx" />
|
|
<u-text mode="link" text="兔迅科技官网" href="http://www.xiguadianjing.com" />
|
|
<u-gap height="24rpx" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
methods:{
|
|
onBackTouched(){
|
|
uni.navigateBack({
|
|
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.body{
|
|
width: 702rpx;
|
|
height: auto;
|
|
border-radius: 20rpx;
|
|
position: relative;
|
|
left: 24rpx;
|
|
top: 24rpx;
|
|
background-color: #FFFFFF;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
}
|
|
</style>
|
|
|