浏览代码

库位视图-增加刷新时间

k 2 年之前
父节点
当前提交
395cc0b433
共有 1 个文件被更改,包括 43 次插入2 次删除
  1. 43 2
      ruoyi-ui/src/views/ams/inv/locationView/index.vue

+ 43 - 2
ruoyi-ui/src/views/ams/inv/locationView/index.vue

@@ -43,6 +43,17 @@
             />
           </el-select>
         </el-form-item>
+        <el-form-item label="刷新时间" labelWidth="80px">
+          <el-select v-model="timerValue" @change="timerChange()"  placeholder="" clearable size="small" style="width: 50%" >
+              <el-option
+                v-for="item in timerOptions"
+                :key="item.value"
+                :label="item.label"
+                :value="item.value">
+              </el-option>
+
+          </el-select>
+        </el-form-item>
         <el-form-item>
           <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
           <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
@@ -115,6 +126,27 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
   export default {
     data () {
       return {
+        timerOptions: [{
+          value: 60000,
+          label: '1分钟'
+        }, {
+          value: 300000,
+          label: '5分钟'
+        }, {
+          value: 600000,
+          label: '10分钟'
+        }, {
+          value: 900000,
+          label: '15分钟'
+        }, {
+          value: 1200000,
+          label: '20分钟'
+        },
+          {
+            value: 5000,
+            label: '5秒'
+          }],
+        timerValue: 5000,
         open: false,
         showSearch: true,
         dataForm: {
@@ -161,12 +193,22 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
       this.getBasZoneList()
       this.getDataList()
       this.getItemopention()
-      this.timer = setInterval(this.getDataList, 5000)
+      this.timer = setInterval(this.getDataList, this.timerValue);
     },
     beforeDestroy () {
       clearInterval(this.timer)
     },
     methods: {
+      handleQuery() {
+        this.getDataList();
+      },
+      clearInterval () {
+        clearInterval(this.timer)
+      },
+      timerChange(){
+        this.clearInterval ();
+        this.timer = setInterval(this.getDataList, this.timerValue);
+      },
       getItemopention(){
         lotattConfigList().then(response => {
           let data = response.data
@@ -192,7 +234,6 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
       resetQuery() {//重置搜索
         this.resetForm("queryForm");
         this.getDataList();
-        this.handleQuery();
       },
       selected(item) {
         if (item.locationNo) {