|
|
@@ -72,7 +72,7 @@
|
|
|
class="personnelInformation"
|
|
|
>
|
|
|
<el-form-item label="总比例" prop="proportion">
|
|
|
- <el-input placeholder="请输入内容(不得超过0.5)" style="width: 250px;" v-model="proportionData.proportion">
|
|
|
+ <el-input placeholder="请输入内容(不得超过0.5)" style="width: 250px;" disabled v-model="proportionData.proportion">
|
|
|
<template slot="append">%</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -691,7 +691,9 @@ export default {
|
|
|
pdeptId: null,
|
|
|
deptId: "99",
|
|
|
proportionDialogVisible:false,
|
|
|
- proportionData:{},
|
|
|
+ proportionData:{
|
|
|
+ proportion:'0.5'
|
|
|
+ },
|
|
|
proportionRules:{
|
|
|
proportion: [
|
|
|
{ required: true, message: '请输入总比例', trigger: 'blur' },
|
|
|
@@ -917,7 +919,8 @@ export default {
|
|
|
checked3:res.data.threeProportion?true:false,
|
|
|
checked4:res.data.fourProportion?true:false,
|
|
|
checked5:res.data.fiveProportion?true:false,
|
|
|
- ...res.data
|
|
|
+ ...res.data,
|
|
|
+ proportion:'0.5'
|
|
|
}
|
|
|
});
|
|
|
|