|
@@ -132,6 +132,8 @@
|
|
|
class="multiple"
|
|
|
v-model.trim="searchForm.routingOrganId"
|
|
|
filterable
|
|
|
+ multiple
|
|
|
+ collapse-tags
|
|
|
clearable
|
|
|
@clear="onClear('routingOrganId')"
|
|
|
placeholder="请选择分部"
|
|
@@ -247,10 +249,13 @@
|
|
|
scope.row.type | orderType
|
|
|
}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="expectAmount" label="订单金额">
|
|
|
+ <el-table-column align="center" prop="expectAmount" label="订单金额">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{ (scope.row.couponRemitFee+scope.row.expectAmount) | moneyFormat }}
|
|
|
+ {{
|
|
|
+ (scope.row.couponRemitFee + scope.row.expectAmount)
|
|
|
+ | moneyFormat
|
|
|
+ }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -731,7 +736,7 @@ export default {
|
|
|
orderEndDate: null,
|
|
|
paymentStatus: "SUCCESS",
|
|
|
paymentType: null,
|
|
|
- routingOrganId: null,
|
|
|
+ routingOrganId: [],
|
|
|
actualAmount: null,
|
|
|
balancePaymentAmount: null,
|
|
|
orderNo: null,
|
|
@@ -851,7 +856,7 @@ export default {
|
|
|
} else if (type == "paymentStatus") {
|
|
|
this.searchForm.paymentStatus = null;
|
|
|
} else if (type == "routingOrganId") {
|
|
|
- this.searchForm.routingOrganId = null;
|
|
|
+ this.searchForm.routingOrganId = [];
|
|
|
}
|
|
|
},
|
|
|
onOrderSubmit(formName) {
|
|
@@ -923,7 +928,7 @@ export default {
|
|
|
balancePaymentAmount: searchForm.balancePaymentAmount,
|
|
|
paymentStatus: searchForm.paymentStatus,
|
|
|
paymentType: searchForm.paymentType,
|
|
|
- routingOrganId: searchForm.routingOrganId,
|
|
|
+ routingOrganId: this.searchForm.routingOrganId.join(','),
|
|
|
lessBalancePaymentAmount: searchForm.lessBalancePaymentAmount,
|
|
|
lessActualAmount: searchForm.lessActualAmount,
|
|
|
...this.extraQuery,
|
|
@@ -993,6 +998,7 @@ export default {
|
|
|
let data = {
|
|
|
...this.extraQuery,
|
|
|
};
|
|
|
+ data.routingOrganId= this.searchForm.routingOrganId.join(',')
|
|
|
if (this.searchForm.orderDate && this.searchForm.orderDate.length > 0) {
|
|
|
data.startTime = this.searchForm.orderDate[0];
|
|
|
data.endTime = this.searchForm.orderDate[1];
|
|
@@ -1058,6 +1064,7 @@ export default {
|
|
|
params.balancePaymentAmount = params.balancePaymentAmount
|
|
|
? params.balancePaymentAmount
|
|
|
: null;
|
|
|
+ params.routingOrganId= this.searchForm.routingOrganId.join(',')
|
|
|
if (this.searchForm.orderDate && this.searchForm.orderDate.length > 0) {
|
|
|
params.orderStartDate = this.searchForm.orderDate[0];
|
|
|
params.orderEndDate = this.searchForm.orderDate[1];
|
|
@@ -1104,7 +1111,7 @@ export default {
|
|
|
orderEndDate: null,
|
|
|
paymentStatus: "SUCCESS",
|
|
|
paymentType: null,
|
|
|
- routingOrganId: null,
|
|
|
+ routingOrganId: [],
|
|
|
actualAmount: null,
|
|
|
balancePaymentAmount: null,
|
|
|
orderNo: null,
|