feat: 修改电话号码
This commit is contained in:
+4
-2
@@ -52,10 +52,12 @@
|
|||||||
"ios" : {
|
"ios" : {
|
||||||
"dSYMs" : false,
|
"dSYMs" : false,
|
||||||
"idfa" : false,
|
"idfa" : false,
|
||||||
"urltypes": [{
|
"urltypes" : [
|
||||||
|
{
|
||||||
"urlidentifier" : "com.trustbridgeapp.mm",
|
"urlidentifier" : "com.trustbridgeapp.mm",
|
||||||
"urlschemes" : [ "trustbridgeapp" ]
|
"urlschemes" : [ "trustbridgeapp" ]
|
||||||
}],
|
}
|
||||||
|
],
|
||||||
"associatedDomains" : [ "applinks:ulink.trustbridgeapp.com" ]
|
"associatedDomains" : [ "applinks:ulink.trustbridgeapp.com" ]
|
||||||
},
|
},
|
||||||
/* SDK配置 */
|
/* SDK配置 */
|
||||||
|
|||||||
@@ -55,7 +55,9 @@
|
|||||||
</up-input>
|
</up-input>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="register_info_item">
|
<view class="register_info_item">
|
||||||
<up-input placeholder="推荐码" border="surround" v-model="form.referralCode" :customStyle="inputCss"></up-input>
|
<up-input placeholder="推荐码" border="surround" v-model="form.referralCode" :customStyle="inputCss"
|
||||||
|
:disabled="disabled"></up-input>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -110,12 +112,18 @@ export default {
|
|||||||
transactionCodeIsShow: false,// 交易密码
|
transactionCodeIsShow: false,// 交易密码
|
||||||
isPolicy: false,
|
isPolicy: false,
|
||||||
butLoading: false,
|
butLoading: false,
|
||||||
|
disabled: false,
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
const pages = getCurrentPages();
|
const pages = getCurrentPages();
|
||||||
const currentPage = pages[pages.length - 1];
|
const currentPage = pages[pages.length - 1];
|
||||||
const id = currentPage.options?.key;
|
const id = currentPage.options?.key;
|
||||||
|
if (id) {
|
||||||
|
this.disabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
this.form.referralCode = id;
|
this.form.referralCode = id;
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
<view class="order_warp">
|
<view class="order_warp">
|
||||||
<view class="order_header">
|
<view class="order_header">
|
||||||
<up-image src="/static/common/left.png" width="20" height="20" bgColor="#f1f6ff00" @click="jumpLeft"></up-image>
|
<up-image src="/static/common/left.png" width="20" height="20" bgColor="#f1f6ff00" @click="jumpLeft"></up-image>
|
||||||
<up-search shape="round" bgColor="#FFFFFFFF" :showAction="false" @blur="onBlur" @search="searchFun" v-model="search"></up-search>
|
<up-search shape="round" bgColor="#FFFFFFFF" :showAction="false" @blur="onBlur" @search="searchFun"
|
||||||
|
v-model="search"></up-search>
|
||||||
</view>
|
</view>
|
||||||
<view class="order_type_title">
|
<view class="order_type_title">
|
||||||
<view :class="form.type === item.id ? 'order_type_title_item order_type_title_item_sel' : 'order_type_title_item'"
|
<view :class="form.type === item.id ? 'order_type_title_item order_type_title_item_sel' : 'order_type_title_item'"
|
||||||
@@ -77,8 +78,8 @@
|
|||||||
<view class="operate_comm operate_but_2" v-if="item.status === ORDER_TYPE.NOT_RECEIVE"
|
<view class="operate_comm operate_but_2" v-if="item.status === ORDER_TYPE.NOT_RECEIVE"
|
||||||
@click="confirmReceiptOk(item)">确认收货
|
@click="confirmReceiptOk(item)">确认收货
|
||||||
</view>
|
</view>
|
||||||
<view class="operate_comm operate_but_2" v-if="!isCheckSigne && index == 0 && item.status === ORDER_TYPE.SUCCEED "
|
<view class="operate_comm operate_but_2"
|
||||||
@click="downShow = true">去签署
|
v-if="!isCheckSigne && index == 0 && item.status === ORDER_TYPE.SUCCEED" @click="downShow = true">去签署
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="operate_comm operate_but_3" v-if="item.status === ORDER_TYPE.UNSHIPPED">提醒发货</view> -->
|
<!-- <view class="operate_comm operate_but_3" v-if="item.status === ORDER_TYPE.UNSHIPPED">提醒发货</view> -->
|
||||||
<view class="operate_comm operate_but_1"
|
<view class="operate_comm operate_but_1"
|
||||||
@@ -158,7 +159,8 @@
|
|||||||
<view class="content_info">
|
<view class="content_info">
|
||||||
<view class="content_info_title">客服电话</view>
|
<view class="content_info_title">客服电话</view>
|
||||||
<view class="content_info_mobile">
|
<view class="content_info_mobile">
|
||||||
{{ CUSTOMER_SERVICE_PHONE_NUMBER }}
|
<!-- {{ CUSTOMER_SERVICE_PHONE_NUMBER }} -->
|
||||||
|
18945829413
|
||||||
<view style="margin-left: 20rpx;">
|
<view style="margin-left: 20rpx;">
|
||||||
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
|
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
|
||||||
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
|
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
|
||||||
@@ -174,7 +176,8 @@
|
|||||||
<view class="content_info">
|
<view class="content_info">
|
||||||
<view class="content_info_title">客服微信</view>
|
<view class="content_info_title">客服微信</view>
|
||||||
<view class="content_info_mobile">
|
<view class="content_info_mobile">
|
||||||
{{ CUSTOMER_SERVICE_PHONE_NUMBER }}
|
<!-- {{ CUSTOMER_SERVICE_PHONE_NUMBER }} -->
|
||||||
|
W-418613
|
||||||
<view style="margin-left: 20rpx;">
|
<view style="margin-left: 20rpx;">
|
||||||
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
|
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
|
||||||
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
|
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
|
||||||
|
|||||||
@@ -55,8 +55,8 @@
|
|||||||
2. 本协议自您首次使用本商城服务时生效。 <br />
|
2. 本协议自您首次使用本商城服务时生效。 <br />
|
||||||
|
|
||||||
客服联系方式:<br />
|
客服联系方式:<br />
|
||||||
电话:18888888888<br />
|
电话:18945829413<br />
|
||||||
邮箱:deshanghui2025@163.com <br />
|
邮箱:2587727989@qq.com <br />
|
||||||
在线客服:商城APP/网站内联系<br />
|
在线客服:商城APP/网站内联系<br />
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user