|
@@ -64,12 +64,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="right" label="返利金额" prop="" min-width="160" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input class="mountclass" :disabled='isShow' v-model.number="scope.row.rebateAmount"></el-input>
|
|
|
+ <el-input class="mountclass" :disabled='isShow' type='number' v-model="scope.row.rebateAmount"></el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="right" label="折让金额" prop="" min-width="160" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input class="mountclass" :disabled='isShow' v-model.number="scope.row.allowanceAmount"></el-input>
|
|
|
+ <el-input class="mountclass" :disabled='isShow' type="number" v-model="scope.row.allowanceAmount"></el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="备注" prop="policyDocNo" min-width="160" show-overflow-tooltip></el-table-column>
|