From 532c1c0b9064cef25dd37732991e46ace0aa89b3 Mon Sep 17 00:00:00 2001 From: chenxf Date: Thu, 26 Feb 2026 17:07:20 +0800 Subject: [PATCH] fix --- src/views/batchRevokeForceNoticeDup/handle.vue | 13 +++++++++++-- src/views/batchRevokeForceNoticeDup/list.vue | 16 ++++++++++++++-- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/src/views/batchRevokeForceNoticeDup/handle.vue b/src/views/batchRevokeForceNoticeDup/handle.vue index 2f9c3d5..8b33093 100644 --- a/src/views/batchRevokeForceNoticeDup/handle.vue +++ b/src/views/batchRevokeForceNoticeDup/handle.vue @@ -59,6 +59,13 @@ export default { type: 'input', label: '企业类型', prop: 'enttype', + options: [ + { label: '个体户', value: '9910' }, + { label: '个人独资企业', value: '4540' }, + { label: '有限责任公司(自然人投资或控股)', value: '1130' }, + { label: '有限责任公司(自然人投资或控股的法人独资)', value: '2153' }, + { label: '有限责任公司(自然人独资)', value: '1151' } + ], tableProps: { showOverflowTooltip: true } @@ -204,13 +211,15 @@ export default { { label: '提交', type: 'primary', - show: true, + show: () => { + return this.$route.query.view !== '1' + }, handler: () => { if (!this.entListTableData || this.entListTableData.length === 0) { this.$message.warning('主体列表不能为空') return } - this.$confirm('确定要进行直接撤销操作吗?', '提示', { + this.$confirm('确定要进行批量吊销操作吗?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' diff --git a/src/views/batchRevokeForceNoticeDup/list.vue b/src/views/batchRevokeForceNoticeDup/list.vue index 72c6038..34fa828 100644 --- a/src/views/batchRevokeForceNoticeDup/list.vue +++ b/src/views/batchRevokeForceNoticeDup/list.vue @@ -2,7 +2,7 @@
- + { this.handle(row) } + }, + { + label: '查看', + type: 'text', + show: () => { + return this.type === 'history' + }, + handler: (scope, { row }) => { + this.handle(row) + } } ] }, @@ -244,6 +254,7 @@ export default { size: pageParam.size, current: pageParam.current, entity: { + isDeal: this.type === 'history' ? '1' : '0', ...parseSearchFormData } }).then((data) => { @@ -282,7 +293,8 @@ export default { return this.$router.push({ path: `/revoke/batchRevokeForceNoticeDuplicate/handle`, query: { - caseid: row.caseid + caseid: row.caseid, + view: this.type === 'history' ? '1' : '0' } }) },