applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue
@@ -43,7 +43,7 @@ <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 label="序号" width="60" align="center"> <el-table-column label="序号" width="70" align="center"> <template #default="{ $index }"> {{ formatNumber((searchParams.current - 1) * searchParams.size + $index + 1) }} </template> @@ -60,7 +60,7 @@ <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" width="180"> <el-table-column label="操作" class-name="operation-btns" width="240"> <template v-slot="{ row }"> <el-link type="primary" @click="openForm('view', row)">查看</el-link> <!-- <el-link type="primary" @click="openForm('edit', row)">编辑</el-link>--> applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue
@@ -43,7 +43,7 @@ <div class="gd-table-container" v-loading="loading"> <div class="gd-table-content gd-table-content-bg"> <el-table class="gd-table" :data="list"> <el-table-column label="序号" width="60"> <el-table-column label="序号" width="70"> <template v-slot="{ $index }"> {{ String($index + 1).padStart(2, '0') }} </template> @@ -59,17 +59,17 @@ {{ getDictLabel(row.objectionStatus, dictObj.objectionStatus) }} </template> </el-table-column> <el-table-column prop="catalogResourceName" width="170" show-overflow-tooltip label="目录/申请资源名称" /> <el-table-column prop="catalogResourceName" width="130" show-overflow-tooltip label="目录/申请资源名称" /> <el-table-column prop="otherObjectionDetail" show-overflow-tooltip label="其他异议详情" /> <el-table-column prop="submitter" show-overflow-tooltip label="问题提交人" /> <el-table-column prop="submitterContact" show-overflow-tooltip width="145" label="提交人联系方式" /> <el-table-column prop="submitterContact" show-overflow-tooltip width="120" label="提交人联系方式" /> <el-table-column prop="submitUnitName" show-overflow-tooltip label="提交单位" /> <el-table-column prop="handleUnit" show-overflow-tooltip label="处理单位" /> <el-table-column prop="objectionDesc" show-overflow-tooltip label="异议描述" /> <el-table-column prop="objectionBasis" show-overflow-tooltip label="异议依据" /> <el-table-column prop="attachName" show-overflow-tooltip label="附件名称" /> <el-table-column prop="reviewOpinion" show-overflow-tooltip label="审核意见" /> <el-table-column label="操作" class-name="operation-btns" width="180"> <el-table-column label="操作" class-name="operation-btns" width="240"> <template v-slot="{ row }"> <el-link type="primary" @click="openForm('view', row)">查看</el-link> <el-link type="primary" @click="openForm('edit', row)" v-if="!['1', '2'].includes(row.objectionStatus)">编辑</el-link> applications/task-work-order/src/views/orderView/orderDataManage/evaluate/index.vue
@@ -53,7 +53,7 @@ </template> </el-table-column> <el-table-column prop="evaluationContent" show-overflow-tooltip label="评价内容" /> <el-table-column label="操作" class-name="operation-btns" width="180"> <el-table-column label="操作" class-name="operation-btns" width="240"> <template v-slot="{ row }"> <el-link type="primary" @click="openForm('view', row)">查看</el-link> <el-link type="primary" @click="openForm('edit', row)">编辑</el-link> applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/index.vue
@@ -42,7 +42,7 @@ <div class="gd-table-container" v-loading="loading"> <div class="gd-table-content gd-table-content-bg"> <el-table class="gd-table" :data="list"> <el-table-column label="序号" width="60" align="center"> <el-table-column label="序号" width="70" align="center"> <template #default="scope"> {{ ((searchParams.current - 1) * searchParams.size + scope.$index + 1).toString().padStart(2, '0') }} </template> @@ -54,7 +54,7 @@ </template> </el-table-column> <el-table-column prop="contactPerson" show-overflow-tooltip label="需求联系人" /> <el-table-column prop="contactPhone" show-overflow-tooltip width="150" label="需求联系人电话" /> <el-table-column prop="contactPhone" show-overflow-tooltip width="180" label="需求联系人电话" /> <el-table-column prop="contactEmail" show-overflow-tooltip label="需求邮箱" /> <el-table-column prop="demandStatus" show-overflow-tooltip label="需求状态"> <template v-slot="{ row }"> @@ -76,7 +76,7 @@ <el-table-column prop="responsibleDeptName" show-overflow-tooltip label="责任部门" /> <el-table-column prop="dataSource" show-overflow-tooltip label="数据来源依据" /> <el-table-column prop="demandInfo" show-overflow-tooltip label="需求信息项" /> <el-table-column label="操作" class-name="operation-btns" width="180"> <el-table-column label="操作" class-name="operation-btns" width="240"> <template v-slot="{ row }"> <el-link type="primary" @click="openForm('view', row)">查看</el-link> <!-- 只对非审批状态显示编辑和删除按钮 --> applications/task-work-order/src/views/orderView/organizationalMessage/agenciesManagement/agenciesApi.js
@@ -37,11 +37,12 @@ } // 导入机构 export const agenciesImportApi = (data) => { export const agenciesImportApi = (data,params) => { return request({ url: `/blade-system/dept/import-region`, method: 'post', data, params }) } applications/task-work-order/src/views/orderView/organizationalMessage/agenciesManagement/index.vue
@@ -30,7 +30,7 @@ clearable @change="handleSearch" > <el-option v-for="item in regionOptions" :key="item.code" :label="item.name" :value="item.code" /> <el-option v-for="item in regionOptions" :key="item.value" :label="item.title" :value="item.value" /> </el-select> </el-form-item> @@ -63,11 +63,11 @@ {{ row.status === 1 ? '启用' : '禁用' }} </template> </el-table-column> <el-table-column label="操作" class-name="operation-btns" width="180"> <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)">删除</el-link> </template> </el-table-column> </el-table> @@ -166,7 +166,6 @@ const importFormRef = ref() const importSubmitting = ref(false) const importRules = ref({ isCovered: [{ required: true, message: '请选择是否覆盖', trigger: ['change'] }], file: [{ required: true, message: '请上传文件', trigger: ['change'] }], })