|
|
@ -139,6 +139,12 @@ |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column :label="'单次最多未支付订单'" align="center" prop="unpaidLimit"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ scope.row.unpaidLimit }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column :label="'审核状态'" align="center" prop="auditStatus"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ scope.row.auditStatus == 0 ? '待审核' : scope.row.auditStatus == 1 ? '通过' : '不通过' }} |
|
|
@ -185,8 +191,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
<!-- 添加 --> |
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="110px"> |
|
|
|
<el-dialog :title="title" :visible.sync="open" width="550px" append-to-body> |
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="140px"> |
|
|
|
<el-form-item label="收款金额区间" prop="username"> |
|
|
|
<el-input v-model="form.singleMin" placeholder="" style="width:150px" @input="change" /> - |
|
|
|
<el-input v-model="form.singleMax" placeholder="" style="width:150px" @input="change" /> |
|
|
@ -201,6 +207,9 @@ |
|
|
|
<el-form-item label="权重次数" prop=""> |
|
|
|
<el-input v-model="form.frequency" placeholder="" style="width:150px" @input="change" /> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="单次最多未支付订单" prop=""> |
|
|
|
<el-input v-model="form.unpaidLimit" placeholder="" style="width:150px" @input="change" /> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<div slot="footer" class="dialog-footer"> |
|
|
|
<el-button type="primary" @click="submitForm('form')">保 存</el-button> |
|
|
@ -530,6 +539,7 @@ export default { |
|
|
|
dayMaxNumber: this.form.dayMaxNumber, |
|
|
|
dayReceiveMax: dayReceiveMax, |
|
|
|
frequency: this.form.frequency, |
|
|
|
unpaidLimit: this.form.unpaidLimit, |
|
|
|
id: this.form.id |
|
|
|
}).then((res) => { |
|
|
|
if (res.code === 200) { |
|
|
|