|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view v-if="!['待接单', '已完成'].includes(content.where.status)" style="background-color: #fff;">
|
|
|
+ <view v-if="!['待接单', '已完工'].includes(content.where.status)" style="background-color: #fff;">
|
|
|
<up-tabs lineColor="#3874F6" :scrollable="false" current="1" :list="[{
|
|
|
name: '待开始'
|
|
|
}, {
|
|
|
@@ -30,7 +30,7 @@
|
|
|
<view class="user">
|
|
|
{{ item.customername + ' ' + item.customerphonenumber }}
|
|
|
</view>
|
|
|
- <view v-if="content.where.status != '已完结'" class="but-box" @click.stop>
|
|
|
+ <view v-if="content.where.status != '已完工'" class="but-box" @click.stop>
|
|
|
<view class="but-box-item">
|
|
|
<My-button :customStyle="{
|
|
|
'background-color': '#FFFFFF',
|
|
|
@@ -117,11 +117,11 @@ onLoad((options) => {
|
|
|
});
|
|
|
content.where.status = '进行中';
|
|
|
break;
|
|
|
- case '已完结':
|
|
|
+ case '已完工':
|
|
|
uni.setNavigationBarTitle({
|
|
|
- title: '已完结工单'
|
|
|
+ title: '已完工工单'
|
|
|
});
|
|
|
- content.where.status = '已完成';
|
|
|
+ content.where.status = '已完工';
|
|
|
break;
|
|
|
}
|
|
|
getList();
|