|
@@ -159,12 +159,13 @@
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="扣除信用分值:" prop="deductionVal" style="width:600px;" v-if="form.reasonId==-1">
|
|
<el-form-item label="扣除信用分值:" prop="deductionVal" style="width:600px;" v-if="form.reasonId==-1">
|
|
- <el-input
|
|
|
|
|
|
+ <el-input-number
|
|
v-model="form.deductionVal"
|
|
v-model="form.deductionVal"
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
|
|
+ :min="0"
|
|
maxLength="5"
|
|
maxLength="5"
|
|
@input="getIntegralMatchingRules">
|
|
@input="getIntegralMatchingRules">
|
|
- </el-input>
|
|
|
|
|
|
+ </el-input-number>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="处理方式" prop="checkListTwo">
|
|
<el-form-item label="处理方式" prop="checkListTwo">
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
@@ -937,9 +938,10 @@ export default {
|
|
//处罚方式懒加载
|
|
//处罚方式懒加载
|
|
getIntegralMatchingRules(query){
|
|
getIntegralMatchingRules(query){
|
|
if (query !== '') {
|
|
if (query !== '') {
|
|
|
|
+ console.log(this.form.deductionVal)
|
|
this.loading = true;
|
|
this.loading = true;
|
|
let obj = {
|
|
let obj = {
|
|
- creditScore : this.form.deductionVal
|
|
|
|
|
|
+ creditScore : this.form.deductionVal?this.form.deductionVal:'0'
|
|
};
|
|
};
|
|
getIntegralMatchingRules(obj).then(res => {
|
|
getIntegralMatchingRules(obj).then(res => {
|
|
this.loading = false;
|
|
this.loading = false;
|