From 5c929cfb5286a31a4e067cbc61e8774f4e7d42ae Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期二, 06 五月 2025 11:25:41 +0800 Subject: [PATCH] 任务查看:任务名称undefined解决 --- src/views/projectManage/plan/planInfoCheck.vue | 38 +++++++++++++++++++++++++++----------- 1 files changed, 27 insertions(+), 11 deletions(-) diff --git a/src/views/projectManage/plan/planInfoCheck.vue b/src/views/projectManage/plan/planInfoCheck.vue index 3aa6728..afd4ab9 100644 --- a/src/views/projectManage/plan/planInfoCheck.vue +++ b/src/views/projectManage/plan/planInfoCheck.vue @@ -26,7 +26,7 @@ type="date" placeholder="閫夋嫨鏃ユ湡" value-format="yyyy-MM-dd HH:mm:ss" - size="small" + size="medium" style="width: 130px" :readonly="projectInfoData.managerFlag"/> </template> @@ -38,7 +38,7 @@ type="date" placeholder="閫夋嫨鏃ユ湡" value-format="yyyy-MM-dd HH:mm:ss" - size="small" + size="medium" style="width: 130px" :readonly="projectInfoData.managerFlag" /> </template> @@ -58,12 +58,24 @@ <div v-if="scope.row.planStatus === 0"></div> <!-- 鐘舵�佷负宸查┏鍥� --> <div v-if="scope.row.planStatus === 1"> - <el-button size="small" @click="handleResubmit(scope.row)">閲嶆柊涓婃姤</el-button> - <el-button size="small" type="danger" @click="handleReset(scope.$index)">閲嶇疆</el-button> + <el-button + size="medium" + type="text" + icon="el-icon-upload2" + @click="handleResubmit(scope.row)">閲嶆柊涓婃姤</el-button> + <el-button + size="medium" + type="text" + icon="el-icon-refresh-left" + @click="handleReset(scope.$index)">閲嶇疆</el-button> </div> <!-- 鐘舵�佷负宸查�氳繃 --> <div v-if="scope.row.planStatus === 2"> - <el-button size="small" @click="handleDelay(scope.$index)">寤舵湡</el-button> + <el-button + size="medium" + type="text" + icon="el-icon-edit" + @click="handleDelay(scope.$index)">寤舵湡</el-button> </div> </template> </el-table-column> @@ -102,7 +114,7 @@ v-model="scope.row.departmentExamine" :disabled="scope.row.planStatus === 2 || scope.row.planStatus === 1" placeholder="璇烽�夋嫨" - size="small" + size="medium" clearable> <el-option label="鍚屾剰" :value="0"></el-option> <el-option label="椹冲洖" :value="1"></el-option> @@ -143,7 +155,7 @@ v-model="scope.row.manageExamine" :disabled="scope.row.planStatus === 2 || scope.row.planStatus === 1" placeholder="璇烽�夋嫨" - size="small" + size="medium" clearable> <el-option label="鍚屾剰" :value="0"></el-option> <el-option label="椹冲洖" :value="1"></el-option> @@ -180,18 +192,22 @@ <template #default="scope"> <div v-if="!projectInfoData.managerFlag"> <el-button - size="small" + size="medium" + type="text" + icon="el-icon-reply" @click="handleReply(scope.$index)" :disabled="scope.row.planStatus === 0">鍥炲</el-button> <el-button - size="small" - type="danger" + size="medium" + type="text" + icon="el-icon-refresh-left" @click="handleReset(scope.$index)" :disabled="scope.row.planStatus === 0">閲嶇疆</el-button> </div> <div v-if="projectInfoData.managerFlag"> <el-button - size="small" + size="medium" + type="text" @click="handleExamine(scope.$index)" v-if="scope.row.planStatus === 0">瀹℃牳</el-button> </div> -- Gitblit v1.8.0