From dd57e0e9a989e7ee8b3e3473a7ee6a1dff06a4ae Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 27 Jan 2026 17:19:04 +0800
Subject: [PATCH] feat:调整加载

---
 applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue |   60 +++++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 37 insertions(+), 23 deletions(-)

diff --git a/applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue b/applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue
index eca4847..5625a83 100644
--- a/applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue
+++ b/applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue
@@ -2,19 +2,30 @@
 	<basic-container>
 		<el-form ref="queryParamsRef" :model="searchParams" class="gd-search-form">
 			<el-form-item label="案例名称" prop="caseName">
-				<el-input class="gd-input" v-model="searchParams.caseName" placeholder="请输入" clearable @clear="handleSearch" />
+				<el-input
+					class="gd-input gray"
+					v-model="searchParams.caseName"
+					placeholder="请输入"
+					clearable
+					@clear="handleSearch"
+				/>
 			</el-form-item>
 
 			<el-form-item label="应用创新状态" prop="innovationStatus">
 				<el-select
-					class="gd-select"
+					class="gd-select gray"
 					popper-class="gd-select-popper"
 					v-model="searchParams.innovationStatus"
 					placeholder="请选择"
 					clearable
 					@change="handleSearch"
 				>
-					<el-option v-for="item in appInnovationStatusOptions" :key="item.value" :label="item.label" :value="item.value" />
+					<el-option
+						v-for="item in dictObj.appInnovationStatus"
+						:key="item.dictKey"
+						:label="item.dictValue"
+						:value="item.dictKey"
+					/>
 				</el-select>
 			</el-form-item>
 
@@ -32,12 +43,16 @@
 		<div class="gd-table-container" v-loading="loading">
 			<div class="gd-table-content gd-table-content-bg">
 				<el-table class="gd-table" :data="list" @selection-change="handleSelectionChange">
-					<el-table-column type="selection" width="46" />
+					<el-table-column label="序号" width="70" align="center">
+						<template #default="{ $index }">
+							{{ $index + 1 }}
+						</template>
+					</el-table-column>
 					<el-table-column prop="caseName" show-overflow-tooltip label="案例名称" />
 					<el-table-column prop="belongDomain" show-overflow-tooltip label="所属领域" />
 					<el-table-column prop="innovationStatus" show-overflow-tooltip label="应用创新状态">
 						<template v-slot="{ row }">
-							{{ getInnovationStatusLabel(row.innovationStatus) }}
+							{{ getDictLabel(row.innovationStatus, dictObj.appInnovationStatus) }}
 						</template>
 					</el-table-column>
 					<el-table-column prop="applicationScenarioDesc" show-overflow-tooltip label="应用场景描述" />
@@ -45,11 +60,11 @@
 					<el-table-column prop="resourceName" show-overflow-tooltip label="资源名称" />
 					<el-table-column prop="resourceCode" show-overflow-tooltip label="资源编码" />
 					<el-table-column prop="caseDesc" show-overflow-tooltip label="案例描述" />
-					<el-table-column label="操作" class-name="operation-btns">
+					<el-table-column label="操作" class-name="operation-btns" width="240">
 						<template v-slot="{ row }">
-							<el-link @click="openForm('view', row)">查看</el-link>
-							<el-link @click="openForm('edit', row)">编辑</el-link>
-							<el-link @click="handleDelete(row)">删除</el-link>
+							<el-link  type="primary"  @click="openForm('view', row)">查看</el-link>
+<!--							<el-link  type="primary"  @click="openForm('edit', row)">编辑</el-link>-->
+							<el-link  type="primary"  @click="handleDelete(row)" v-if="!['1', '2'].includes(row.innovationStatus)">删除</el-link>
 						</template>
 					</el-table-column>
 				</el-table>
@@ -75,6 +90,7 @@
 import { onMounted, ref, nextTick, provide } from 'vue'
 import { ElMessage, ElMessageBox } from 'element-plus'
 import { getDictionaryByCode } from '@/api/system/dictbiz'
+import { getDictLabel } from '@ztzf/utils'
 import FormDiaLog from './FormDiaLog.vue'
 import {
 	gdApplicationInnovationPageApi,
@@ -96,22 +112,15 @@
 const queryParamsRef = ref(null) // 查询表单实例
 const dialogRef = ref(null) // 弹框实例
 const dialogVisible = ref(false)
-const appInnovationStatusOptions = ref([]) // 应用创新状态字典
-
-// 注入字典数据到子组件
-provide('appInnovationStatusOptions', appInnovationStatusOptions)
-
+const dictObj = ref({}) // 字典对象
+const innovationDetailsStatus = ref( '')
+provide('dictObj', dictObj)
+provide('innovationDetailsStatus', innovationDetailsStatus)
 // 获取字典
 function getDictList() {
-	getDictionaryByCode('appInnovationStatus').then(res => {
-		appInnovationStatusOptions.value = res.data.data?.appInnovationStatus || []
+	return getDictionaryByCode('appInnovationStatus').then(res => {
+		dictObj.value = res.data.data
 	})
-}
-
-// 获取应用创新状态标签
-function getInnovationStatusLabel(value) {
-	const item = appInnovationStatusOptions.value.find(item => item.value === value)
-	return item?.label || value
 }
 
 // 获取列表
@@ -141,6 +150,7 @@
 
 // 新增/编辑/查看 弹框
 function openForm(mode, row) {
+	innovationDetailsStatus.value = row?.innovationStatus
 	dialogVisible.value = true
 	nextTick(() => {
 		dialogRef.value?.open({ mode, row })
@@ -168,10 +178,14 @@
 	selectedIds.value = rows.map(item => item.id)
 }
 
+// 格式化数字为两位数
+function formatNumber(num) {
+	return num.toString().padStart(2, '0')
+}
+
 onMounted(() => {
 	getList()
 	getDictList()
 })
 </script>
 <style scoped lang="scss"></style>
-

--
Gitblit v1.9.3