From 75aaca3a95314be8c384df18dba23c661dea742c Mon Sep 17 00:00:00 2001 From: 石广澎 <shiguangpeng@163.com> Date: 星期一, 27 十一月 2023 19:05:38 +0800 Subject: [PATCH] feat: --- admin-web/src/views/stock/ledger/inventoryAlert/index.vue | 99 +++++++++++++++++++++++++++++++++++-------------- 1 files changed, 70 insertions(+), 29 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..2b38e4b 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,23 +169,23 @@ }, }, { - name: '瀵煎嚭', + name: '瀵煎叆', click: () => { - this.handleExport(); + this.importOrg(); }, }, ], }, // 鍒椾俊鎭� columns: [ - { title: '鏈烘瀯', field: 'agencyName', align: 'left' }, - { title: '浠撳簱', field: 'warehouseName', align: 'center' }, - { title: '鍒嗙被', field: 'categoryName', align: 'center' }, - { title: '鎵�灞炵被鍒�', field: 'costType', align: 'center' }, - { title: '鐗╁搧鍚嶇О', field: 'goodsName', align: 'left' }, - { title: '瑙勬牸鍨嬪彿', field: 'modelName', align: 'left' }, - { title: '淇濆簳搴撳瓨', field: 'lowerLimit', align: 'left' }, - { title: '灏侀《搴撳瓨', field: 'upperLimit', align: 'left' }, + { title: '鏈烘瀯', field: 'agencyName', align: 'left', minWidth: 130 }, + { title: '浠撳簱', field: 'warehouseName', align: 'left', minWidth: 130 }, + { title: '鍒嗙被', field: 'categoryName', align: 'left', minWidth: 130 }, + { title: '鎵�灞炵被鍒�', field: 'costType', align: 'center', width: 80 }, + { title: '鐗╁搧鍚嶇О', field: 'goodsName', align: 'left', minWidth: 130 }, + { title: '瑙勬牸鍨嬪彿', field: 'modelName', align: 'left', minWidth: 130 }, + { title: '淇濆簳搴撳瓨', field: 'lowerLimit', align: 'center', width: 100 }, + { title: '灏侀《搴撳瓨', field: 'upperLimit', align: 'center', width: 100 }, ], // 鎿嶄綔淇℃伅 operation: { @@ -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