|
|
|
@ -13,7 +13,7 @@ |
|
|
|
|
<el-divider direction="horizontal" content-position="left">应发</el-divider> |
|
|
|
|
<el-row :gutter="20"> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-form-item label="底薪" prop="dixin"> |
|
|
|
|
<el-form-item label="基本工资" prop="dixin"> |
|
|
|
|
<el-input-number v-model="formData.dixin" :min="0" :controls="false" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
@ -36,6 +36,18 @@ |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-form-item label="补贴" prop="butie"> |
|
|
|
|
<el-input-number v-model="formData.butie" :min="0" :controls="false" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row :gutter="20"> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-form-item label="满勤" prop="manqin"> |
|
|
|
|
<el-input-number v-model="formData.manqin" :min="0" :controls="false" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-form-item label="其他应发" prop="qitayingfa"> |
|
|
|
|
<el-input-number v-model="formData.qitayingfa" :min="0" :controls="false" /> |
|
|
|
@ -100,7 +112,7 @@ const formLoading = ref(false) // 表单的加载中:1)修改时的数据加 |
|
|
|
|
const formData = ref({}) |
|
|
|
|
|
|
|
|
|
const rules = { |
|
|
|
|
dixin: { required: true, message: '底薪不可为空', trigger: 'blur' } |
|
|
|
|
dixin: { required: true, message: '基本工资不可为空', trigger: 'blur' } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 打开弹窗 */ |
|
|
|
|