From 2adbfd2aed024bf8fda3b85b3e7af07108329f85 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 09 十二月 2024 14:01:43 +0800 Subject: [PATCH] 修改报销表 --- src/views/safetyReview/expertManage/applyRecords/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/safetyReview/expertManage/applyRecords/index.vue b/src/views/safetyReview/expertManage/applyRecords/index.vue index cc5552d..ceef8b8 100644 --- a/src/views/safetyReview/expertManage/applyRecords/index.vue +++ b/src/views/safetyReview/expertManage/applyRecords/index.vue @@ -78,7 +78,7 @@ <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <template #default="scope"> <el-button type="primary" link @click="openDialog('view',scope.row)">查看</el-button> - <el-button type="primary" link :disabled="scope.row.state == 2" @click="openDialog('edit',scope.row)">编辑</el-button> + <el-button type="primary" link @click="openDialog('edit',scope.row)">编辑</el-button> <el-button type="primary" v-if="scope.row.state !== 2 && scope.row.state !== 4" link @click="openDialog('assess',scope.row)">评定</el-button> <el-button type="danger" link @click="handleDelete(scope.row)" >删除</el-button> @@ -100,7 +100,7 @@ import {getCurrentInstance, onMounted, onUnmounted, reactive, ref, toRefs} from "vue"; import {ElMessage, ElMessageBox} from "element-plus"; import ExpertForm from "./components/expertForm"; -import {delExpert, getExpertsList, getExpertTypes} from "../../../../api/form"; +import {delExpert, getExpertsList, getExpertsPerList, getExpertTypes} from "../../../../api/form"; import { Plus } from '@element-plus/icons-vue' const loading = ref(false); @@ -184,7 +184,7 @@ const getList = async () => { loading.value = true; - const res = await getExpertsList(data.queryParams) + const res = await getExpertsPerList(data.queryParams) if(res.code == 200){ data.expertList = res.rows data.total = res.total -- Gitblit v1.9.2