接口查询修改

master
anthonywj 2 years ago
parent 5a49f41ae1
commit 2ce75d99d5

@ -4,7 +4,7 @@ VUE_APP_TITLE = UDI监管平台
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
VUE_APP_BASE_API = 'http://127.0.0.1:9998' VUE_APP_BASE_API = 'http://192.168.0.166:9998'
# 应用访问路径 例如使用前缀 /admin/ # 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/' VUE_APP_CONTEXT_PATH = '/'

@ -7,6 +7,7 @@ export function getTraceOrderList(query) {
params: query params: query
}) })
} }
//查询记录 //查询记录
export function getTraceRecordList(query) { export function getTraceRecordList(query) {
return axios({ return axios({
@ -15,6 +16,7 @@ export function getTraceRecordList(query) {
params: query params: query
}) })
} }
//生产信息 //生产信息
export function getTraceManuOrderList(query) { export function getTraceManuOrderList(query) {
return axios({ return axios({
@ -80,6 +82,14 @@ export function filterylqxzcrbarmc(query) {
}); });
} }
export function getRecordResult(query) {
return axios({
url: '/udi/trace/record/result',
method: 'get',
params: query
})
}
//任务列表 //任务列表
export function getTraceTaskList(query) { export function getTraceTaskList(query) {

@ -141,7 +141,7 @@
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/ <el-button icon="el-icon-view" type="primary" @click="hideSearch">/
</el-button> </el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit" size="mini" <el-button type="primary" icon="el-icon-search" @click="getList" size="mini"
>查询 >查询
</el-button </el-button
> >
@ -196,7 +196,8 @@
<el-table-column label="失效日期" prop="expireDate" width="180"></el-table-column> <el-table-column label="失效日期" prop="expireDate" width="180"></el-table-column>
<el-table-column label="序列号" prop="serialNo" width="120"></el-table-column> <el-table-column label="序列号" prop="serialNo" width="120"></el-table-column>
<el-table-column label="包装层级" prop="bzcj" width="180"></el-table-column> <el-table-column label="包装层级" prop="bzcj" width="180"></el-table-column>
<el-table-column label="包装状态" prop="packState" width="180" :formatter="formaterPackState"></el-table-column> <el-table-column label="包装状态" prop="packState" width="180"
:formatter="formaterPackState"></el-table-column>
<el-table-column label="操作" width="100" fixed="right"> <el-table-column label="操作" width="100" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -467,13 +468,16 @@
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="单据号" prop="billNo" width="150"></el-table-column> <el-table-column label="单据号" prop="billNo" width="150"></el-table-column>
<el-table-column label="单据类型" prop="billType" width="100"></el-table-column> <el-table-column label="单据类型" prop="billType" width="100"></el-table-column>
<el-table-column label="单据源头类型" prop="sourceType" width="100" :formatter="formaterSourceType"></el-table-column> <el-table-column label="单据源头类型" prop="sourceType" width="100"
<el-table-column label="出入库类型" prop="inOutType" width="100" :formatter="formaterInOutType"></el-table-column> :formatter="formaterSourceType"></el-table-column>
<el-table-column label="出入库类型" prop="inOutType" width="100"
:formatter="formaterInOutType"></el-table-column>
<el-table-column label="单据日期" prop="billDate" width="150"></el-table-column> <el-table-column label="单据日期" prop="billDate" width="150"></el-table-column>
<el-table-column label="更新时间" prop="updateTime" width="150"></el-table-column> <el-table-column label="更新时间" prop="updateTime" width="150"></el-table-column>
<el-table-column label="发货企业" prop="fromCorp" width="220"></el-table-column> <el-table-column label="发货企业" prop="fromCorp" width="220"></el-table-column>
<el-table-column label="收货企业" prop="toCorp" width="220"></el-table-column> <el-table-column label="收货企业" prop="toCorp" width="220"></el-table-column>
<el-table-column label="所属企业" prop="companyIdFk" width="220" :formatter="formatCompanyName"></el-table-column> <el-table-column label="所属企业" prop="companyIdFk" width="220"
:formatter="formatCompanyName"></el-table-column>
<!-- <el-table-column label="备注" prop="remark" width="220"></el-table-column>--> <!-- <el-table-column label="备注" prop="remark" width="220"></el-table-column>-->
@ -507,13 +511,13 @@
</el-collapse> </el-collapse>
</el-card> </el-card>
<!-- <pagination--> <!-- <pagination-->
<!-- v-show="total>0"--> <!-- v-show="total>0"-->
<!-- :total="total"--> <!-- :total="total"-->
<!-- :limit.sync="filterQuery.limit"--> <!-- :limit.sync="filterQuery.limit"-->
<!-- :page.sync="filterQuery.page"--> <!-- :page.sync="filterQuery.page"-->
<!-- @pagination="getList"--> <!-- @pagination="getList"-->
<!-- ></pagination>--> <!-- ></pagination>-->
<el-dialog <el-dialog
title="单据-详情" title="单据-详情"
@ -712,9 +716,11 @@
<script> <script>
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
import {filterylqxzcrbarmc,filterCpmctymc, import {
filterGgxh, filterNameCode, sourceSearch,filterCompanyName,getTraceManuOrderList, filterylqxzcrbarmc, filterCpmctymc,
getManuCodeRelList} from "@/api/udi/udiTrace"; filterGgxh, filterNameCode, sourceSearch, filterCompanyName, getTraceManuOrderList,
getManuCodeRelList, getRecordResult
} from "@/api/udi/udiTrace";
export default { export default {
@ -797,13 +803,14 @@ export default {
this.codeRelTotal = 0; this.codeRelTotal = 0;
}) })
}, },
getManuOrderList() { getRecordResult() {
// //
this.listCodeRel = null; this.listCodeRel = null;
this.loading = true; this.loading = true;
this.manuOrderQuery.recordCode = this.list.recordCode let query = {
console.log(this.manuOrderQuery.recordCode); recordCode: this.recordCode,
getTraceManuOrderList(this.manuOrderQuery).then((res) => { }
getRecordResult(query).then((res) => {
this.loading = false; this.loading = false;
if (res.code === 20000) { if (res.code === 20000) {
this.listOrder = res.data.list || []; this.listOrder = res.data.list || [];
@ -825,46 +832,43 @@ export default {
// //
this.filterQuery.page = 1; this.filterQuery.page = 1;
if((this.list == undefined || this.list.length <= 0)){ if ((this.list == undefined || this.list.length <= 0)) {
this.getList() this.getRecordResult()
if (this.manuOrderQuery.recordCode != null || this.manuOrderQuery.recordCode != "") {
this.getManuOrderList()
}
} }
// 使 // 使
if(this.list == undefined || this.list.length <= 0){ if (this.list == undefined || this.list.length <= 0) {
this.monitorOrder = setTimeout(this.orderTimeOut, 10000); this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
} }
}, },
formaterSourceType(row){ formaterSourceType(row) {
if (row.sourceType == 1) { if (row.sourceType == 1) {
this.formateSourceType = "起始位置" this.formateSourceType = "起始位置"
return "起始位置" return "起始位置"
}else if (row.sourceType == 2){ } else if (row.sourceType == 2) {
this.formateSourceType = "中间位置" this.formateSourceType = "中间位置"
return "中间位置" return "中间位置"
}else { } else {
this.formateSourceType = "结束位置" this.formateSourceType = "结束位置"
return "结束位置" return "结束位置"
} }
}, },
formaterInOutType(row){ formaterInOutType(row) {
if (row.inOutType == 1) { if (row.inOutType == 1) {
this.formateInOutType = "入库" this.formateInOutType = "入库"
return "入库" return "入库"
}else { } else {
this.formateInOutType = "出库" this.formateInOutType = "出库"
return "出库" return "出库"
} }
}, },
formatCompanyName(row){ formatCompanyName(row) {
this.companyNameList.find(item=>{ this.companyNameList.find(item => {
if (item.id == row.companyIdFk) { if (item.id == row.companyIdFk) {
this.formateCompanyName = item.companyName this.formateCompanyName = item.companyName
} }
}) })
}, },
getCompanyName(){ getCompanyName() {
let cQuery = { let cQuery = {
page: 1, page: 1,
limit: 10, limit: 10,
@ -874,7 +878,7 @@ export default {
console.log(this.companyNameList) console.log(this.companyNameList)
}) })
}, },
nameCodeChange(){ nameCodeChange() {
this.filterQuery.batchNo = null this.filterQuery.batchNo = null
}, },
ggxhChange() { ggxhChange() {
@ -977,7 +981,6 @@ export default {
this.formView = obj this.formView = obj
} }
}) })
console.log(this.formView)
this.open = true this.open = true
}, },
onReset() { onReset() {
@ -995,36 +998,19 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}; };
this.manuOrderQuery = {
recordCode: null,
page: 1,
limit: 10,
},
this.list = "", this.list = "",
this.listOrder = null, this.listOrder = null,
this.listCodeRel = null, this.listCodeRel = null,
clearTimeout(this.monitorOrder); clearTimeout(this.monitorOrder);
this.monitorOrder = "" this.monitorOrder = ""
//this.total = 0
},
onSubmit() {
// if(this.list != undefined || this.list.length > 0){
// clearTimeout(this.monitorOrder);
// this.monitorOrder = ""
// }else {
// this.orderTimeOut()
// }
this.orderTimeOut()
}, },
getList() { getList() {
this.loading = true; this.loading = true;
sourceSearch(this.filterQuery).then((res) => { sourceSearch(this.filterQuery).then((res) => {
this.loading = false; this.loading = false;
if (res.code === 20000) { if (res.code === 20000) {
this.list = res.data || []; this.recordCode = res.data;
this.total = res.data.total || 0; this.orderTimeOut();
this.recordCode = res.data.recordCode
console.log(this.recordCode)
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
this.list = []; this.list = [];

Loading…
Cancel
Save