|
|
@@ -74,17 +74,20 @@
|
|
|
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
|
<el-form-item label="初级以上相关专业技术职业资格" prop="professionalQualifications">
|
|
|
- <el-input style="width: 217px;" v-model="formData.professionalQualifications" placeholder="请输入">
|
|
|
+ <el-input style="width: 217px;" maxlength="50" v-model="formData.professionalQualifications" placeholder="请输入">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
+
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
|
<el-form-item label="持证上岗未通过原因" prop="certificateFailReason">
|
|
|
- <el-input style="width: 217px;" v-model="formData.certificateFailReason" placeholder="请输入">
|
|
|
- </el-input>
|
|
|
+ <el-select style="width: 217px;" v-model="formData.certificateFailReason" placeholder="请选择">
|
|
|
+ <el-option v-for="dict in dict.type.post_no_pass" :key="dict.value" :label="dict.label"
|
|
|
+ :value="dict.value" />
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
|
@@ -143,7 +146,7 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div style="margin-top: 50px; margin-left: 42%">
|
|
|
- <el-button type="primary" @click="saveExtend" size="small">提交</el-button>
|
|
|
+ <el-button type="primary" @click="saveExtend" v-hasPermi="['system:information:edit']" size="small">提交</el-button>
|
|
|
<el-button type="primary" @click="nosaveExtend" size="small">取消</el-button>
|
|
|
</div>
|
|
|
|
|
|
@@ -163,7 +166,7 @@ import { extendUserInformation } from "@/api/system/information";
|
|
|
export default {
|
|
|
props: [],
|
|
|
components: { TreeSelect },
|
|
|
- dicts: ['sys_highest_education', "sys_work_type", "sys_duties", "sys_education_type", 'sys_department_type'],
|
|
|
+ dicts: ['sys_highest_education', "sys_work_type", "sys_duties", "sys_education_type", 'sys_department_type','post_no_pass'],
|
|
|
data() {
|
|
|
return {
|
|
|
startDatepickerOptions: {
|
|
|
@@ -249,8 +252,8 @@ export default {
|
|
|
professionalQualifications: [
|
|
|
{ required: true, message: '请输入初级以上相关专业技术职业资格', trigger: 'change' }
|
|
|
],
|
|
|
- date1: [
|
|
|
- { type: 'date', required: true, message: '请选择日期', trigger: 'change' }
|
|
|
+ certificateFailReason: [
|
|
|
+ { required: true, message: '请输入持证上岗未通过原因', trigger: 'change' }
|
|
|
],
|
|
|
date2: [
|
|
|
{ type: 'date', required: true, message: '请选择时间', trigger: 'change' }
|