|
|
|
@ -711,7 +711,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {filterylqxzcrbarmc,filterCpmctymc,
|
|
|
|
|
filterGgxh, filterNameCode, sourceSearch,filterCompanyName,getTraceManuOrderList,
|
|
|
|
|
getManuCodeRelList} from "@/api/udi/udiTrace";
|
|
|
|
@ -823,7 +823,12 @@ export default {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList()
|
|
|
|
|
// 使用递归法定时执行定时器
|
|
|
|
|
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
|
|
|
|
|
if(this.list == undefined || this.list.length <= 0){
|
|
|
|
|
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
|
|
|
|
|
}
|
|
|
|
|
// if (this.list != null) {
|
|
|
|
|
// clearTimeout(this.monitorOrder);
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
formaterSourceType(row){
|
|
|
|
|
if (row.sourceType == 1) {
|
|
|
|
@ -984,18 +989,16 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
this.list = null
|
|
|
|
|
this.list = null,
|
|
|
|
|
this.listOrder = null,
|
|
|
|
|
this.listCodeRel = null,
|
|
|
|
|
clearTimeout(this.monitorOrder);
|
|
|
|
|
this.monitorOrder = null
|
|
|
|
|
this.monitorOrder = ""
|
|
|
|
|
//this.total = 0
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.orderTimeOut()
|
|
|
|
|
if (this.list != null) {
|
|
|
|
|
clearTimeout(this.monitorOrder);
|
|
|
|
|
this.monitorOrder = null
|
|
|
|
|
this.showCollapses = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
@ -1004,9 +1007,11 @@ export default {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.list = res.data || [];
|
|
|
|
|
this.total = res.data.total || 0;
|
|
|
|
|
console.log(res.data)
|
|
|
|
|
this.manuOrderQuery.recordCode = res.data.recordCode
|
|
|
|
|
this.getManuOrderList()
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
if (this.list.recordCode != null || this.list.recordCode != "") {
|
|
|
|
|
this.manuOrderQuery.recordCode = this.list.recordCode
|
|
|
|
|
this.getManuOrderList()
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.list = [];
|
|
|
|
|