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 @@
+
+
+
+ {{ item.name }}
+
+
+
+
+
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 @@
+
+
+
+ {{ item.name }}
+
+
+
+
+
diff --git a/src/views/components/mainActionSelect/index.js b/src/views/components/mainActionSelect/index.js
new file mode 100644
index 00000000..5d49dd18
--- /dev/null
+++ b/src/views/components/mainActionSelect/index.js
@@ -0,0 +1,27 @@
+
+
+
+export default {
+ name: "mainActionSelect",
+ props: {value:""},
+ data() {
+ return {
+ mainAction: ''
+ }
+ },
+ watch: {
+ mainAction(newVal) {
+ this.$emit('update:value', newVal);
+ },
+ value(newVal) {
+ this.mainAction = newVal
+ },
+ },
+ created() {
+ if(this.value==null){
+ this.$emit('update:value', '');
+ }
+ },
+ methods: {
+ }
+}
diff --git a/src/views/components/mainActionSelect/index.vue b/src/views/components/mainActionSelect/index.vue
new file mode 100644
index 00000000..299a6082
--- /dev/null
+++ b/src/views/components/mainActionSelect/index.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
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