马宇豪
2024-12-09 edfa54e7347d990bd64fda1d8ab903251c60af7b
修改
已修改3个文件
26 ■■■■■ 文件已修改
src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/safetyReview/expertManage/postEvaluation/components/expertList.vue 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/safetyReview/projectManage/index.vue 补丁 | 查看 | 原始文档 | blame | 历史
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>
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
src/views/safetyReview/projectManage/index.vue