Browse Source

添加岗位按钮增加相应的状态设置

zhangyu 5 years ago
parent
commit
d75f81ec83
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/views/buildAssets.vue

+ 6 - 1
src/views/buildAssets.vue

@@ -52,7 +52,7 @@
         ></el-option>
       </el-select>
       <span slot="footer" class="dialog-footer">
-        <el-button type="primary" @click="correlation">确定创建对应岗位</el-button>
+        <el-button type="primary" :loading="butload" @click="correlation">确定创建对应岗位</el-button>
         <el-button @click="familyDialog = false">取 消</el-button>
       </span>
     </el-dialog>
@@ -135,6 +135,7 @@ export default {
       currentPage: [1, 1, 1, 1], //当前页数
       tabCheck: 0, //当前选中的check
       loading: true,
+      butload: false,
       noData: [true, true, true, true],
       iframeShow: false, //资产详情页弹窗
       del: false,
@@ -210,6 +211,7 @@ export default {
 
     //新建岗位设备类
     createPost() {
+      this.butload = true
       let param = {
         BuildId: this.temporaryData.BuildId,
         category: this.checkFamily,
@@ -223,6 +225,7 @@ export default {
           if (res.data.Result == "success") {
             this.upDateTableMain(res.data.id);
           } else {
+            this.butload = false
             this.$message({
               message: res.data.ResultMsg,
               type: "warning"
@@ -234,6 +237,7 @@ export default {
           if (res.data.Result == "success") {
             this.upDateTableMain(res.data.id);
           } else {
+            this.butload = false
             this.$message({
               message: res.data.ResultMsg,
               type: "warning"
@@ -384,6 +388,7 @@ export default {
         } else {
           this.$message.error("请求失败");
         }
+        this.butload = false
       });
     },