|
@@ -655,7 +655,7 @@
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="editElementFormTag = false">取 消</el-button>
|
|
|
- <el-button type="primary" @click="editeditElementFormMF()"
|
|
|
+ <el-button type="primary" @click="editeditElementFormMF()" :loading="editeditElementFormMFLoading"
|
|
|
>确 定</el-button
|
|
|
>
|
|
|
</span>
|
|
@@ -1654,6 +1654,7 @@ export default {
|
|
|
fromcurNode:{},
|
|
|
formDatass: [],
|
|
|
editElementFormTag: false,
|
|
|
+ editeditElementFormMFLoading:false,
|
|
|
jiedianId: "",
|
|
|
//#region
|
|
|
sortTag: false,
|
|
@@ -3093,6 +3094,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
if (tag) {
|
|
|
+
|
|
|
this.updateBatchNodeTableInfo2(da);
|
|
|
} else {
|
|
|
this.$message({
|
|
@@ -3102,12 +3104,15 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async updateBatchNodeTableInfo2(da) {
|
|
|
+ this.editeditElementFormMFLoading=true
|
|
|
//共有编辑元素
|
|
|
const { data: res } = await updateBatchNodeTableInfo2(da);
|
|
|
- console.log(res);
|
|
|
if (res.code == 200) {
|
|
|
this.editElementFormTag = false;
|
|
|
this.updateNodeTable();
|
|
|
+ this.editeditElementFormMFLoading=false
|
|
|
+ }else{
|
|
|
+ this.editeditElementFormMFLoading=false
|
|
|
}
|
|
|
},
|
|
|
//#endregion
|