From 226de684b04ae50ea17677744251882e910182f6 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期四, 04 五月 2023 15:13:34 +0800 Subject: [PATCH] 专家库 --- src/views/analyse/identify/index.vue | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/views/analyse/identify/index.vue b/src/views/analyse/identify/index.vue index c0c2960..c6128d4 100644 --- a/src/views/analyse/identify/index.vue +++ b/src/views/analyse/identify/index.vue @@ -34,6 +34,7 @@ </template> </el-table-column> <el-table-column prop="identificationUser" label="计划负责人" /> + <el-table-column prop="identificationUser" label="辨识专家" /> <el-table-column prop="evaluateUser" label="评价专家" /> <el-table-column prop="createTime" label="创建时间" show-overflow-tooltip></el-table-column> <el-table-column prop="createByUserName" label="创建人" show-overflow-tooltip></el-table-column> @@ -67,9 +68,9 @@ </el-table-column> <el-table-column label="操作" width="250"> <template #default="scope"> - <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 2" @click="accessIdentify(scope.row)">提交</el-button> + <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 2 && scope.row.identificationUserId == identifyState.user" @click="accessIdentify(scope.row)">提交</el-button> <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 3 || scope.row.planExecStatus === 4" :icon="View" @click="openIdentifyQuery('查看', scope.row)">查看</el-button> - <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 2" :icon="Edit" @click="openIdentifyQuery('辨识', scope.row)">辨识</el-button> + <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 2 && scope.row.identificationUserId == identifyState.user" :icon="Edit" @click="openIdentifyQuery('辨识', scope.row)">辨识</el-button> <!-- <el-button size="small" text type="primary" v-if="scope.row.planExecStatus === 2" :icon="Edit" @click="openIdentifyQuery('编辑', scope.row)">编辑</el-button>--> </template> </el-table-column> @@ -91,13 +92,17 @@ import { Edit, View, Plus, Delete } from '@element-plus/icons-vue'; import {planApi} from "/@/api/analyse/plan"; import {userApi} from "/@/api/systemManage/user"; +import {useUserInfo} from "/@/stores/userInfo"; +import {storeToRefs} from "pinia"; const IdentifyQueryDialog = defineAsyncComponent(() => import('./components/identifyQuery.vue')); const identifyQueryDialogRef = ref(); - +const userInfo = useUserInfo(); +const { userInfos } = storeToRefs(userInfo); const identifyState = reactive<IdentifyStateType>({ identifyData: [], + user: null, searchQuery: { pageIndex: 1, pageSize: 10, @@ -164,7 +169,7 @@ realName: '' } }); - if(res.data.code === 200){ + if(res.data.code === 100){ identifyState.personList = JSON.parse(JSON.stringify(res.data.data)); }else{ ElMessage({ @@ -261,6 +266,7 @@ getIdentifyData(); getAllPlanList(); getPersonList(); + identifyState.user = Number(userInfos.value.uid) }); </script> -- Gitblit v1.9.2