|
@@ -60,7 +60,12 @@
|
|
|
<text class="detail-value">{{ record.ywyName }}</text>
|
|
<text class="detail-value">{{ record.ywyName }}</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
- <view class="detail-row" v-if="record.status === 2 || record.status === 3">
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <view class="detail-row" v-if="record.status === 1">
|
|
|
|
|
+ <text class="detail-label" >业务员提交时间</text>
|
|
|
|
|
+ <text class="detail-value">{{ record. applyTime }}</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="detail-row" v-if="record.status === 2 || record.status === 3">
|
|
|
<text class="detail-label">申请时间</text>
|
|
<text class="detail-label">申请时间</text>
|
|
|
<text class="detail-value">{{ record. dealerApplyTime }}</text>
|
|
<text class="detail-value">{{ record. dealerApplyTime }}</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -83,7 +88,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="card-footer" v-if="record.status === 1">
|
|
<view class="card-footer" v-if="record.status === 1">
|
|
|
- <button class="verify-btn" @click="verify(record.id,record.orderNo)">一键核销</button>
|
|
|
|
|
|
|
+ <button class="verify-btn" @click="verify(record.id,record.orderNo)">一键审核</button>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -108,7 +113,7 @@ export default {
|
|
|
searchQuery: '',
|
|
searchQuery: '',
|
|
|
tabs: [
|
|
tabs: [
|
|
|
{ name: '全部', key: 'all' ,id:-1 },
|
|
{ name: '全部', key: 'all' ,id:-1 },
|
|
|
- { name: '待核销', key: 'pending',id: 1 },
|
|
|
|
|
|
|
+ { name: '待审核', key: 'pending',id: 1 },
|
|
|
{ name: '核销中', key: 'verifying', id: 2},
|
|
{ name: '核销中', key: 'verifying', id: 2},
|
|
|
{ name: '已核销', key: 'verified' , id :3},
|
|
{ name: '已核销', key: 'verified' , id :3},
|
|
|
],
|
|
],
|
|
@@ -146,7 +151,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
getStatusText(status) {
|
|
getStatusText(status) {
|
|
|
const statusMap = {
|
|
const statusMap = {
|
|
|
- 1: '待核销',
|
|
|
|
|
|
|
+ 1: '待审核',
|
|
|
2: '核销中',
|
|
2: '核销中',
|
|
|
3: '已核销'
|
|
3: '已核销'
|
|
|
};
|
|
};
|