库存查询,文件导入导出等
parent
87527aeaf8
commit
77ab482a99
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
"BASE_URL":"http://139.159.187.130:8080/UDI_WMS_MC",
|
"BASE_URL":"http://127.0.0.1:9991",
|
||||||
"SERVER_IP": "http://139.159.187.130:8080/",
|
"SERVER_IP": "http://127.0.0.1:9991/",
|
||||||
"WEBSOCKET_URL": "ws://139.159.187.130:8080/UDI_WMS_MC/api/websocket/"
|
"BASE_URL2": "ws://127.0.0.1:9991/api/websocket/"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,212 +1,215 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-card>
|
<el-card>
|
||||||
<el-form :inline="true" :model="query" size="mini">
|
<el-form :inline="true" :model="query" size="mini">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-form-item class="query-form-item">
|
<el-form-item class="query-form-item">
|
||||||
<el-input v-model="filterQuery.udiCode" placeholder="UDI编码"></el-input>
|
<el-input v-model="filterQuery.udiCode" placeholder="UDI编码"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="query-form-item">
|
<el-form-item class="query-form-item">
|
||||||
<el-select v-model="filterQuery.status" placeholder="处理状态">
|
<el-select v-model="filterQuery.status" placeholder="处理状态">
|
||||||
<el-option label="全部" value=""></el-option>
|
<el-option label="全部" value=""></el-option>
|
||||||
<el-option label="未处理" value="0"></el-option>
|
<el-option label="未处理" value="0"></el-option>
|
||||||
<el-option label="已完成" value="1"></el-option>
|
<el-option label="已完成" value="1"></el-option>
|
||||||
<el-option label="异常" value="2"></el-option>
|
<el-option label="异常" value="2"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button-group style="display:flex;">
|
<el-button-group style="display:flex;">
|
||||||
<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="search" @click="getList">查询</el-button>
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
||||||
</el-button-group>
|
</el-button-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="list"
|
:data="list"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
>
|
>
|
||||||
<el-table-column label="序号" type="index"></el-table-column>
|
<el-table-column label="序号" type="index"></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="UDI编码"
|
label="UDI编码"
|
||||||
prop="udiCode"
|
prop="udiCode"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="产品ID1"
|
label="产品ID1"
|
||||||
prop="thirdId"
|
prop="thirdId"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="产品ID2"
|
label="产品ID2"
|
||||||
prop="thirdId1"
|
prop="thirdId1"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="产品ID3"
|
label="产品ID3"
|
||||||
prop="thirdId2"
|
prop="thirdId2"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="产品ID4"
|
label="产品ID4"
|
||||||
prop="thirdId3"
|
prop="thirdId3"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="产品ID5"
|
label="产品ID5"
|
||||||
prop="thirdId4"
|
prop="thirdId4"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="医保编码"
|
label="医保编码"
|
||||||
width="100"
|
width="100"
|
||||||
prop="ybbm"
|
prop="ybbm"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="商品条码"
|
label="商品条码"
|
||||||
prop="sptm"
|
prop="sptm"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="状态"
|
label="状态"
|
||||||
prop="status"
|
prop="status"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tag
|
<el-tag
|
||||||
:type="statusFilterType(scope.row.status)"
|
:type="statusFilterType(scope.row.status)"
|
||||||
>{{ status[scope.row.status] }}
|
>{{ status[scope.row.status] }}
|
||||||
</el-tag
|
</el-tag
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="备注"
|
label="备注"
|
||||||
prop="remark"
|
prop="remark"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-pagination
|
<el-pagination
|
||||||
:page-size="filterQuery.limit"
|
:page-size="filterQuery.limit"
|
||||||
@current-change="handleCurrentChange"
|
@current-change="handleCurrentChange"
|
||||||
layout="prev, pager, next"
|
layout="prev, pager, next"
|
||||||
:total="total"
|
:total="total"
|
||||||
></el-pagination>
|
></el-pagination>
|
||||||
|
|
||||||
</el-card>
|
</el-card>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
filterDetail,
|
filterDetail,
|
||||||
} from "../../api/basic/udiinfolog";
|
} from "../../api/basic/udiinfolog";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "udiImportDetail",
|
name: "udiImportDetail",
|
||||||
props: {
|
props: {
|
||||||
currentRow: {
|
currentRow: {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
filterQuery: {
|
filterQuery: {
|
||||||
genKey: null,
|
genKey: null,
|
||||||
udiCode:null,
|
udiCode: null,
|
||||||
status:null,
|
status: null,
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
},
|
},
|
||||||
list: [],
|
list: [],
|
||||||
detailList: [],
|
detailList: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
status: {
|
status: {
|
||||||
0: "未处理",
|
0: "未处理",
|
||||||
1: "处理失败",
|
1: "处理失败",
|
||||||
2: "处理成功"
|
2: "处理成功"
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onReset() {
|
onReset() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: "",
|
path: "",
|
||||||
});
|
});
|
||||||
this.filterQuery = {
|
this.filterQuery = {
|
||||||
genKey: null,
|
genKey: null,
|
||||||
udiCode:null,
|
udiCode: null,
|
||||||
status:null,
|
status: null,
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
};
|
};
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
console.log(" this.genKey = "+ this.currentRow.genKey)
|
console.log(" this.genKey = " + this.currentRow.genKey)
|
||||||
this.filterQuery.genKey = this.currentRow.genKey;
|
this.filterQuery.genKey = this.currentRow.genKey;
|
||||||
filterDetail(this.filterQuery)
|
filterDetail(this.filterQuery)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.list = response.data.list || [];
|
this.list = response.data.list || [];
|
||||||
this.total = response.data.total || 0;
|
this.total = response.data.total || 0;
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.list = [];
|
this.list = [];
|
||||||
this.total = 0;
|
this.total = 0;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
statusFilterType(status) {
|
statusFilterType(status) {
|
||||||
const statusMap = {
|
const statusMap = {
|
||||||
0: "warning",
|
0: "warning",
|
||||||
1: "danger",
|
1: "danger",
|
||||||
2: "success",
|
2: "success",
|
||||||
};
|
};
|
||||||
return statusMap[status];
|
return statusMap[status];
|
||||||
},
|
},
|
||||||
},
|
handleCurrentChange(val) {
|
||||||
mounted() {
|
this.filterQuery.page = val;
|
||||||
},
|
this.getList();
|
||||||
created() {
|
},
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
filters: {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
};
|
mounted() {
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
filters: {},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
.itemTag {
|
.itemTag {
|
||||||
float: left;
|
float: left;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-family: "Microsoft YaHei";
|
font-family: "Microsoft YaHei";
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-row {
|
.el-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-col {
|
.el-col {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue