修改bug

This commit is contained in:
2022-03-14 10:59:13 +08:00
parent 3d3c802d01
commit 21d45adf22
8 changed files with 165 additions and 89 deletions

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2020-12-29 15:41:11
* @LastEditors: zwq
* @LastEditTime: 2022-01-18 14:30:25
* @LastEditTime: 2022-03-14 09:33:28
* @Description:
-->
<template>
@@ -92,7 +92,7 @@ const tableProps = [
]
export default {
name: 'StorageBoxInfo',
name: 'ScrapInfo',
components: { Pagination, BaseTable },
filters: {
statusFilter(status) {
@@ -123,15 +123,18 @@ export default {
},
created() {
this.getList()
const listQuery1 = {
current: 1,
size: 100
}
StorageBoxRackCode(listQuery1).then(res => {
this.storageBoxList = res.data.records
})
this.init()
},
methods: {
init() {
const listQuery1 = {
current: 1,
size: 100
}
StorageBoxRackCode(listQuery1).then(res => {
this.storageBoxList = res.data.records
})
},
getList() {
this.listLoading = true
StorageBoxInfoList(this.listQuery).then(response => {