feat(credit): 在企业详情页面添加历史破产重整导入功能
- 在企业详情的破产重整标签页中增加导入历史破产重整按钮 - 修改credit-bankruptcy-history-import组件以支持传入企业ID参数 - 将历史破产重整导入功能集成到企业详情页面的抽屉组件中 - 移除原破产重整主页面的历史导入相关代码和按钮 - 添加企业ID验证逻辑确保导入操作的安全性 - 实现导入完成后的数据重新加载和分页重置功能
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
:maxable="maxable"
|
:maxable="maxable"
|
||||||
:title="isUpdate ? '编辑招投标信息表' : '添加招投标信息表'"
|
:title="isUpdate ? '编辑招投标信息表' : '添加招投标信息表'"
|
||||||
:body-style="{ paddingBottom: '28px' }"
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
|
:footer="null"
|
||||||
@update:visible="updateVisible"
|
@update:visible="updateVisible"
|
||||||
@ok="save"
|
@ok="save"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
:columns="columns"
|
:columns="columns"
|
||||||
:datasource="datasource"
|
:datasource="datasource"
|
||||||
:customRow="customRow"
|
:customRow="customRow"
|
||||||
:scroll="{ x: 2400 }"
|
:scroll="{ x: 3000 }"
|
||||||
tool-class="ele-toolbar-form"
|
tool-class="ele-toolbar-form"
|
||||||
class="sys-org-table"
|
class="sys-org-table"
|
||||||
v-model:selection="selection"
|
v-model:selection="selection"
|
||||||
@@ -353,7 +353,7 @@
|
|||||||
},
|
},
|
||||||
// 行双击事件
|
// 行双击事件
|
||||||
onDblclick: () => {
|
onDblclick: () => {
|
||||||
// openEdit(record);
|
openEdit(record);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user