|
@@ -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
|
|
|
});
|
|
|
},
|
|
|
|