|
|
@@ -125,6 +125,15 @@
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
</el-form-item>
|
|
|
|
|
|
+ <el-form-item label="银行交易流水" prop="bankTransactionId" label-width="100">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.bankTransactionId"
|
|
|
+ placeholder="请输入银行交易流水"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"/>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<el-form-item label="提交时间" prop="createTime">
|
|
|
<el-date-picker
|
|
|
style="width:205.4px"
|
|
|
@@ -280,6 +289,7 @@ export default {
|
|
|
deliverySn: null,
|
|
|
deliveryName: null,
|
|
|
hfOrderCode:null,
|
|
|
+ bankTransactionId: null,
|
|
|
status: null,
|
|
|
Status: null,
|
|
|
isDel: null,
|
|
|
@@ -353,6 +363,11 @@ export default {
|
|
|
let ss = params.hfOrderCode.split("-");
|
|
|
params.hfOrderCode = ss[1];
|
|
|
}
|
|
|
+ // 处理日期范围
|
|
|
+ if (this.dateRange && this.dateRange.length === 2) {
|
|
|
+ params.createTimeBegin = this.dateRange[0];
|
|
|
+ params.createTimeEnd = this.dateRange[1];
|
|
|
+ }
|
|
|
listLiveAfterSales(params).then(response => {
|
|
|
this.liveAfterSalesList = response.rows;
|
|
|
this.total = response.total;
|
|
|
@@ -403,6 +418,7 @@ export default {
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
+ this.dateRange = [];
|
|
|
this.resetForm("queryForm");
|
|
|
this.handleQuery();
|
|
|
},
|