This commit is contained in:
chenxf 2026-02-26 17:07:20 +08:00
parent 3df98c9408
commit 532c1c0b90
2 changed files with 25 additions and 4 deletions

View File

@ -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'

View File

@ -2,7 +2,7 @@
<div class="page">
<el-tabs v-model="type" type="card">
<el-tab-pane label="批量吊销待办" name="todo" />
<!-- <el-tab-pane label="批量吊销记录" name="history" /> -->
<el-tab-pane label="批量吊销记录" name="history" />
</el-tabs>
<edit-table
ref="EditTable"
@ -76,6 +76,16 @@ export default {
handler: (scope, { row }) => {
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'
}
})
},