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/business/insuranceApply.vue | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/company/src/views/business/insuranceApply.vue b/company/src/views/business/insuranceApply.vue
index 0e8fdba..f7e8fe6 100644
--- a/company/src/views/business/insuranceApply.vue
+++ b/company/src/views/business/insuranceApply.vue
@@ -68,11 +68,16 @@
<span>{{scope.$index + 1}}</span>
</template>
</el-table-column>
- <el-table-column prop="statusInfo" align="center" fixed label="鐘舵��">
+ <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>
</template>
</el-table-column>
+ <el-table-column prop="companyName" v-if="userInfo.type === 0" fixed label="浼佷笟鍚嶇О" align="center" min-width="150"></el-table-column>
<el-table-column prop="solutionsName" fixed label="淇濋櫓鏂规" align="center" min-width="150"></el-table-column>
<el-table-column label="绫诲瀷" fixed align="center">
<template slot-scope="{row}">
@@ -146,7 +151,7 @@
<!-- 閫夋嫨浼佷笟 -->
<chooseCompany ref="chooseCompany" @submit="getVal" />
<!-- 鏂板鎶曚繚 -->
- <OperaInsuranceApplyAddWindow ref="OperaInsuranceApplyAddWindow" @success="handlePageChange" />
+ <OperaInsuranceApplyAddWindow ref="OperaInsuranceApplyAddWindow" @success="handlePageChange" />
</TableLayout>
</template>
@@ -159,6 +164,7 @@
import OperaInsuranceApplyWindow from '@/components/business/OperaInsuranceApplyWindow'
import OperaInsuranceApplyAddWindow from '@/components/enterprise/OperaInsuranceApplyAddWindow'
import chooseCompany from '@/components/common/chooseCompany'
+import { mapState } from 'vuex'
export default {
name: 'InsuranceApply',
extends: BaseTable,
@@ -181,6 +187,7 @@
status: [
{ label: '寰呭鏍�', id: '0' },
{ label: '寰呭嚭鍗�', id: '1' },
+ { label: '鎶曚繚涓�', id: '26' },
{ label: '寰呯缃�', id: '7' },
{ label: '寰呯敓鏁�', id: '2,0' },
{ label: '淇濋殰涓�', id: '2,1' },
@@ -190,6 +197,9 @@
{ label: '宸插叧闂�', id: '6' },
]
}
+ },
+ computed: {
+ ...mapState(['userInfo'])
},
created () {
this.config({
@@ -207,6 +217,7 @@
this.searchForm.timeOut = e.split(',')[1]
this.searchForm.statusCollect = e.split(',')[0]
} else {
+ this.searchForm.timeOut = ''
this.searchForm.statusCollect = e
}
this.search()
@@ -218,7 +229,8 @@
reset () {
this.$refs.searchForm.resetFields()
this.statusCollect = ''
- this.searchForm.statusCollect = ''
+ this.searchForm.timeOut = ''
+ this.searchForm.statusCollect = ''
this.searchForm.createTimeS = ''
this.searchForm.createTimeE = ''
this.search()
--
Gitblit v1.9.3