From 78a173f85f8a4666d83cf8d900f04dd9f8e3e127 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 17 六月 2025 08:53:12 +0800
Subject: [PATCH] 提交一把订单
---
company/src/views/enterprise/insuranceApply.vue | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/company/src/views/enterprise/insuranceApply.vue b/company/src/views/enterprise/insuranceApply.vue
index 46949c0..62647f7 100644
--- a/company/src/views/enterprise/insuranceApply.vue
+++ b/company/src/views/enterprise/insuranceApply.vue
@@ -54,7 +54,12 @@
</el-table-column>
<el-table-column prop="statusInfo" align="center" fixed label="鐘舵��">
<template slot-scope="{row}">
- <span :class="'apply-status'+row.status" >{{row.statusInfo}}</span>
+ <span style="color: #666;" v-if="[9,25,27,5].includes(row.status) && ['宸插叧闂�','宸茶繃鏈�'].includes(row.statusInfo)">{{row.statusInfo}}</span>
+ <span style="color: red;" v-else-if="row.status === 4 && row.statusInfo === '宸查��鍥�'">{{ row.statusInfo}}</span>
+ <span style="color: #f95601;" v-else-if="[5,27].includes(row.status) && row.statusInfo === '寰呯敓鏁�'">{{ row.statusInfo}}</span>
+ <span style="color: #216EEE;" v-else-if="[12].includes(row.status) && row.statusInfo === '寰呭鏍�'">{{ row.statusInfo}}</span>
+ <span :class="'apply-status'+row.status" v-else>{{row.statusInfo}}</span>
+<!-- <span :class="'apply-status'+row.status" >{{row.statusInfo}}</span>-->
</template>
</el-table-column>
<el-table-column prop="solutionsName" fixed label="淇濋櫓鏂规" align="center" min-width="150"></el-table-column>
@@ -81,7 +86,8 @@
</el-table-column>
<el-table-column label="鎶曚繚鏃堕暱">
<template slot-scope="{row}">
- <span>{{(row.serviceDays - row.loseEfficacyDays) < 0 ? `-` : (row.serviceDays - row.loseEfficacyDays+'澶�')}}</span>
+<!-- (row.serviceDays - row.loseEfficacyDays) < 0 ? `-` : (row.serviceDays - row.loseEfficacyDays+'澶�')-->
+ <span>{{row.loseEfficacyDays}}</span>
</template>
</el-table-column>
<!-- <el-table-column prop="currentFee" label="宸蹭骇鐢熻垂鐢�" align="center">-->
@@ -195,19 +201,21 @@
isShow(status, endTime) {
const currentDate = new Date();
const specifiedDate = new Date(endTime);
- return status === 5 && (currentDate < specifiedDate);
+ return [5,27].includes(status) && (currentDate < specifiedDate);
},
changeStatus(e) {
if (e.indexOf(',') !== -1) {
this.searchForm.timeOut = e.split(',')[1]
this.searchForm.statusCollect = e.split(',')[0]
} else {
+ this.searchForm.timeOut = ''
this.searchForm.statusCollect = e
}
this.search()
},
reset() {
this.searchForm.createTimeS = ''
+ this.searchForm.timeOut = ''
this.searchForm.createTimeE = ''
this.statusCollect = ''
this.searchForm.statusCollect = ''
@@ -215,7 +223,6 @@
this.search()
},
result(flag,param){
- console.log(flag,param)
if(param && param.godetail && param.id){
if (param.type == 1) {
this.$refs.OperaWtbApplyShopWindow.open('濮旀墭鎶曚繚璇︽儏', { id: param.id })
--
Gitblit v1.9.3