Browse Source

unpaidLimit字段添加

master
j1ack 2 years ago
parent
commit
e355a81bfd
  1. BIN
      kaka总后台-正式.zip
  2. BIN
      kaka总后台-测试.zip
  3. 14
      src/views/carddealer/carddealerCard/index.vue

BIN
kaka总后台-正式.zip

Binary file not shown.

BIN
kaka总后台-测试.zip

Binary file not shown.

14
src/views/carddealer/carddealerCard/index.vue

@ -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) {

Loading…
Cancel
Save