| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="24" style="margin-bottom: 24px"> |
| | | <el-form-item label="审批层级" prop="type"> |
| | | <el-select v-model="approveLevelForm.type" placeholder="请选择审批层级" class="input-add"> |
| | | <el-form-item label="审批层级" prop="approvalType"> |
| | | <el-select v-model="approveLevelForm.approvalType" placeholder="请选择审批层级" class="input-add"> |
| | | <el-option v-for="item in typeList" :key="item.id" :value="item.id" :label="item.name"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="24" style="margin-bottom: 24px" v-if="approveLevelForm.type === 2"> |
| | | <el-col :span="24" style="margin-bottom: 24px"> |
| | | <el-form-item label="审批类型" prop="auditType"> |
| | | <el-select v-model="approveLevelForm.auditType" placeholder="请选择审批类型" class="input-add"> |
| | | <el-option v-for="item in auditTypeList" :key="item.id" :value="item.id" :label="item.name"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="24" style="margin-bottom: 24px"> |
| | | <el-form-item label="人员类型" prop="personType"> |
| | | <el-select v-model="approveLevelForm.personType" placeholder="请选择审批类型" class="input-add"> |
| | | <el-option v-for="item in personTypeList" :key="item.id" :value="item.id" :label="item.name"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="24" style="margin-bottom: 24px"> |
| | | <el-form-item label="内容类型" prop="contentType"> |
| | | <el-select v-model="approveLevelForm.contentType" placeholder="请选择审批类型" class="input-add"> |
| | | <el-option v-for="item in contentTypeList" :key="item.id" :value="item.id" :label="item.name"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="24" style="margin-bottom: 20px"> |
| | | <el-form-item label="审批有效时间" prop="continueTime"> |
| | | <el-col :span="24" style="margin-bottom: 20px" v-if="approveLevelForm.personType === 3"> |
| | | <el-form-item label="分析有效时间" prop="continueTime"> |
| | | <el-input type="number" v-model="approveLevelForm.continueTime" placeholder="请输入审批有效时间" class="input-add"> |
| | | <template #prepend> |
| | | <el-select v-model="approveLevelForm.continueTimeUnit" placeholder="选择单位"> |
| | |
| | | typeList: Array<type>; |
| | | auditTypeList: Array<type>; |
| | | approveTypeList: Array<type>; |
| | | personTypeList: Array<type>; |
| | | contentTypeList: Array<type>; |
| | | workLevelList: []; |
| | | standardList: Array<stand>; |
| | | actionList: Array<action>; |
| | |
| | | id: number | null; |
| | | stepName: null; |
| | | stepSerial: number | null; |
| | | type: number | null; |
| | | approvalType: number | null; |
| | | auditType: number | null; |
| | | contentType: number | null; |
| | | personType: number | null; |
| | | continueTime: number | null; |
| | | continueTimeUnit: number | null; |
| | | unitList: Array<personType>; |
| | |
| | | id: null, |
| | | stepName: null, |
| | | stepSerial: null, |
| | | type: null, |
| | | approvalType: null, |
| | | auditType: null, |
| | | personType: null, |
| | | contentType: null, |
| | | continueTime: null, |
| | | continueTimeUnit: null, |
| | | unitList: [], |
| | |
| | | }, |
| | | approveLevelFormRule: { |
| | | stepName: [{ required: true, message: '请填写层次名称', trigger: 'blur' }], |
| | | type: [{ required: true, message: '请选择审批层级', trigger: 'change' }], |
| | | approvalType: [{ required: true, message: '请选择审批层级', trigger: 'change' }], |
| | | auditType: [{ required: true, message: '请选择审批类型', trigger: 'change' }], |
| | | personType: [{ required: true, message: '请选择人员类型', trigger: 'change' }], |
| | | contentType: [{ required: true, message: '请选择内容类型', trigger: 'change' }], |
| | | unitList: [{ required: true, message: '请选择审批人', trigger: 'change' }], |
| | | continueTime: [{ required: true, message: '请填写有效时间', trigger: 'blur' }] |
| | | }, |
| | |
| | | typeList: [ |
| | | { id: 1, name: '单人' }, |
| | | { id: 2, name: '多人' }, |
| | | { id: 3, name: '分析人' } |
| | | // { id: 3, name: '分析人' } |
| | | ], |
| | | auditTypeList: [ |
| | | { id: 1, name: '单审' }, |
| | | { id: 2, name: '会审' }, |
| | | ], |
| | | personTypeList: [ |
| | | { id: 1, name: '普通人员审批' }, |
| | | { id: 2, name: '监护人员元审批' }, |
| | | { id: 3, name: '分析人员审批' } |
| | | ], |
| | | contentTypeList: [ |
| | | { id: 1, name: '审批项审批' }, |
| | | { id: 2, name: '简单审批' }, |
| | | ], |
| | | approveTypeList: [ |
| | | { id: 1, name: '数值' }, |
| | |
| | | id: null, |
| | | stepName: null, |
| | | stepSerial: null, |
| | | type: null, |
| | | approvalType: null, |
| | | auditType: null, |
| | | personType: null, |
| | | contentType: null, |
| | | continueTime: null, |
| | | continueTimeUnit: null, |
| | | unitList: [], |