|
|
@@ -75,7 +75,7 @@ export default {
|
|
|
isShow: false,
|
|
|
selectList: [],
|
|
|
ruleList: [],
|
|
|
- search: this.emptySearch(),
|
|
|
+ search: this.emptySearch(),
|
|
|
};
|
|
|
},
|
|
|
computed: {},
|
|
|
@@ -90,7 +90,7 @@ export default {
|
|
|
type:Array
|
|
|
},
|
|
|
orgId:{
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
@@ -98,14 +98,14 @@ export default {
|
|
|
this.search= this.emptySearch();
|
|
|
console.log("this.search",this.search)
|
|
|
this.isShow = true;
|
|
|
- this.selectList =this.defaultSelect;
|
|
|
- //this.$refs.st.search();
|
|
|
+ this.selectList =this.defaultSelect;
|
|
|
+ // TODO: 处理第一次进入弹窗时,表格数据不加载
|
|
|
},
|
|
|
onHide() {
|
|
|
this.isShow = false;
|
|
|
this.search=this.emptySearch();
|
|
|
},
|
|
|
- onSelect(item) {
|
|
|
+ onSelect(item) {
|
|
|
this.selectList = item;
|
|
|
},
|
|
|
onSubmit() {
|
|
|
@@ -123,7 +123,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
};
|
|
|
</script>
|