From edfa54e7347d990bd64fda1d8ab903251c60af7b Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期一, 09 十二月 2024 14:15:44 +0800 Subject: [PATCH] 修改 --- src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue | 2 +- src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue | 24 +++++++++++++++++++++++- src/views/safetyReview/projectManage/index.vue | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue b/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue index 14bfe9f..87f3e95 100644 --- a/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue +++ b/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue @@ -162,7 +162,7 @@ </el-col> <el-col :span="12"> <el-form-item label="标准说明" prop="billingInstructions"> - <el-input v-model.trim="state.form.billingInstructions" type="textarea" :autosize="{ minRows: 2}" :readonly="state.disable" placeholder="请具体说明依据的专家费计算标准"></el-input> + <el-input v-model.trim="state.form.billingInstructions" type="textarea" :autosize="{ minRows: 2}" :readonly="state.disable" placeholder="如填写:第1-3天800元/天"></el-input> </el-form-item> </el-col> </el-row> diff --git a/src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue b/src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue index be202fb..c9c3b07 100644 --- a/src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue +++ b/src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue @@ -92,6 +92,28 @@ {label: '合格',value: 2}, {label: '基本合格',value: 3}, {label: '不合格',value: 4} + ], + directionList: [ + { + value: '1', + label: '现场检查' + }, + { + value: '2', + label: '调查评估' + }, + { + value: '3', + label: '咨询服务' + }, + { + value: '4', + label: '教育培训' + }, + { + value: '5', + label: '其他' + } ] }) const {tableData,total,queryParams,projectName,title,projectCheckTime} = toRefs(state) @@ -128,7 +150,7 @@ outData.name = val.name outData.sex = val.sex == 0?'男':'女' outData.domain = val.domain - outData.jobCategory = res.data.jobCategory?res.data.jobCategory:'暂无' + outData.jobCategory = res.data.jobCategory?res.data.jobCategory.split(',').map(item=>{ return state.directionList.find(i=>i.value == item)?.label}):'暂无' outData.professionalEthics = state.rateList.find(i=>i.value == res.data.professionalEthics)?.label outData.impartialHonest = state.rateList.find(i=>i.value == res.data.impartialHonest)?.label outData.comprehensiveCoordination = state.rateList.find(i=>i.value == res.data.comprehensiveCoordination)?.label diff --git a/src/views/safetyReview/projectManage/index.vue b/src/views/safetyReview/projectManage/index.vue index a5fea25..deab42e 100644 --- a/src/views/safetyReview/projectManage/index.vue +++ b/src/views/safetyReview/projectManage/index.vue @@ -307,7 +307,7 @@ // 定义表头 const headers = [ - ["序号", "姓名", "工作单位", "职称", "身份证号", "计费标准", "计费时长", "专家费","应纳税所得额","应缴个税","税后金额", "开户银行", "卡号"] + ["序号", "姓名", "工作单位", "职称", "身份证号", "计费标准", "计费时长", "专家费", "应纳税所得额", "应缴个税", "税后金额", "开户银行", "卡号"] ] // 固定一行:经办人和负责人 const footer = [ -- Gitblit v1.9.2