Browse Source

2023-3-14

订单列表查询
会员管理查询
master
guoxing 2 years ago
parent
commit
0b49a1bc63
  1. 20
      mallplusui-web-admin/src/views/oms/order/index1.vue

20
mallplusui-web-admin/src/views/oms/order/index1.vue

@ -70,7 +70,7 @@
<div style="margin-top: 15px">
<el-form :inline="true" :model="listQuery" size="small" label-width="140px">
<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 label="订单分类:">
<el-select v-model="listQuery.orderType" class="input-width" placeholder="全部" clearable>
@ -236,11 +236,9 @@
const defaultListQuery = {
pageNum: 1,
pageSize: 10,
status: 0,
orderSn: null,
receiverKeyword: null,
status: null,
orderType: null,
sourceType: null,
receiverPhone: null,
createTime: null
};
@ -602,6 +600,14 @@
this.listLoading = true;
if (this.listQuery.status == 0)
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)
fetchList(this.listQuery).then(response => {
this.listLoading = false;
@ -637,9 +643,9 @@
});
},
covertOrder(order) {
let address = order.receiverRegion + order
let address = order.receiverRegion + order
.receiverDetailAddress;
let listItem = {
orderId: order.id,
orderSn: order.orderSn,

Loading…
Cancel
Save