|
@@ -1637,9 +1637,6 @@ export default {
|
|
created() {
|
|
created() {
|
|
this.orgCode=getCookie('orgCode');
|
|
this.orgCode=getCookie('orgCode');
|
|
this.userId=getCookie('userId');
|
|
this.userId=getCookie('userId');
|
|
- this.noticeInterval=setInterval(() => {
|
|
|
|
- this.getinformation();
|
|
|
|
- }, 1000*10);
|
|
|
|
if (this.orgCodeList.includes(getCookie('orgCode'))) {
|
|
if (this.orgCodeList.includes(getCookie('orgCode'))) {
|
|
this.isShowOperate = true
|
|
this.isShowOperate = true
|
|
}
|
|
}
|
|
@@ -1662,9 +1659,9 @@ export default {
|
|
'select',
|
|
'select',
|
|
'exceptionHandle'
|
|
'exceptionHandle'
|
|
]
|
|
]
|
|
- // this.noticeInterval=setInterval(() => {
|
|
|
|
- // this.getinformation();
|
|
|
|
- // }, 1000*1);
|
|
|
|
|
|
+ this.noticeInterval=setInterval(() => {
|
|
|
|
+ this.getinformation();
|
|
|
|
+ }, 1000*10);
|
|
}
|
|
}
|
|
//只要涉及提交即必须设计防抖,在初始化时绑定防抖函数
|
|
//只要涉及提交即必须设计防抖,在初始化时绑定防抖函数
|
|
this.updateCapacityDebounce = this.debounce(() => {
|
|
this.updateCapacityDebounce = this.debounce(() => {
|