|
|
|
@ -38,9 +38,9 @@
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in options[item.clickFuc]"
|
|
|
|
|
:key="item.filterType"
|
|
|
|
|
:label="item.sysName"
|
|
|
|
|
:value="item.filterType"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -489,7 +489,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getUdiInfos, filterCompany} from "@/api/basic/product/udiInfo";
|
|
|
|
|
import {getUdiInfos, filterCompanyOptimize} from "@/api/basic/product/udiInfo";
|
|
|
|
|
import {superSearch} from "@/api/basic/udiInfo";
|
|
|
|
|
import {combineUdi, combineAllUdi, checkExitUdi} from "@/api/basic/product/udiRelevance";
|
|
|
|
|
import selectDiDetail from "./SelectDIDetailDialog"
|
|
|
|
@ -558,7 +558,9 @@ export default {
|
|
|
|
|
tableHeader:[],
|
|
|
|
|
queryList:[],
|
|
|
|
|
fromList:[],
|
|
|
|
|
options:[],
|
|
|
|
|
options:{
|
|
|
|
|
findMethod:[]
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
currentRow: null,
|
|
|
|
|
fromOptions: [],
|
|
|
|
@ -828,18 +830,14 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
filterCompany(cQuery)
|
|
|
|
|
filterCompanyOptimize(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
_this.options.loading = false;
|
|
|
|
|
_this.options = {
|
|
|
|
|
findMethod: response.data || []
|
|
|
|
|
};
|
|
|
|
|
_this.options.findMethod = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
_this.options.loading = false;
|
|
|
|
|
_this.options = {
|
|
|
|
|
findMethod: []
|
|
|
|
|
};
|
|
|
|
|
_this.options.findMethod = []
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
executeFuc(row,number,type,clickFuc,value){
|
|
|
|
|