|
@@ -99,6 +99,14 @@
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
</el-form-item>
|
|
</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-form-item label="提交时间" prop="createTime">
|
|
|
<el-date-picker
|
|
<el-date-picker
|
|
@@ -250,6 +258,7 @@ export default {
|
|
|
shipperCode: null,
|
|
shipperCode: null,
|
|
|
deliverySn: null,
|
|
deliverySn: null,
|
|
|
deliveryName: null,
|
|
deliveryName: null,
|
|
|
|
|
+ bankTransactionId: null,
|
|
|
status: null,
|
|
status: null,
|
|
|
salesStatus: null,
|
|
salesStatus: null,
|
|
|
isDel: null,
|
|
isDel: null,
|
|
@@ -308,7 +317,13 @@ export default {
|
|
|
/** 查询售后记录列表 */
|
|
/** 查询售后记录列表 */
|
|
|
getList() {
|
|
getList() {
|
|
|
this.loading = true;
|
|
this.loading = true;
|
|
|
- listLiveAfterSales(this.queryParams).then(response => {
|
|
|
|
|
|
|
+ const params = { ...this.queryParams };
|
|
|
|
|
+ // 处理日期范围
|
|
|
|
|
+ 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.liveAfterSalesList = response.rows;
|
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
this.loading = false;
|
|
@@ -356,6 +371,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
resetQuery() {
|
|
|
|
|
+ this.dateRange = [];
|
|
|
this.resetForm("queryForm");
|
|
this.resetForm("queryForm");
|
|
|
this.handleQuery();
|
|
this.handleQuery();
|
|
|
},
|
|
},
|