|
@@ -7,6 +7,8 @@
|
|
|
v-model="listQuery.purchaser"></el-input>
|
|
v-model="listQuery.purchaser"></el-input>
|
|
|
<el-input clearable class="filter-item" style="width: 200px;" placeholder="订单编号"
|
|
<el-input clearable class="filter-item" style="width: 200px;" placeholder="订单编号"
|
|
|
v-model="listQuery.orderSeq"></el-input>
|
|
v-model="listQuery.orderSeq"></el-input>
|
|
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="商品名称"
|
|
|
|
|
+ v-model="listQuery.name"></el-input>
|
|
|
<el-input clearable class="filter-item" style="width: 200px;" placeholder="活动标题"
|
|
<el-input clearable class="filter-item" style="width: 200px;" placeholder="活动标题"
|
|
|
v-model="listQuery.title"></el-input>
|
|
v-model="listQuery.title"></el-input>
|
|
|
<el-select v-model="listQuery.productAttribute" clearable placeholder="商品属性" class="filter-item" style="width: 200px">
|
|
<el-select v-model="listQuery.productAttribute" clearable placeholder="商品属性" class="filter-item" style="width: 200px">
|
|
@@ -241,6 +243,7 @@ export default {
|
|
|
title: '',
|
|
title: '',
|
|
|
productAttribute:'',
|
|
productAttribute:'',
|
|
|
deliveryType:'',
|
|
deliveryType:'',
|
|
|
|
|
+ name: '',
|
|
|
},
|
|
},
|
|
|
dialogVisible: false,
|
|
dialogVisible: false,
|
|
|
dialogStatus: '',
|
|
dialogStatus: '',
|
|
@@ -269,7 +272,7 @@ export default {
|
|
|
}).catch(() => {});
|
|
}).catch(() => {});
|
|
|
},
|
|
},
|
|
|
handleDownLoad(){
|
|
handleDownLoad(){
|
|
|
- window.location.href = process.env.BASE_API + '/mall-order/exportOrderLog?purchaser=' + this.listQuery.purchaser + '&orderSeq=' + this.listQuery.orderSeq + '&orderType=' + this.listQuery.orderType + '&title=' + this.listQuery.title + '&productAttribute=' + this.listQuery.productAttribute + '&deliveryType=' + this.listQuery.deliveryType;
|
|
|
|
|
|
|
+ window.location.href = process.env.BASE_API + '/mall-order/exportOrderLog?purchaser=' + this.listQuery.purchaser + '&orderSeq=' + this.listQuery.orderSeq + '&orderType=' + this.listQuery.orderType + '&title=' + this.listQuery.title + '&productAttribute=' + this.listQuery.productAttribute + '&deliveryType=' + this.listQuery.deliveryType + '&name=' + this.listQuery.name;
|
|
|
},
|
|
},
|
|
|
checked(val){
|
|
checked(val){
|
|
|
if(val.flag == 0 && val.deliveryType==1){
|
|
if(val.flag == 0 && val.deliveryType==1){
|