feat: 修改电话号码

This commit is contained in:
2025-08-23 15:29:32 +08:00
parent e763c6944a
commit d50d5d2fcc
4 changed files with 116 additions and 103 deletions
+12 -9
View File
@@ -2,7 +2,8 @@
<view class="order_warp">
<view class="order_header">
<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 class="order_type_title">
<view :class="form.type === item.id ? 'order_type_title_item order_type_title_item_sel' : 'order_type_title_item'"
@@ -12,7 +13,7 @@
</view>
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height: calc(100vh - 300rpx);">
<view v-if="orderList && orderList.length !== 0" class="order_list_warp">
<view class="order_item" v-for="(item,index) in orderList" :key="item.id">
<view class="order_item" v-for="(item, index) in orderList" :key="item.id">
<!-- 头部 -->
<view class="order_item_header">
<view class="order_item_header_left">
@@ -77,8 +78,8 @@
<view class="operate_comm operate_but_2" v-if="item.status === ORDER_TYPE.NOT_RECEIVE"
@click="confirmReceiptOk(item)">确认收货
</view>
<view class="operate_comm operate_but_2" v-if="!isCheckSigne && index == 0 && item.status === ORDER_TYPE.SUCCEED "
@click="downShow = true">去签署
<view class="operate_comm operate_but_2"
v-if="!isCheckSigne && index == 0 && item.status === ORDER_TYPE.SUCCEED" @click="downShow = true">去签署
</view>
<!-- <view class="operate_comm operate_but_3" v-if="item.status === ORDER_TYPE.UNSHIPPED">提醒发货</view> -->
<view class="operate_comm operate_but_1"
@@ -158,7 +159,8 @@
<view class="content_info">
<view class="content_info_title">客服电话</view>
<view class="content_info_mobile">
{{ CUSTOMER_SERVICE_PHONE_NUMBER }}
<!-- {{ CUSTOMER_SERVICE_PHONE_NUMBER }} -->
18945829413
<view style="margin-left: 20rpx;">
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
@@ -174,7 +176,8 @@
<view class="content_info">
<view class="content_info_title">客服微信</view>
<view class="content_info_mobile">
{{ CUSTOMER_SERVICE_PHONE_NUMBER }}
<!-- {{ CUSTOMER_SERVICE_PHONE_NUMBER }} -->
W-418613
<view style="margin-left: 20rpx;">
<up-image src="/static/common/copy_c.png" width="14" height="14" bgColor="#f1f6ff00"
@click="copyMobile(CUSTOMER_SERVICE_PHONE_NUMBER)"></up-image>
@@ -288,7 +291,7 @@ export default {
downShow: false,
selectItem: null,
userInfo: null,
search:''
search: ''
}
},
@@ -336,7 +339,7 @@ export default {
url: '/pages/mine/mine',
})
},
onBlur(){
onBlur() {
this.loadData();
},
searchFun(val) {
@@ -403,7 +406,7 @@ export default {
page,
pageSize,
}
if(this.search){
if (this.search) {
params['search'] = this.search;
}
const data = await getOrderList(params);