update DialogWithMenu在编辑时的初始化逻辑“
This commit is contained in:
parent
3f405a3816
commit
b0286bcc08
@ -422,6 +422,41 @@ export default {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
updateOptions() {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
if (!this.dataForm?.id) resolve(null);
|
||||||
|
|
||||||
|
if (this.watingToRefreshQueue.length) {
|
||||||
|
this.watingToRefreshQueue.forEach((opt) => {
|
||||||
|
console.log("[刷新数据, ", opt, "]");
|
||||||
|
if ("fetchData" in opt) {
|
||||||
|
opt.fetchData(this.dataForm.id).then(({ data: res }) => {
|
||||||
|
if (res.code === 0) {
|
||||||
|
this.$set(
|
||||||
|
opt,
|
||||||
|
"options",
|
||||||
|
"list" in res.data
|
||||||
|
? res.data.list.map((i) => ({ label: i.name, value: i.id }))
|
||||||
|
: res.data.map((i) => ({ label: i.name, value: i.id }))
|
||||||
|
);
|
||||||
|
|
||||||
|
resolve({ done: true });
|
||||||
|
} else {
|
||||||
|
this.$message({
|
||||||
|
message: `${res.code}: ${res.msg}`,
|
||||||
|
type: "error",
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
|
||||||
|
resolve({ done: false });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else resolve(null);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
/** init **/
|
/** init **/
|
||||||
init(id, detailMode, menu) {
|
init(id, detailMode, menu) {
|
||||||
// this.dialogVisible = true;
|
// this.dialogVisible = true;
|
||||||
@ -440,27 +475,31 @@ export default {
|
|||||||
// 提前获取属性列表
|
// 提前获取属性列表
|
||||||
this.getSubList();
|
this.getSubList();
|
||||||
// 获取详情
|
// 获取详情
|
||||||
this.$http.get(this.urls.base + `/${this.dataForm.id}`).then(({ data: res }) => {
|
this.updateOptions().then((result) => {
|
||||||
if (res && res.code === 0) {
|
if (result === null || (typeof result === "object" && result.done)) {
|
||||||
const dataFormKeys = Object.keys(this.dataForm);
|
this.$http.get(this.urls.base + `/${this.dataForm.id}`).then(({ data: res }) => {
|
||||||
this.dataForm = __pick(res.data, dataFormKeys);
|
if (res && res.code === 0) {
|
||||||
if ("files" in res.data) {
|
const dataFormKeys = Object.keys(this.dataForm);
|
||||||
console.log("[DialogWithMenu] fileList===>", res.data.files, this.fileList);
|
this.dataForm = __pick(res.data, dataFormKeys);
|
||||||
/** 返回的文件列表 */
|
if ("files" in res.data) {
|
||||||
this.fileList = res.data.files
|
console.log("[DialogWithMenu] fileList===>", res.data.files, this.fileList);
|
||||||
? res.data.files.map((file) => ({
|
/** 返回的文件列表 */
|
||||||
id: file.id,
|
this.fileList = res.data.files
|
||||||
name: file.fileUrl.split("/").pop(),
|
? res.data.files.map((file) => ({
|
||||||
url: file.fileUrl,
|
id: file.id,
|
||||||
typeCode: file.typeCode,
|
name: file.fileUrl.split("/").pop(),
|
||||||
}))
|
url: file.fileUrl,
|
||||||
: [];
|
typeCode: file.typeCode,
|
||||||
}
|
}))
|
||||||
}
|
: [];
|
||||||
this.loadingStatus = false;
|
}
|
||||||
// 是否要跳转到附件页
|
}
|
||||||
if (menu && menu.key) {
|
this.loadingStatus = false;
|
||||||
this.activeMenu = this.configs.menu.find((item) => item.key === menu.key)?.name;
|
// 是否要跳转到附件页
|
||||||
|
if (menu && menu.key) {
|
||||||
|
this.activeMenu = this.configs.menu.find((item) => item.key === menu.key)?.name;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@ -682,25 +721,25 @@ export default {
|
|||||||
this.loadingStatus = false;
|
this.loadingStatus = false;
|
||||||
|
|
||||||
// 如果 watingToRefreshQueue 队列里有数据
|
// 如果 watingToRefreshQueue 队列里有数据
|
||||||
if (this.watingToRefreshQueue.length) {
|
// if (this.watingToRefreshQueue.length) {
|
||||||
// 刷新队列
|
// // 刷新队列
|
||||||
this.watingToRefreshQueue.forEach((opt) => {
|
// this.watingToRefreshQueue.forEach((opt) => {
|
||||||
console.log('[刷新数据, ', opt, ']')
|
// console.log("[刷新数据, ", opt, "]");
|
||||||
if ("fetchData" in opt) {
|
// if ("fetchData" in opt) {
|
||||||
opt.fetchData().then(({ data: res }) => {
|
// opt.fetchData().then(({ data: res }) => {
|
||||||
if (res.code === 0) {
|
// if (res.code === 0) {
|
||||||
this.$set(
|
// this.$set(
|
||||||
opt,
|
// opt,
|
||||||
"options",
|
// "options",
|
||||||
"list" in res.data
|
// "list" in res.data
|
||||||
? res.data.list.map((i) => ({ label: i.name, value: i.id }))
|
// ? res.data.list.map((i) => ({ label: i.name, value: i.id }))
|
||||||
: res.data.map((i) => ({ label: i.name, value: i.id }))
|
// : res.data.map((i) => ({ label: i.name, value: i.id }))
|
||||||
);
|
// );
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
|
||||||
this.handleClose();
|
this.handleClose();
|
||||||
} else {
|
} else {
|
||||||
|
@ -101,7 +101,8 @@ export default function () {
|
|||||||
options: [],
|
options: [],
|
||||||
refreshOptionsAfterConfirm: true,
|
refreshOptionsAfterConfirm: true,
|
||||||
elparams: { clearable: true, filterable: true, placeholder: "请选择砖型" },
|
elparams: { clearable: true, filterable: true, placeholder: "请选择砖型" },
|
||||||
fetchData: () => this.$http.get("/pms/shape/listUnR", { params: { wsId: 2, externalCode: '', key: '' } }),
|
// 下面参数的 techId 是为 /pms/xxx/listUnR 接口定制的,默认为 -1,新增时使用,编辑时传对应的 工艺id
|
||||||
|
fetchData: (techId = -1) => this.$http.get("/pms/shape/listUnR", { params: { wsId: 4, externalCode: '', key: '', techId } }),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
// {
|
// {
|
||||||
|
Loading…
Reference in New Issue
Block a user