|
|
@ -37,6 +37,7 @@
|
|
|
|
multiple
|
|
|
|
multiple
|
|
|
|
:limit="3"
|
|
|
|
:limit="3"
|
|
|
|
:data="uploadData"
|
|
|
|
:data="uploadData"
|
|
|
|
|
|
|
|
:headers="headers"
|
|
|
|
:show-file-list="false"
|
|
|
|
:show-file-list="false"
|
|
|
|
:on-success="handleChange"
|
|
|
|
:on-success="handleChange"
|
|
|
|
:file-list="fileList"
|
|
|
|
:file-list="fileList"
|
|
|
@ -159,6 +160,7 @@
|
|
|
|
import thrProductsImportDetail from "./ThrProductsImportDetail";
|
|
|
|
import thrProductsImportDetail from "./ThrProductsImportDetail";
|
|
|
|
import thrProductsSelect from "./ThrProductsSelect";
|
|
|
|
import thrProductsSelect from "./ThrProductsSelect";
|
|
|
|
import axios from "axios";
|
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
@ -171,6 +173,7 @@
|
|
|
|
limit: 20,
|
|
|
|
limit: 20,
|
|
|
|
thirdSysFk: null,
|
|
|
|
thirdSysFk: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
headers:{},
|
|
|
|
udiImportDetailVisible: false,
|
|
|
|
udiImportDetailVisible: false,
|
|
|
|
thrProductsSelectVisible: false,
|
|
|
|
thrProductsSelectVisible: false,
|
|
|
|
checked: false,
|
|
|
|
checked: false,
|
|
|
@ -396,6 +399,10 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {thrProductsImportDetail,thrProductsSelect},
|
|
|
|
components: {thrProductsImportDetail,thrProductsSelect},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.headers = {
|
|
|
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
|
|
|
};
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
// this.getList();
|
|
|
|
// this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|