From 0beaaaf318d799c0b57a64f19196ae333640ae77 Mon Sep 17 00:00:00 2001 From: wj <1285151836@qq.com> Date: Tue, 24 Oct 2023 17:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.js | 8 +++ src/utils/data.js | 4 ++ src/views/components/actionSelect/index.js | 51 +++++++++++++++++++ src/views/components/actionSelect/index.vue | 16 ++++++ src/views/components/invSelect/invSelect.js | 41 +++++++++++++++ src/views/components/invSelect/invSelect.vue | 16 ++++++ .../components/mainActionSelect/index.js | 27 ++++++++++ .../components/mainActionSelect/index.vue | 11 ++++ src/views/components/thirdSysSelect/index.js | 33 ++++++++++++ src/views/components/thirdSysSelect/index.vue | 9 ++++ vue.config.js | 2 +- 11 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 src/utils/data.js create mode 100644 src/views/components/actionSelect/index.js create mode 100644 src/views/components/actionSelect/index.vue create mode 100644 src/views/components/invSelect/invSelect.js create mode 100644 src/views/components/invSelect/invSelect.vue create mode 100644 src/views/components/mainActionSelect/index.js create mode 100644 src/views/components/mainActionSelect/index.vue create mode 100644 src/views/components/thirdSysSelect/index.js create mode 100644 src/views/components/thirdSysSelect/index.vue diff --git a/src/main.js b/src/main.js index cc44f164..ebb89aff 100644 --- a/src/main.js +++ b/src/main.js @@ -57,6 +57,10 @@ Vue.config.silent = true; //自定义消息框 import ShowMsgBox from '@/utils/MsgBox' +import invSelect from "@/views/components/invSelect/invSelect.vue"; +import mainActionSelect from "@/views/components/mainActionSelect/index.vue"; +import thirdSysSelect from "@/views/components/thirdSysSelect/index.vue"; +import actionSelect from "@/views/components/actionSelect/index.vue"; // 全局方法挂载 Vue.prototype.getDicts = getDicts; @@ -80,6 +84,10 @@ Vue.component("ImageUpload", ImageUpload); Vue.component("ImagePreview", ImagePreview); Vue.component('split-pane', splitPane); Vue.component("cusEditor", cusEditor) +Vue.component("invSelect", invSelect) +Vue.component("mainActionSelect", mainActionSelect) +Vue.component("thirdSysSelect", thirdSysSelect) +Vue.component("actionSelect", actionSelect) Vue.use(directive); Vue.use(plugins); diff --git a/src/utils/data.js b/src/utils/data.js new file mode 100644 index 00000000..b3da5692 --- /dev/null +++ b/src/utils/data.js @@ -0,0 +1,4 @@ +export const mainActionMap = { + WareHouseIn: '入库', + WareHouseOut: '出库' +} diff --git a/src/views/components/actionSelect/index.js b/src/views/components/actionSelect/index.js new file mode 100644 index 00000000..d653b0de --- /dev/null +++ b/src/views/components/actionSelect/index.js @@ -0,0 +1,51 @@ +import {getLocalJoinByUser} from "@/api/basic/busType"; + + +export default { + name: "actionSelect", + props: {value:"",invCode:{required:true},mainAction:null}, + data() { + return { + val: '', + list:[], + } + }, + watch: { + mainAction(){ + this.val = null + this.getList() + }, + invCode(){ + this.val = null + this.getList() + }, + val(newVal) { + this.$emit('update:value', newVal); + }, + value(newVal) { + this.val = newVal + }, + }, + created() { + this.getList() + }, + methods: { + getList(){ + if(!this.invCode){ + return + } + let query = { + code: this.invCode, + enable: true, + mainAction: this.mainAction, + vueType: "supInvoice", + }; + getLocalJoinByUser(query) + .then((response) => { + this.list = response.data.list || []; + }) + .catch(() => { + }); + } + } +} diff --git a/src/views/components/actionSelect/index.vue b/src/views/components/actionSelect/index.vue new file mode 100644 index 00000000..9e3e03f8 --- /dev/null +++ b/src/views/components/actionSelect/index.vue @@ -0,0 +1,16 @@ + + + diff --git a/src/views/components/invSelect/invSelect.js b/src/views/components/invSelect/invSelect.js new file mode 100644 index 00000000..b3465fd9 --- /dev/null +++ b/src/views/components/invSelect/invSelect.js @@ -0,0 +1,41 @@ +import {getInvListByUser} from "@/api/system/invWarehouse"; + + +export default { + name: "invSelect", + props: {value:""}, + data() { + return { + invCode: '', + invList: [], + } + },watch: { + invCode(newVal) { + this.$emit('update:value', newVal); + }, + value(newVal) { + this.invCode = newVal + }, + }, + methods: { + invChange(){ + this.$emit('update:value', this.invCode); + // this.changeValue(this.invCode) + }, + getList() { + + let query = { + advanceType: 1, + }; + getInvListByUser(query) + .then((response) => { + this.invList = response.data || []; + }) + .catch(() => { + }); + }, + }, + created() { + this.getList() + } +} diff --git a/src/views/components/invSelect/invSelect.vue b/src/views/components/invSelect/invSelect.vue new file mode 100644 index 00000000..186241cb --- /dev/null +++ b/src/views/components/invSelect/invSelect.vue @@ -0,0 +1,16 @@ + + + diff --git a/src/views/components/thirdSysSelect/index.js b/src/views/components/thirdSysSelect/index.js new file mode 100644 index 00000000..132ced21 --- /dev/null +++ b/src/views/components/thirdSysSelect/index.js @@ -0,0 +1,33 @@ +import {getBasicThirdSys} from "@/api/basic/basicThirdSys"; + + +export default { + name: "thirdSysSelect", + props: {value:""}, + data() { + return { + val: '', + list:[], + } + }, + watch: { + val(newVal) { + this.$emit('update:value', newVal); + }, + value(newVal) { + this.val = newVal + }, + }, + created() { + this.getList() + }, + methods: { + getList(){ + getBasicThirdSys({enable: true}).then(res=>{ + if(res.code==20000){ + this.list = res.data.list||[] + } + }) + } + } +} diff --git a/src/views/components/thirdSysSelect/index.vue b/src/views/components/thirdSysSelect/index.vue new file mode 100644 index 00000000..e71e7b05 --- /dev/null +++ b/src/views/components/thirdSysSelect/index.vue @@ -0,0 +1,9 @@ + + + diff --git a/vue.config.js b/vue.config.js index 279d8364..84cb9e04 100644 --- a/vue.config.js +++ b/vue.config.js @@ -9,7 +9,7 @@ const CompressionPlugin = require("compression-webpack-plugin"); const name = process.env.VUE_APP_TITLE || "UDI管理系统"; // 网页标题 -const port = process.env.port || process.env.npm_config_port || 80; // 端口 +const port = process.env.port || process.env.npm_config_port || 83; // 端口 // vue.config.js 配置说明 //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions