|
|
|
@ -5,6 +5,7 @@
|
|
|
|
|
:visible.sync="isShow"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
width="1020px"
|
|
|
|
|
@close="handleclose"
|
|
|
|
|
>
|
|
|
|
|
<div class="setTimeTd">
|
|
|
|
|
<h3>时间表规则</h3>
|
|
|
|
@ -63,7 +64,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<!-- <el-button @click="getCheckedNodes">获取</el-button> -->
|
|
|
|
|
<el-button @click="isShow = false">取 消</el-button>
|
|
|
|
|
<el-button @click="handleclose">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitForm()" :loading="sureloading"
|
|
|
|
|
>确 定</el-button
|
|
|
|
|
>
|
|
|
|
@ -247,8 +248,11 @@ export default {
|
|
|
|
|
display() {
|
|
|
|
|
this.isShow = true;
|
|
|
|
|
},
|
|
|
|
|
hide() {
|
|
|
|
|
handleclose() {
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
this.newzzList = [];
|
|
|
|
|
this.checkedAisle = "";
|
|
|
|
|
console.log(this.allCheckNode, "1111111111");
|
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
|
this.timer = null;
|
|
|
|
|
},
|
|
|
|
|