|
|
@@ -17,25 +17,22 @@
|
|
|
<el-row>
|
|
|
<el-col :span="4">
|
|
|
</el-col>
|
|
|
- <el-col :span="4">
|
|
|
- <el-form :model="parameterform" label-width="200px" label-position="top">
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form :model="parameterform" label-width="200px" label-position="left">
|
|
|
<el-form-item label="是否需要现场考察报告 ">
|
|
|
<el-switch on-text="是" off-text="否" on-color="#13ce66" v-model="parameterform.isInvestigate"></el-switch>
|
|
|
</el-form-item>
|
|
|
- <!--<el-form-item label="录入样本时是否自动打印标签 ">-->
|
|
|
- <!--<el-switch on-text="是" off-text="否" on-color="#13ce66" v-model="parameterform.isAutoPrintSample"></el-switch>-->
|
|
|
- <!--</el-form-item>-->
|
|
|
<el-form-item label="增项申请时间限制 " prop="newpass">
|
|
|
<el-input v-model="parameterform.sAddLimitMonth" :min="0" style="width:100%" @keyup.native="proving1">
|
|
|
<template slot="append">个月</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <!--<el-form-item label="随访过期后仍提醒天数 " prop="checknewPass" v-if="!yeartest">-->
|
|
|
- <!--<el-input-number v-model="parameterform.sFlupLastDay" :min="0" style="width:100%"></el-input-number>-->
|
|
|
- <!--</el-form-item>-->
|
|
|
- <!--<el-form-item label="年检报告提前提醒天数 " prop="yearPass" v-if="yeartest">-->
|
|
|
- <!--<el-input-number v-model="parameterform.sTestFrontDay" :min="0" style="width:100%"></el-input-number>-->
|
|
|
- <!--</el-form-item>-->
|
|
|
+ <el-form-item label="合同年度评价优秀分数线" prop="yearEvaGood">
|
|
|
+ <el-input-number v-model="parameterform.yearEvaGood" :min="0" :precision="2" :step="0.1" style="width:100%"></el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="合同年度评价合格分数线" prop="yearEvaPass">
|
|
|
+ <el-input-number v-model="parameterform.yearEvaPass" :min="0" :precision="2" :step="0.1" style="width:100%"></el-input-number>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
@@ -50,9 +47,10 @@
|
|
|
return {
|
|
|
parameterform: {
|
|
|
isInvestigate: false,
|
|
|
- sAddLimitMonth: ''
|
|
|
- },
|
|
|
- yeartest: false
|
|
|
+ sAddLimitMonth: 0,
|
|
|
+ yearEvaGood: 80,
|
|
|
+ yearEvaPass: 60
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
@@ -72,8 +70,13 @@
|
|
|
_this.parameterform.isInvestigate = true
|
|
|
}
|
|
|
break
|
|
|
- case 'sAddLimitMonth':
|
|
|
- _this.parameterform.sAddLimitMonth = (res.data[i].Parametercontent)
|
|
|
+ case 'yearEvaGood':
|
|
|
+ console.log(res.data[i], 666)
|
|
|
+ _this.parameterform.yearEvaGood = (res.data[i].Parametercontent)
|
|
|
+ break
|
|
|
+ case 'yearEvaPass':
|
|
|
+ console.log(res.data[i], 777)
|
|
|
+ _this.parameterform.yearEvaPass = (res.data[i].Parametercontent)
|
|
|
break
|
|
|
}
|
|
|
}
|
|
|
@@ -105,7 +108,6 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
</script>
|
|
|
|
|
|
<style>
|