fix: 网元软件版本安装参数错误

This commit is contained in:
TsMask
2025-03-04 18:14:20 +08:00
parent 2812cefd13
commit d677963810

View File

@@ -121,7 +121,7 @@ function fnTableSelectedRowKeys(
) {
tableState.selectedRowKeys = keys;
// 选择的表单数据填充
Object.assign(state.from, selectedRows[0], { id: '' });
Object.assign(state.from, selectedRows[0], { id: undefined });
}
/**查询列表, pageNum初始页数 */
@@ -205,7 +205,7 @@ function fnModalOpen() {
/**对话框弹出确认执行函数*/
function fnModalOk(e: any) {
Object.assign(state.from, e, { id: '' });
Object.assign(state.from, e, { id: undefined });
}
/**对话框弹出关闭执行函数*/