|
@@ -43,6 +43,17 @@
|
|
/>
|
|
/>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</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-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<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>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -115,6 +126,27 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
|
|
export default {
|
|
export default {
|
|
data () {
|
|
data () {
|
|
return {
|
|
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,
|
|
open: false,
|
|
showSearch: true,
|
|
showSearch: true,
|
|
dataForm: {
|
|
dataForm: {
|
|
@@ -161,12 +193,22 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
|
|
this.getBasZoneList()
|
|
this.getBasZoneList()
|
|
this.getDataList()
|
|
this.getDataList()
|
|
this.getItemopention()
|
|
this.getItemopention()
|
|
- this.timer = setInterval(this.getDataList, 5000)
|
|
|
|
|
|
+ this.timer = setInterval(this.getDataList, this.timerValue);
|
|
},
|
|
},
|
|
beforeDestroy () {
|
|
beforeDestroy () {
|
|
clearInterval(this.timer)
|
|
clearInterval(this.timer)
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ handleQuery() {
|
|
|
|
+ this.getDataList();
|
|
|
|
+ },
|
|
|
|
+ clearInterval () {
|
|
|
|
+ clearInterval(this.timer)
|
|
|
|
+ },
|
|
|
|
+ timerChange(){
|
|
|
|
+ this.clearInterval ();
|
|
|
|
+ this.timer = setInterval(this.getDataList, this.timerValue);
|
|
|
|
+ },
|
|
getItemopention(){
|
|
getItemopention(){
|
|
lotattConfigList().then(response => {
|
|
lotattConfigList().then(response => {
|
|
let data = response.data
|
|
let data = response.data
|
|
@@ -192,7 +234,6 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
|
|
resetQuery() {//重置搜索
|
|
resetQuery() {//重置搜索
|
|
this.resetForm("queryForm");
|
|
this.resetForm("queryForm");
|
|
this.getDataList();
|
|
this.getDataList();
|
|
- this.handleQuery();
|
|
|
|
},
|
|
},
|
|
selected(item) {
|
|
selected(item) {
|
|
if (item.locationNo) {
|
|
if (item.locationNo) {
|