2023-3-14
订单列表查询 会员管理查询
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
<div style="margin-top: 15px">
|
<div style="margin-top: 15px">
|
||||||
<el-form :inline="true" :model="listQuery" size="small" label-width="140px">
|
<el-form :inline="true" :model="listQuery" size="small" label-width="140px">
|
||||||
<el-form-item label="订单编号:">
|
<el-form-item label="订单编号:">
|
||||||
<el-input v-model="listQuery.id" class="input-width" placeholder="编号"></el-input>
|
<el-input v-model="listQuery.orderSn" class="input-width" placeholder="编号"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="订单分类:">
|
<!-- <el-form-item label="订单分类:">
|
||||||
<el-select v-model="listQuery.orderType" class="input-width" placeholder="全部" clearable>
|
<el-select v-model="listQuery.orderType" class="input-width" placeholder="全部" clearable>
|
||||||
@@ -236,11 +236,9 @@
|
|||||||
const defaultListQuery = {
|
const defaultListQuery = {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
|
status: 0,
|
||||||
orderSn: null,
|
orderSn: null,
|
||||||
receiverKeyword: null,
|
receiverPhone: null,
|
||||||
status: null,
|
|
||||||
orderType: null,
|
|
||||||
sourceType: null,
|
|
||||||
createTime: null
|
createTime: null
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -602,6 +600,14 @@
|
|||||||
this.listLoading = true;
|
this.listLoading = true;
|
||||||
if (this.listQuery.status == 0)
|
if (this.listQuery.status == 0)
|
||||||
this.listQuery.status = null
|
this.listQuery.status = null
|
||||||
|
|
||||||
|
if (this.listQuery.orderSn == "")
|
||||||
|
this.listQuery.orderSn = null
|
||||||
|
|
||||||
|
if (this.listQuery.receiverPhone == "")
|
||||||
|
this.listQuery.receiverPhone = null
|
||||||
|
|
||||||
|
|
||||||
console.log("listQuery", this.listQuery)
|
console.log("listQuery", this.listQuery)
|
||||||
fetchList(this.listQuery).then(response => {
|
fetchList(this.listQuery).then(response => {
|
||||||
this.listLoading = false;
|
this.listLoading = false;
|
||||||
@@ -637,9 +643,9 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
covertOrder(order) {
|
covertOrder(order) {
|
||||||
let address = order.receiverRegion + order
|
let address = order.receiverRegion + order
|
||||||
.receiverDetailAddress;
|
.receiverDetailAddress;
|
||||||
|
|
||||||
let listItem = {
|
let listItem = {
|
||||||
orderId: order.id,
|
orderId: order.id,
|
||||||
orderSn: order.orderSn,
|
orderSn: order.orderSn,
|
||||||
|
|||||||
Reference in New Issue
Block a user