Commit 1c0ee201 authored by 王晓倩's avatar 王晓倩

编辑预案重置审核意见

parent 6b40b073
...@@ -148,6 +148,7 @@ export default class PlansMgEdit extends Vue { ...@@ -148,6 +148,7 @@ export default class PlansMgEdit extends Vue {
planTitle: String; planTitle: String;
fileOriginalName: String; fileOriginalName: String;
checkStatus: String; checkStatus: String;
remarks: String;
}; };
@Provide() enterpriseId: String = ""; @Provide() enterpriseId: String = "";
@Provide() editorA: any; @Provide() editorA: any;
...@@ -179,6 +180,7 @@ export default class PlansMgEdit extends Vue { ...@@ -179,6 +180,7 @@ export default class PlansMgEdit extends Vue {
that.editForm.planContents = that.editorA.getHTML(); that.editForm.planContents = that.editorA.getHTML();
that.editForm.enterpriseId = that.enterpriseId; that.editForm.enterpriseId = that.enterpriseId;
that.editForm.checkStatus = ""; that.editForm.checkStatus = "";
that.editForm.remarks = "";
(that as any).$refs[formName].validate((valid: boolean) => { (that as any).$refs[formName].validate((valid: boolean) => {
if (that.editorA.getText() == false && (that.editForm.sourceFile == "" || that.editForm.sourceFile == undefined)) { if (that.editorA.getText() == false && (that.editForm.sourceFile == "" || that.editForm.sourceFile == undefined)) {
that.$message.error("没有预案内容!"); that.$message.error("没有预案内容!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment