Commit b1a39313 by Thews

20231219wangwansu

1 parent 8f6b241c
...@@ -339,6 +339,9 @@ export default { ...@@ -339,6 +339,9 @@ export default {
this.add_dialog = true; this.add_dialog = true;
this.title = "编辑专家人才库"; this.title = "编辑专家人才库";
this.formData = item; this.formData = item;
this.formData.state = String(this.formData.state);
this.formData.level = String(this.formData.level);
this.formData.ktagId = String(this.formData.ktagId);
}else if (type == "create") { }else if (type == "create") {
if (this.formData.ktpId) { if (this.formData.ktpId) {
// 编辑保存 // 编辑保存
......
...@@ -306,6 +306,10 @@ export default { ...@@ -306,6 +306,10 @@ export default {
this.add_dialog = true; this.add_dialog = true;
this.title = "编辑案例"; this.title = "编辑案例";
this.formData = item; this.formData = item;
this.formData.tcType = String(this.formData.tcType);
this.formData.problemType = String(this.formData.problemType);
this.formData.prjType = String(this.formData.prjType);
this.formData.problemLevel = String(this.formData.problemLevel);
}else if (type == "create") { }else if (type == "create") {
if (this.formData.ktcId) { if (this.formData.ktcId) {
// 编辑保存 // 编辑保存
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!