Browse Source

返工返修

master
qiezi 10 months ago
parent
commit
b971dbbbfe
  1. 7
      src/views/modules/board/VulcanizationDispatchOrder.vue

7
src/views/modules/board/VulcanizationDispatchOrder.vue

@ -1,5 +1,4 @@
<script> <script>
import th from "element-ui/src/locale/lang/th";
import {queryVulcanizationList} from "../../../api/production/generateReport"; import {queryVulcanizationList} from "../../../api/production/generateReport";
export default { export default {
@ -10,7 +9,7 @@ export default {
refreshTool: null, refreshTool: null,
dataList:[], dataList:[],
queryParams:{ queryParams:{
firstReportDate2Flag:'N',
firstReportDate2Flag:'Y',
}, },
columnList: [ columnList: [
{ {
@ -285,12 +284,12 @@ export default {
}, },
created() { created() {
this.handleQuery(); this.handleQuery();
this.refreshTool = setTimeout(()=>{
this.refreshTool = setInterval(()=>{
this.handleQuery(); this.handleQuery();
},this.setTimeoutDelay) },this.setTimeoutDelay)
}, },
destroyed() { destroyed() {
clearTimeout(this.refreshTool)
clearInterval(this.refreshTool)
} }
} }
</script> </script>

Loading…
Cancel
Save