Merge remote-tracking branch 'origin/mrr_sj_develop_丁杰_20260413_pricer'

This commit is contained in:
cjl520cy 2026-04-16 10:34:54 +08:00
commit a4df9a6269
12 changed files with 15572 additions and 16462 deletions

File diff suppressed because it is too large Load Diff

View File

@ -573,7 +573,7 @@
const currentCityCode = (cityItem.code || '').slice(0, 6)
if (currentCityCode === targetCityCode) {
result.cityIndex = cIdx
const areas = cityItem.areas || []
const areas = cityItem?.areas || []
for (let aIdx = 0; aIdx < areas.length; aIdx++) {
const areaItem = areas[aIdx]
const currentAreaCode = (areaItem.code || '').slice(0, 6)

View File

@ -39,7 +39,7 @@
<view class="service-price">
<text v-if="dataItem.team_buy_id">{{`团购价: `}}</text>¥<text
style="font-size: 34rpx;">{{ dataItem.order_money }}</text>
<text class="service-price-line">{{ dataItem.line_money }}</text>
<!-- <text class="service-price-line">{{ dataItem.line_money }}</text> -->
</view>
</view>

View File

@ -30,7 +30,7 @@
</text>
</view>
<view class="service-time" v-if="dataItem.add_time">下单时间: {{ dataItem.add_time }}</view>
<view class="service-time" v-if="dataItem.add_time && dataItem.state!=7">下单时间: {{ dataItem.add_time }}</view>
</view>
<view class="service-price" >
<text v-if="dataItem.team_buy_id">{{`团购价: `}}</text>¥<text
@ -145,7 +145,7 @@
"待支付",
"待接单",
"待开始",
"进行中",
"待完成",
"已完成",
"已评价",
"已取消",

View File

@ -51,10 +51,10 @@
<view class="btn accept-btn" v-if="dataItem.state == 2 || dataItem.state == 3" @click.stop="emitRefund">申请退款</view>
<!-- 已完成状态再来一单 -->
<view class="btn accept-btn" v-if="dataItem.state == 5" @click.stop="emitReOrder">再来一单</view>
<view class="btn accept-btn" v-if="dataItem.state == 5 || dataItem.state == 7" @click.stop="emitReOrder">再来一单</view>
<!-- 已取消状态重新预订 -->
<view class="btn accept-btn" v-if="dataItem.state == 7" @click.stop="emitReOrder">重新预订</view>
<!-- <view class="btn accept-btn" v-if="dataItem.state == 7" @click.stop="emitReOrder">重新预订</view> -->
</view>
</view>
</template>

View File

@ -180,7 +180,7 @@ export default {
.post(url, data)
.then((res) => {
if (res.code == 1 || res.code == 200) {
uni.showToast({ title: "申请退款", icon: "none" });
uni.showToast({ title: "申请退款成功", icon: "none" });
this.getServicesList();
} else {
uni.showToast({ title: res.msg, icon: "none" });

View File

@ -92,7 +92,7 @@
<text class="label">订单编号</text>
<text class="value">{{ orderInfo.number }}</text>
</view>
<view class="info-item" v-if="orderInfo.server_code">
<view class="info-item" v-if="orderInfo.server_code && orderInfo.state !=7">
<text class="label">服务码</text>
<text class="value">{{ orderInfo.server_code }}</text>
</view>

View File

@ -216,7 +216,7 @@
debounce
} from '@/utils/debounce.js';
import uploadImage from '../../utils/uploadImage';
import permissionUtils from '../../utils/per'; //
import permissionUtils from '../../utils/per'; //
import locationService from '../../utils/locationService'; //
export default {
@ -254,8 +254,12 @@
applyType: 3,
//
hours: Array.from({ length: 24 }, (_, i) => i < 10 ? `0${i}` : `${i}`),
minutes: Array.from({ length: 60 }, (_, i) => i < 10 ? `0${i}` : `${i}`),
hours: Array.from({
length: 24
}, (_, i) => i < 10 ? `0${i}` : `${i}`),
minutes: Array.from({
length: 60
}, (_, i) => i < 10 ? `0${i}` : `${i}`),
indicatorStyle: 'height: 68rpx;',
//
@ -294,7 +298,7 @@
this.loadApplyDetails();
this.locatinCitys = this.ChinaCitys[0].citys;
this.locationAreas = this.locatinCitys[0].areas;
this.locationAreas = this.locatinCitys[0]?.areas || [];
},
onUnload() {
uni.$off('address-selected-for-sj');
@ -351,7 +355,9 @@
console.log('开始获取用户信息...');
const type = 3;
request.post('/user/getuser', { type }).then(result => {
request.post('/user/getuser', {
type
}).then(result => {
console.log('接口返回完整数据:', result);
if (result.state === 1 && result.data) {
@ -380,8 +386,12 @@
this.longitude = userData.longitude || '';
this.latitude = userData.latitude || '';
this.pendingData = { ...this.originalData };
this.displayData = { ...this.originalData };
this.pendingData = {
...this.originalData
};
this.displayData = {
...this.originalData
};
console.log('数据初始化完成');
} else {
@ -426,7 +436,9 @@
async loadApplyDetails() {
try {
console.log('开始加载申请详情...');
const res = await request.post('/sj/userSjAuth/details', { apply_type: this.applyType });
const res = await request.post('/sj/userSjAuth/details', {
apply_type: this.applyType
});
console.log('申请详情接口返回:', res);
@ -460,7 +472,8 @@
address: detail.address || this.originalData.address,
major: detail.major || this.originalData.major,
dependency_code: detail.dependency_code || this.originalData.dependency_code,
dependency_province: detail.dependency_province || this.originalData.dependency_province,
dependency_province: detail.dependency_province || this.originalData
.dependency_province,
dependency_city: detail.dependency_city || this.originalData.dependency_city,
longitude: detail.longitude || this.originalData.longitude,
latitude: detail.latitude || this.originalData.latitude,
@ -469,7 +482,9 @@
}
if (this.auditStatus === 2) {
this.originalData = { ...this.pendingData };
this.originalData = {
...this.pendingData
};
}
}
@ -506,19 +521,25 @@
this.buttonType = 'view';
this.editable = false;
this.showPendingData = false;
this.displayData = { ...this.originalData };
this.displayData = {
...this.originalData
};
} else if (this.auditStatus === 3) {
this.showAuditTip = false;
this.buttonType = 'reject';
this.editable = false;
this.showPendingData = false;
this.displayData = { ...this.originalData };
this.displayData = {
...this.originalData
};
} else {
this.showAuditTip = false;
this.buttonType = 'change';
this.editable = false;
this.showPendingData = false;
this.displayData = { ...this.originalData };
this.displayData = {
...this.originalData
};
}
this.updateNavTitle();
@ -540,23 +561,31 @@
startChange() {
this.editable = true;
this.buttonType = 'edit';
this.displayData = { ...this.pendingData };
this.displayData = {
...this.pendingData
};
this.updateNavTitle();
},
cancelChange() {
this.editable = false;
this.buttonType = 'change';
this.displayData = { ...this.originalData };
this.displayData = {
...this.originalData
};
this.updateNavTitle();
},
togglePendingData() {
this.showPendingData = !this.showPendingData;
if (this.showPendingData) {
this.displayData = { ...this.pendingData };
this.displayData = {
...this.pendingData
};
} else {
this.displayData = { ...this.originalData };
this.displayData = {
...this.originalData
};
}
this.updateNavTitle();
},
@ -570,9 +599,13 @@
}
try {
uni.showLoading({ title: '提交中...' });
uni.showLoading({
title: '提交中...'
});
this.pendingData = { ...this.displayData };
this.pendingData = {
...this.displayData
};
const submitData = {
apply_type: this.applyType,
@ -595,13 +628,18 @@
uni.hideLoading();
if (res.code === 200) {
uni.showToast({ title: '提交成功', icon: 'none' });
uni.showToast({
title: '提交成功',
icon: 'none'
});
this.backText = '';
this.auditStatus = 1;
this.hasResubmitted = true;
this.pendingData = { ...this.displayData };
this.pendingData = {
...this.displayData
};
this.editable = false;
this.buttonType = 'view';
@ -613,34 +651,55 @@
}, 1500);
} else {
uni.showToast({ title: res.msg || '提交失败', icon: 'none' });
uni.showToast({
title: res.msg || '提交失败',
icon: 'none'
});
}
} catch (error) {
uni.hideLoading();
console.error('提交失败:', error);
uni.showToast({ title: '网络错误,请重试', icon: 'none' });
uni.showToast({
title: '网络错误,请重试',
icon: 'none'
});
}
},
validateForm() {
if (!this.displayData.head_photo) {
uni.showToast({ title: '请上传店铺logo', icon: 'none' });
uni.showToast({
title: '请上传店铺logo',
icon: 'none'
});
return false;
}
if (!this.displayData.name) {
uni.showToast({ title: '请输入店铺名称', icon: 'none' });
uni.showToast({
title: '请输入店铺名称',
icon: 'none'
});
return false;
}
if (!this.displayData.dependency) {
uni.showToast({ title: '请选择门店所在地', icon: 'none' });
uni.showToast({
title: '请选择门店所在地',
icon: 'none'
});
return false;
}
if (!this.displayData.address) {
uni.showToast({ title: '请选择门店详细地址', icon: 'none' });
uni.showToast({
title: '请选择门店详细地址',
icon: 'none'
});
return false;
}
if (!this.displayData.major) {
uni.showToast({ title: '请选择专业经验', icon: 'none' });
uni.showToast({
title: '请选择专业经验',
icon: 'none'
});
return false;
}
return true;
@ -688,93 +747,105 @@
//
const res = await new Promise((resolve, reject) => {
uni.showActionSheet({
itemList: ['拍照', '从相册选择'],
success: resolve,
fail: reject
itemList: ['拍照', '从相册选择'],
success: resolve,
fail: reject
});
}).catch(() => ({ tapIndex: -1 }));
}).catch(() => ({
tapIndex: -1
}));
if (res.tapIndex === -1) return; //
//
if (res.tapIndex === 0) {
if (isIOS) {
this._openCamera(type, ['camera']);
this._openCamera(type, ['camera']);
} else {
this.isShowCameraPer = true;
const { granted } = await permissionUtils.checkPermission('camera', '需要相机权限以拍照');
if (granted) {
this.isShowCameraPer = true;
const {
granted
} = await permissionUtils.checkPermission('camera', '需要相机权限以拍照');
if (granted) {
this.isShowCameraPer = false;
this._openCamera(type, ['camera']);
return;
}
this.isShowCameraPer = false;
this._openCamera(type, ['camera']);
return;
}
this.isShowCameraPer = false;
const confirm = await this.showPermissionDialog('相机权限申请', '我们需要访问您的相机权限以便您拍照上传店铺logo');
if (!confirm) return;
const result = await permissionUtils.requestPermission('camera', '需要相机权限以拍照');
if (result) {
this._openCamera(type, ['camera']);
} else {
locationService.openAppSettings();
}
const confirm = await this.showPermissionDialog('相机权限申请', '我们需要访问您的相机权限以便您拍照上传店铺logo');
if (!confirm) return;
const result = await permissionUtils.requestPermission('camera', '需要相机权限以拍照');
if (result) {
this._openCamera(type, ['camera']);
} else {
locationService.openAppSettings();
}
}
}
//
else if (res.tapIndex === 1) {
if (isIOS) {
this._openCamera(type, ['album']);
this._openCamera(type, ['album']);
} else {
this.isShowStoragePer = true;
const { granted } = await permissionUtils.checkPermission('photo_library', '需要存储权限以选择照片');
if (granted) {
this.isShowStoragePer = true;
const {
granted
} = await permissionUtils.checkPermission('photo_library', '需要存储权限以选择照片');
if (granted) {
this.isShowStoragePer = false;
this._openCamera(type, ['album']);
return;
}
this.isShowStoragePer = false;
this._openCamera(type, ['album']);
return;
}
this.isShowStoragePer = false;
const confirm = await this.showPermissionDialog('存储权限申请', '我们需要访问您的相册权限以便您上传店铺logo');
if (!confirm) return;
const result = await permissionUtils.requestPermission('photo_library', '需要存储权限以选择照片');
if (result) {
this._openCamera(type, ['album']);
} else {
locationService.openAppSettings();
}
const confirm = await this.showPermissionDialog('存储权限申请', '我们需要访问您的相册权限以便您上传店铺logo');
if (!confirm) return;
const result = await permissionUtils.requestPermission('photo_library', '需要存储权限以选择照片');
if (result) {
this._openCamera(type, ['album']);
} else {
locationService.openAppSettings();
}
}
}
},
},
// /
async _openCamera(type, sourceType) {
// /
async _openCamera(type, sourceType) {
try {
const chooseResult = await new Promise((resolve, reject) => {
uni.chooseImage({
count: 1,
sizeType: ['compressed'],
sourceType: sourceType,
success: resolve,
fail: reject
});
uni.chooseImage({
count: 1,
sizeType: ['compressed'],
sourceType: sourceType,
success: resolve,
fail: reject
});
});
if (!chooseResult.tempFilePaths || chooseResult.tempFilePaths.length === 0) return;
const tempFilePath = chooseResult.tempFilePaths[0];
const file = { path: tempFilePath, size: 0 };
const file = {
path: tempFilePath,
size: 0
};
const result = await this.directUpload(file, this.userId, this.identity + 1);
if (result) {
this.displayData.head_photo = result;
console.log('图片上传成功head_photo 更新为:', result);
this.displayData.head_photo = result;
console.log('图片上传成功head_photo 更新为:', result);
}
} catch (err) {
console.log('上传图片错误:', err);
if (!err.errMsg || !err.errMsg.includes('cancel')) {
uni.showToast({ title: '上传失败', icon: 'none' });
uni.showToast({
title: '上传失败',
icon: 'none'
});
}
}
},
},
//
showPermissionDialog(title, content) {
@ -805,7 +876,10 @@
if (!chooseResult.tempFilePaths || chooseResult.tempFilePaths.length === 0) return;
const tempFilePath = chooseResult.tempFilePaths[0];
const file = { path: tempFilePath, size: 0 };
const file = {
path: tempFilePath,
size: 0
};
const result = await this.directUpload(file, this.userId, this.identity + 1);
@ -816,7 +890,10 @@
} catch (err) {
console.log('上传图片错误:', err);
if (!err.errMsg || !err.errMsg.includes('cancel')) {
uni.showToast({ title: '上传失败', icon: 'none' });
uni.showToast({
title: '上传失败',
icon: 'none'
});
}
}
},
@ -839,7 +916,10 @@
let name = `${userId}_${artisan}_${date}.${fileExtension}`;
console.log('安全文件名:', name);
const ossConfig = await request.post('/user/getalioss', { type, kind: 1 });
const ossConfig = await request.post('/user/getalioss', {
type,
kind: 1
});
return await new Promise((resolve, reject) => {
uni.uploadFile({
@ -883,7 +963,7 @@
let index1 = e.detail.value[0] || 0;
let index2 = e.detail.value[1] || 0;
this.locatinCitys = this.ChinaCitys[index1].citys;
this.locationAreas = this.locatinCitys[index2].areas;
this.locationAreas = this.locatinCitys[index2]?.areas || [];
},
confirmLocationSelect() {
let valueArr = this.locationValue;
@ -1008,7 +1088,9 @@
});
},
_navigateToAddress({ canInitCurrentLocation = false } = {}) {
_navigateToAddress({
canInitCurrentLocation = false
} = {}) {
let params = 'source=sj_info';
const dependency = String(this.displayData.dependency || '').trim();
@ -1068,7 +1150,8 @@
const regionParts = [];
if (addressData.pname) regionParts.push(addressData.pname);
if (addressData.cityname && addressData.cityname !== addressData.pname) regionParts.push(addressData.cityname);
if (addressData.cityname && addressData.cityname !== addressData.pname) regionParts.push(addressData
.cityname);
if (addressData.adname) regionParts.push(addressData.adname);
const regionText = regionParts.join('');
@ -1308,7 +1391,7 @@
}
/* 左侧标签:固定宽度,不换行 */
.form-item-two > text.label {
.form-item-two>text.label {
flex-shrink: 0;
font-size: 28rpx;
color: #333333;
@ -1337,8 +1420,10 @@
.picker-value,
.placeholder {
flex: 1; /* 占据剩余宽度 */
text-align: right; /* 文字右对齐 */
flex: 1;
/* 占据剩余宽度 */
text-align: right;
/* 文字右对齐 */
font-size: 28rpx;
word-break: break-all;
white-space: normal;

View File

@ -22,7 +22,8 @@
<view class="kh-card-footer-left flex-row-center">
<image class="kh-card-footer-left-img" :src="orderInfo.order_headphoto"></image>
<view class="kh-card-footer-left-text">
{{ `${orderInfo.order_username} ${orderInfo.phone_user}` }}</view>
{{ `${orderInfo.order_username} ${orderInfo.phone_user}` }}
</view>
</view>
<image class="kh-card-footer-right" @click="contactService(orderInfo.phone_user)"
src="/static/images/icons/phone.png"></image>
@ -58,7 +59,7 @@
</view>
<!-- 店铺信息 -->
<view class="shop_card"
<!-- <view class="shop_card"
v-if=" serviceType !== '2' && orderInfo.order_kind !== 3 && user_sj && user_sj.name">
<view class="shop_info_box">
<view class="shop_info_row">
@ -89,9 +90,24 @@
<text class="shop_address" v-if="user_sj.address">地址{{ user_sj.address }}</text>
</view>
</view>
</view>
</view> -->
<!-- 用户信息 -->
<!-- <view class="shop_card" v-if="orderInfo.order_kind==2">
<view class="userinfo">
<view class="" v-if="orderInfo.user_yh.head_photo">
<image :src="orderInfo.user_yh.head_photo" mode="widthFix"
style="width: 70rpx;border-radius: 50%;"></image>
</view>
<view class="" style="margin-left: 20rpx;margin-top: 15rpx;">{{orderInfo.user_yh.username}}</view>
<view class="" style="margin-left: 12rpx;margin-top: 15rpx;">{{orderInfo.user_yh.account}}</view>
<view class="" style="margin-left: auto;" @click="contactService(orderInfo.user_yh.account)">
<image
src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/1cd9338d-f5b3-421b-8757-92578387e05d.png"
mode="widthFix" style="width: 40rpx;margin-top: 15rpx;"></image>
</view>
</view>
</view> -->
<!-- 服务时段 -->
<view class="time_card" v-if="orderInfo.order_kind == 3">
<view class="card_title">服务时段</view>
@ -107,7 +123,7 @@
<!-- 预约信息 -->
<view class="booking-card">
<view class="card_title">预约服务信息</view>
<view class="card_title">预约信息</view>
<view class="service-item">
<image :src="orderInfo.server_photo[0]"
v-if="orderInfo.server_photo && orderInfo.server_photo.length != 0" mode="aspectFill"
@ -117,7 +133,7 @@
<view class="service-name-num">×1</view>
</view>
<view v-if="orderInfo.team_buy_id" class="group-price">
<view class="service-price">原价¥{{ orderInfo.cost_money }}</view>
<!-- <view class="service-price">原价¥{{ orderInfo.cost_money }}</view> -->
<view class="service-price2">团购价:¥<text style="font-size: 36rpx">{{
orderInfo.order_money
}}</text></view>
@ -127,11 +143,33 @@
</text>
</view>
</view>
<view class="service-item1">
<view class="serverinfo">
<view class="serverinfo-l">服务售价</view>
<view class="serverinfo-r">
<view class="serverinfo-r-o" v-if="orderInfo.cost_money!=orderInfo.line_money">
{{orderInfo.line_money}}</view>
<view class="serverinfo-r-t">{{orderInfo.cost_money}}</view>
</view>
</view>
</view>
<view class="service-item1">
<view class="payinfo">
<view class="payinfo-l">用户实付</view>
<view class="payinfo-r">{{orderInfo.pay_money}}</view>
</view>
</view>
<view class="service-item1" v-if="orderInfo.butie_zonge && orderInfo.butie_zonge!=0">
<view class="btinfo">
<view class="btinfo-l">平台补贴</view>
<view class="btinfo-r">{{orderInfo.butie_zonge}}</view>
</view>
</view>
<view class="service-real">
<text class="real-lable">实付金额</text>
<text class="real-lable">商家结算基数</text>
<view class="real-price">
<text class="icon"></text>
<text>{{ orderInfo.pay_money?orderInfo.pay_money:0 }}</text>
<text>{{ orderInfo.jiesuan_jine_yiju?orderInfo.jiesuan_jine_yiju:0 }}</text>
</view>
</view>
</view>
@ -213,10 +251,29 @@
<text class="value">{{orderInfo.team_buy_order_number}}</text>
</view>
</view>
<view class="order-card" v-if="Object.keys(orderInfo.coupon_info).length>0">
<text class="card-title">优惠券信息</text>
<view class="coupon-item">
<view class="info-item">
<text class="label">优惠券</text>
<text class="value">{{orderInfo.coupon_info.title}}</text>
</view>
<view class="info-item">
<text class="label">券码</text>
<text class="value">{{orderInfo.coupon_info.code_num}}</text>
</view>
<view class="info-item">
<text class="label">优惠金额</text>
<text class="value">{{orderInfo.coupon_info.reduce_money}}</text>
</view>
</view>
</view>
</view>
<!-- 底部按钮 -->
<view class="bottom-buttons" v-if="haveButton && (orderInfo.state == 2) || orderInfo.state == 3 || orderInfo.state == 4">
<view class="bottom-buttons"
v-if="haveButton && (orderInfo.state == 2) || orderInfo.state == 3 || orderInfo.state == 4">
<!-- <view class="contact-button" @click="contactService(orderInfo.phone_user)">
<image src="/static/images/tell_icon.png" class="tell-icon"></image>
<text class="contact-text">联系TA</text>
@ -355,12 +412,12 @@
state: "2",
},
{
text: "待服务",
icon: "/static/images/icons/pendingService.png",
text: "待开始",
icon: "/static/images/icons/daikaishi.png",
state: "3",
},
{
text: "服务中",
text: "待完成",
icon: "/static/images/icons/pendingService.png",
state: "4",
},
@ -386,9 +443,11 @@
},
methods: {
//
messageRead(id){
request.post("/sj/push/messageRead",{id:id}).then(res=>{
console.log("messageRead:",res)
messageRead(id) {
request.post("/sj/push/messageRead", {
id: id
}).then(res => {
console.log("messageRead:", res)
this.messageUpudateNum()
})
},
@ -1536,4 +1595,120 @@
}
}
}
.userinfo {
display: flex;
}
.serverinfo {
display: flex;
justify-content: space-between;
}
.serverinfo-l {
width: 120rpx;
height: 42rpx;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 30rpx;
color: #333333;
line-height: 42rpx;
text-align: left;
font-style: normal;
}
.serverinfo-r {
display: flex;
}
.serverinfo-r-o {
height: 40rpx;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 26rpx;
color: #999999;
line-height: 40rpx;
text-align: left;
font-style: normal;
// margin-left: 350rpx;
text-decoration: line-through;
}
.serverinfo-r-t {
height: 40rpx;
font-family: DINPro, DINPro;
font-weight: 500;
font-size: 32rpx;
color: #333333;
line-height: 40rpx;
text-align: left;
font-style: normal;
margin-left: 17rpx;
}
.service-item1 {
margin-bottom: 32rpx;
}
.payinfo {
display: flex;
justify-content: space-between;
}
.payinfo-l {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 26rpx;
color: #666666;
line-height: 37rpx;
text-align: left;
font-style: normal;
}
.payinfo-r {
font-family: DINPro, DINPro;
font-weight: 500;
font-size: 32rpx;
color: #333333;
line-height: 41rpx;
text-align: left;
font-style: normal;
}
.btinfo {
display: flex;
justify-content: space-between;
}
.btinfo-l {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 26rpx;
color: #666666;
line-height: 37rpx;
text-align: left;
font-style: normal;
}
.btinfo-r {
font-family: DINPro, DINPro;
font-weight: 500;
font-size: 30rpx;
color: #333333;
line-height: 38rpx;
text-align: left;
font-style: normal;
}
.coupon-title{
width: 160rpx;
height: 40rpx;
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
line-height: 39rpx;
text-align: left;
font-style: normal;
}
.coupon-item {}
</style>

View File

@ -1,7 +1,7 @@
<template>
<view class="orders-page">
<!-- 顶部导航栏 -->
<custom-navbar title="全部订单" :show-back="true" backgroundColor="#fff"></custom-navbar>
<custom-navbar title="订单列表" :show-back="true" backgroundColor="#fff"></custom-navbar>
<!-- <serviecFirstTab :tabs="tabs" :activeId="activeId" @tab-click="tabClick" bgColor="#FAFAFA">
</serviecFirstTab> -->
<view class="status">
@ -125,7 +125,7 @@
},
{
id: 4,
title: "进行中",
title: "待完成",
},
{
id: 5,

View File

@ -60,7 +60,7 @@
},
{
id: 4,
text: "进行中",
text: "待完成",
},
{
id: 5,

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB