|
@@ -77,6 +77,22 @@
|
|
|
</el-select>
|
|
|
<span @click="clearQuery('status')" class="query_clear"><i class="el-icon-circle-close"></i></span>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item v-if="queryShow.payWay" label="支付方式">
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.payWay"
|
|
|
+ placeholder="支付方式"
|
|
|
+ clearable
|
|
|
+ style="width: 100%"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.pay_way_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ <span @click="clearQuery('payWay')" class="query_clear"><i class="el-icon-circle-close"></i></span>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item v-if="queryShow.time" label="支付时间">
|
|
|
<el-date-picker
|
|
|
v-model="queryParams.time"
|
|
@@ -169,6 +185,7 @@
|
|
|
<el-dropdown-item command="teamTypeId">团队类型</el-dropdown-item>
|
|
|
<el-dropdown-item command="ifSuccessInvoice">是否成功开票</el-dropdown-item>
|
|
|
<el-dropdown-item command="status">订单状态</el-dropdown-item>
|
|
|
+ <el-dropdown-item command="payWay">支付方式</el-dropdown-item>
|
|
|
<el-dropdown-item command="time">支付时间</el-dropdown-item>
|
|
|
<el-dropdown-item command="paymentId">支付单号</el-dropdown-item>
|
|
|
<el-dropdown-item command="performDate">场次时间/场次</el-dropdown-item>
|
|
@@ -545,6 +562,7 @@ export default {
|
|
|
salerPerson: false,
|
|
|
teamTypeId: false,
|
|
|
ifSuccessInvoice: false,
|
|
|
+ payWay: false,
|
|
|
status: false,
|
|
|
time: false,
|
|
|
paymentId: false,
|
|
@@ -649,6 +667,7 @@ export default {
|
|
|
this.$set(this.queryParams, 'time', '');
|
|
|
this.$set(this.queryParams, 'performDate', '');
|
|
|
this.$set(this.queryParams, 'performTimeId', '');
|
|
|
+ this.$set(this.queryParams, 'payWay', '');
|
|
|
this.$set(this.queryParams, 'invoiceTime', '');
|
|
|
this.$set(this.queryParams, 'salerPerson', '');
|
|
|
this.$set(this.queryParams, 'refundPaymentId', '');
|