|
...
|
...
|
@@ -14,11 +14,6 @@ |
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="24">
|
|
|
|
<a-form-model-item label="基本工资" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="basicSalary">
|
|
|
|
<a-input-number v-model="model.basicSalary" placeholder="请输入基本工资" style="width: 100%" />
|
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="24">
|
|
|
|
<a-form-model-item label="总工资算法" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="zongPrice">
|
|
|
|
<a-input v-model="model.zongPrice" placeholder="请输入总工资算法" ></a-input>
|
|
|
|
</a-form-model-item>
|
|
...
|
...
|
@@ -72,7 +67,6 @@ |
|
|
|
validatorRules: {
|
|
|
|
jobId: [{ required: true, message: '请输入岗位编号!' }],
|
|
|
|
jobTitle: [{ required: true, message: '请输入岗位名称!' }],
|
|
|
|
basicSalary: [{ required: true, message: '请输入基本工资!' }],
|
|
|
|
bili: [{ required: true, message: '请输入计算比例!' }],
|
|
|
|
zongPrice: [{ required: true, message: '请输入总工资算法!' }],
|
|
|
|
},
|
...
|
...
|
|