| | |
| | | const data = reactive({ |
| | | searchForm: { |
| | | productName: '', |
| | | rootName:'成品' |
| | | } |
| | | }) |
| | | const { searchForm } = toRefs(data) |
| | |
| | | type: 'warning', |
| | | } |
| | | ).then(() => { |
| | | proxy.download("/stockInventory/exportStockInventory", {}, '合格库存信息.xlsx') |
| | | proxy.download("/stockInventory/exportStockInventory", {}, '成品库存信息.xlsx') |
| | | }).catch(() => { |
| | | proxy.$modal.msg("已取消") |
| | | }) |
| | |
| | | const data = reactive({ |
| | | searchForm: { |
| | | productName: '', |
| | | rootName: '半成品', |
| | | } |
| | | }) |
| | | const { searchForm } = toRefs(data) |
| | |
| | | type: 'warning', |
| | | } |
| | | ).then(() => { |
| | | proxy.download("/stockUninventory/exportStockUninventory", {}, '不合格库存信息.xlsx') |
| | | proxy.download("/stockUninventory/exportStockUninventory", {}, '半成品库存信息.xlsx') |
| | | }).catch(() => { |
| | | proxy.$modal.msg("已取消") |
| | | }) |
| | |
| | | const activeTab = ref('qualified') |
| | | const tabs = ref([ |
| | | { |
| | | label: '合格库存', |
| | | label: '成品库存', |
| | | name: 'qualified' |
| | | }, |
| | | { |
| | | label: '不合格库存', |
| | | label: '半成品库存', |
| | | name: 'unqualified' |
| | | } |
| | | ]) |