|
|
|
@ -64,7 +64,9 @@
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<!-- <el-button @click="getCheckedNodes">获取</el-button> -->
|
|
|
|
|
<el-button @click="isShow = false">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitForm()">确 定</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitForm()" :loading="sureloading"
|
|
|
|
|
>确 定</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
@ -119,6 +121,7 @@ export default {
|
|
|
|
|
requestArr: [], //通过requestid获取状态
|
|
|
|
|
termzzid: [],
|
|
|
|
|
flag: false,
|
|
|
|
|
sureloading: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
@ -210,6 +213,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
//根据requestid查询时间表下发状态
|
|
|
|
|
requestTime() {
|
|
|
|
|
this.sureloading = true;
|
|
|
|
|
getCmaSchelduleUpload({
|
|
|
|
|
list: this.requestList,
|
|
|
|
|
})
|
|
|
|
@ -228,12 +232,14 @@ export default {
|
|
|
|
|
clearInterval(this.timer);
|
|
|
|
|
this.timer = null;
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
this.sureloading = false;
|
|
|
|
|
} else if (this.i > 9) {
|
|
|
|
|
this.i = 0;
|
|
|
|
|
this.$message.warning("下发失败,请稍后再试!");
|
|
|
|
|
clearInterval(this.timer);
|
|
|
|
|
this.timer = null;
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
this.sureloading = false;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|