From 9834dbff448908d2008d8c52a2544aad00c099b1 Mon Sep 17 00:00:00 2001 From: haoyahui <2032914783@qq.com> Date: 星期三, 22 十一月 2023 17:34:26 +0800 Subject: [PATCH] 库存盘点, 异常明细,报废管理 --- admin-web/src/views/stock/ledger/inventoryAlert/index.vue | 83 +++++++++++++++++++++++++++++++---------- 1 files changed, 62 insertions(+), 21 deletions(-) diff --git a/admin-web/src/views/stock/ledger/inventoryAlert/index.vue b/admin-web/src/views/stock/ledger/inventoryAlert/index.vue index bedff7b..150b2fb 100644 --- a/admin-web/src/views/stock/ledger/inventoryAlert/index.vue +++ b/admin-web/src/views/stock/ledger/inventoryAlert/index.vue @@ -18,6 +18,11 @@ </el-card> </el-container> </el-container> + <my-import + :import-setting="importSetting" + :dialog-show="importSetting.dialogShow" + :dialog-title="importSetting.dialogTitle" + /> </div> </template> @@ -29,13 +34,13 @@ import myImport from '@/views/components/myImport'; import { getBaseUrl } from '@/utils/base'; import { selectTenantWarehouse, treeList } from '@/api/baseSetting/finsystenant'; -import {warningConfigGetDel} from '@/api/stock/ledger' +import { warningConfigGetDel } from '@/api/stock/ledger'; import { getDicts } from '@/api/system/dict/data'; import { mapGetters } from 'vuex'; export default { name: 'index', - components: { MyButton, MyTableV2, edit }, + components: { MyButton, MyTableV2, edit,myImport }, data() { return { // 鎼滅储妗� @@ -47,7 +52,10 @@ placeholder: '璇烽�夋嫨', defaultValue: '', options: [], - cascader: [{key:'warehouseId',queryKey: 'agencyId'},{key:'goodsTemplateId',queryKey: 'agencyId'}], + cascader: [ + { key: 'warehouseId', queryKey: 'agencyId' }, + { key: 'goodsTemplateId', queryKey: 'agencyId' }, + ], optionsConfig: { url: '/pc/fin/sys/tenant/select/tree_fin_tenant', props: null }, }, { @@ -60,17 +68,17 @@ optionsConfig: { label: 'warehouseName', value: 'id', - url: SettingIplatform.apiBaseURL + '/pc/base/warehouse/select/tenant_warehouse' + url: SettingIplatform.apiBaseURL + '/pc/base/warehouse/select/tenant_warehouse', }, }, { type: 'select', - dataIndex: 'goodsTemplateId', + dataIndex: 'baseGoodsTemplateId', label: '鐗╁搧鍚嶇О', placeholder: '璇疯緭鍏�', defaultValue: '', options: [], - cascader: [{key:'categoryId',queryKey: 'goodsTemplatesId'}], + cascader: [{ key: 'categoryId', queryKey: 'goodsTemplatesId' }], optionsConfig: { label: 'goodsName', value: 'id', @@ -78,16 +86,17 @@ }, }, { - type: 'select', + type: 'cascader', dataIndex: 'categoryId', label: '鍒嗙被', placeholder: '璇烽�夋嫨', defaultValue: '', options: [], optionsConfig: { - label: 'modelName', + label: 'label', value: 'id', - url: SettingIplatform.apiBaseURL + '/pc/base/goods/models/query/goodsModel' + url: SettingIplatform.apiBaseURL + '/pc/base/category/select/tree', + props: { checkStrictly: false }, }, }, { @@ -96,16 +105,36 @@ label: '绫诲埆', placeholder: '璇烽�夋嫨', defaultValue: '', - options: [], - optionsConfig: { - label: 'dict_label', - value: 'dict_value', - url: SettingIplatform.apiBaseURL + '/permit/dict/data/type/GOODS_PRICE', - }, + options: [{ + label:'A', + value:'1' + },{ + label:'B', + value:'2' + },{ + label:'C', + value:'3' + }], }, ], - // 鏍戞暟鎹� - treeDataList: [], + // 瀵煎叆 + importSetting: { + dialogTitle: '瀵煎叆', + dialogShow: false, + fileSettings: { + data: {}, + uploadUrl: getBaseUrl()+"/pc/fin/sys/tenant/import", // 涓婁紶鍦板潃 + accept: '.xls', // 鏍煎紡 + type: 'text', // 鍥炴樉褰㈠紡 + loading: false // 瀵煎叆鏁堟灉 + }, + /* 妯℃澘涓嬭浇 */ + templateSettings: { + templateName: '瀵煎叆妯℃澘.xls', // 鍚嶇О + templateUrl: SettingIplatform.apiBaseURL + '/pc/fin/sys/tenant/getImportTemplate' // 涓嬭浇鍦板潃 + }, + onSuccess: null + }, // 鎼滅储鏉′欢 filterFrom: { warehouseType: 0, @@ -140,9 +169,9 @@ }, }, { - name: '瀵煎嚭', + name: '瀵煎叆', click: () => { - this.handleExport(); + this.importOrg(); }, }, ], @@ -193,8 +222,7 @@ computed: { ...mapGetters(['userInfo']), }, - created() { - }, + created() {}, methods: { del(row) { this.$modal.confirm('鏄惁纭鍒犻櫎姝ゆ潯鐨勬暟鎹悧锛�').then(() => { @@ -216,6 +244,19 @@ this.editSetting.title = '缂栬緫'; this.editSetting.show = true; }, + // 瀵煎叆 + importOrg() { + this.importSetting.dialogShow = true; + this.importSetting.onSuccess = (response, callBack) => { + if (response.code === 1) { + this.$message.success(response.msg); + this.search(1); + } else { + this.$message.warning(response.msg); + } + callBack(); + }; + }, // 鏌ヨtable鍒楄〃 search(pageNum) { if (pageNum != undefined) { -- Gitblit v1.9.1