|
@@ -249,7 +249,6 @@
|
|
|
return;
|
|
|
}
|
|
|
this.$message.success('上传成功');
|
|
|
- //this.reset();
|
|
|
},
|
|
|
/** 查询模板管理列表 */
|
|
|
getList() {
|
|
@@ -336,7 +335,8 @@
|
|
|
if (this.form.id != null) {
|
|
|
queryStatusNum().then(response => {
|
|
|
let statusOnNum = response;
|
|
|
- if(statusOnNum > 0 && this.form.status === "1") {
|
|
|
+ let templateData = this.TEMPLATEList.filter(data => data.id == this.form.id)
|
|
|
+ if(statusOnNum > 0 && this.form.status === "1" && templateData[0].status === "0") {
|
|
|
this.$modal.confirm("当前已有模版为启用状态,请先停用其他模版!").then(() => {
|
|
|
this.form.status = "0";
|
|
|
}).catch(function() {
|