添加代码
This commit is contained in:
+17
-10
@@ -98,7 +98,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<CustomTabBar :tabIndex="3"/>
|
||||
<CustomTabBar :tabIndex="4"/>
|
||||
<!-- 品牌入驻弹框 -->
|
||||
<up-modal :show="brandShow" :showConfirmButton = "false">
|
||||
<view class="slot-content">
|
||||
@@ -124,10 +124,10 @@
|
||||
</view>
|
||||
<view class="content_">
|
||||
<view class="content_1">联系客服</view>
|
||||
<view class="content_3">138 8888 8888</view>
|
||||
<view class="content_3">{{CUSTOMER_SERVICE_PHONE_NUMBER}}</view>
|
||||
</view>
|
||||
<view class="but_">
|
||||
<view class="but_copy" @click="copyMobile('13888888888')">复制号码</view>
|
||||
<view class="but_copy" @click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)">复制号码</view>
|
||||
<view class="but_close" @click="serviceShow=false;">取消</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -156,9 +156,15 @@
|
||||
import { copyData } from '@/utils/index.js';
|
||||
import CustomTabBar from '@/components/custom-tab-bar.vue';
|
||||
import { getStatistics } from '@/api/order.js';
|
||||
import { getUserInfo } from '@/api/auth.js'
|
||||
import { getUserInfo } from '@/api/auth.js';
|
||||
import { CUSTOMER_SERVICE_PHONE_NUMBER } from '@/utils/config.js';
|
||||
|
||||
export default {
|
||||
computed: {
|
||||
CUSTOMER_SERVICE_PHONE_NUMBER() {
|
||||
return CUSTOMER_SERVICE_PHONE_NUMBER;
|
||||
},
|
||||
},
|
||||
components:{CustomTabBar},
|
||||
data() {
|
||||
return {
|
||||
@@ -259,12 +265,12 @@
|
||||
// url:'/static/mine/tool_team.png',
|
||||
// path:"/pages/mine_my_team/mine_my_team",
|
||||
// },
|
||||
{
|
||||
id:6,
|
||||
title:"卡券",
|
||||
url:'/static/mine/tool_kj.png',
|
||||
// path:"/pages/mine_coupon/mine_coupon",
|
||||
},
|
||||
// {
|
||||
// id:6,
|
||||
// title:"卡券",
|
||||
// url:'/static/mine/tool_kj.png',
|
||||
// // path:"/pages/mine_coupon/mine_coupon",
|
||||
// },
|
||||
{
|
||||
id:7,
|
||||
title:"联系客服",
|
||||
@@ -385,6 +391,7 @@
|
||||
copyMobile(mobile){
|
||||
copyData(mobile);
|
||||
this.brandShow = false;
|
||||
this.serviceShow = false;
|
||||
},
|
||||
// 查询统计
|
||||
async getStatistics(){
|
||||
|
||||
Reference in New Issue
Block a user