|
@@ -85,6 +85,25 @@
|
|
</a-select>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
|
|
|
|
|
+
|
|
|
|
+ <a-form-item class="grid-form-item" label="状态:" :colon="false">
|
|
|
|
+ <a-select
|
|
|
|
+ v-model="configForm.auditStatus"
|
|
|
|
+ style="width: 200px; margin-left: 10px"
|
|
|
|
+ :filterOption="filterOption"
|
|
|
|
+ showSearch
|
|
|
|
+ allowClear
|
|
|
|
+ placeholder="请选择状态"
|
|
|
|
+ >
|
|
|
|
+ <a-select-option value="1">待审核</a-select-option>
|
|
|
|
+ <a-select-option value="2">待充值</a-select-option>
|
|
|
|
+ <a-select-option value="3">充值完成</a-select-option>
|
|
|
|
+ <a-select-option value="4">临时充值</a-select-option>
|
|
|
|
+ <a-select-option value="5">审核拒绝</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+
|
|
|
|
+
|
|
<a-form-item class="grid-form-item" label="返点类型:" :colon="false">
|
|
<a-form-item class="grid-form-item" label="返点类型:" :colon="false">
|
|
<a-select
|
|
<a-select
|
|
v-model="configForm.rebateType"
|
|
v-model="configForm.rebateType"
|
|
@@ -510,6 +529,12 @@
|
|
"
|
|
"
|
|
>
|
|
>
|
|
<div v-for="(item, index) in queryByIdList.accountList" :key="index">
|
|
<div v-for="(item, index) in queryByIdList.accountList" :key="index">
|
|
|
|
+ <a-form-model-item label="序号" prop="index" style="color: red">
|
|
|
|
+ {{
|
|
|
|
+ index + 1
|
|
|
|
+ }}
|
|
|
|
+ </a-form-model-item>
|
|
|
|
+
|
|
<a-form-model-item label="账户" prop="accountName">
|
|
<a-form-model-item label="账户" prop="accountName">
|
|
{{
|
|
{{
|
|
item.accountName
|
|
item.accountName
|
|
@@ -609,7 +634,6 @@
|
|
</a-modal>
|
|
</a-modal>
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
<div
|
|
<div
|
|
solt="footer"
|
|
solt="footer"
|
|
style="display: flex; justify-content: end"
|
|
style="display: flex; justify-content: end"
|
|
@@ -966,6 +990,7 @@
|
|
paymentMedia: undefined,
|
|
paymentMedia: undefined,
|
|
time: [],
|
|
time: [],
|
|
rebateType: undefined,
|
|
rebateType: undefined,
|
|
|
|
+ auditStatus: undefined,
|
|
},
|
|
},
|
|
tablePag: {
|
|
tablePag: {
|
|
page: 1,
|
|
page: 1,
|
|
@@ -1357,6 +1382,7 @@
|
|
productName: this.configForm.productName,
|
|
productName: this.configForm.productName,
|
|
paymentMedia: this.configForm.paymentMedia,
|
|
paymentMedia: this.configForm.paymentMedia,
|
|
rebateType: this.configForm.rebateType,
|
|
rebateType: this.configForm.rebateType,
|
|
|
|
+ auditStatus: this.configForm.auditStatus,
|
|
startDate:
|
|
startDate:
|
|
this.configForm.time && this.configForm.time.length == 2
|
|
this.configForm.time && this.configForm.time.length == 2
|
|
? moment(this.configForm.time[0]).format("YYYY-MM-DD")
|
|
? moment(this.configForm.time[0]).format("YYYY-MM-DD")
|