diff --git a/src/views/inm/good_mio.vue b/src/views/inm/good_mio.vue index f661247e..96c14b0a 100644 --- a/src/views/inm/good_mio.vue +++ b/src/views/inm/good_mio.vue @@ -1,160 +1,251 @@ \ No newline at end of file + diff --git a/src/views/inm/halfgood_mio.vue b/src/views/inm/halfgood_mio.vue index 81e8b250..57d0e6de 100644 --- a/src/views/inm/halfgood_mio.vue +++ b/src/views/inm/halfgood_mio.vue @@ -149,13 +149,23 @@ @success="handleSaveSuccess" @closed="dialog.save = false" > + + + + \ No newline at end of file + diff --git a/src/views/inm/mioitem.vue b/src/views/inm/mioitem.vue index f1d4e32e..2a00475c 100644 --- a/src/views/inm/mioitem.vue +++ b/src/views/inm/mioitem.vue @@ -203,6 +203,20 @@ export default { saveDialog, checkDialog, }, + props: { + type: { + type: String, + default: "", + }, + cate: { + type: String, + default: "", + }, + mioId: { + type: String, + default: "", + }, + }, data() { return { dialog: { @@ -211,7 +225,7 @@ export default { }, apiObj: null, params: {}, - mioId: "", + // mioId: "", mioObj: {}, selection: [], stateDict: { @@ -227,16 +241,17 @@ export default { other_out: "其他出库", }, mioitemId: "", - type: "", - cate: "", + // type: "", + // cate: "", objitem: {}, }; }, mounted() { - this.type = this.$route.query.type; - this.cate = this.$route.query.cate; - this.mioId = this.$route.query.mio; - this.params.mio = this.$route.query.mio; + // this.type = this.$route.query.type; + // this.cate = this.$route.query.cate; + // this.mioId = this.$route.query.mio; + // this.params.mio = this.$route.query.mio; + this.params.mio = this.mioId; this.apiObj = this.$API.inm.mioitem.list; this.getMio(); },