|
@@ -768,7 +768,7 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
var validateApplicantTeam = (rule, value, callback) => {
|
|
|
- if (this.form.applicantDept == '103') {
|
|
|
+ if (!this.applicantTeamDisabled) {
|
|
|
if (this.form.applicantTeam == null) {
|
|
|
return callback(new Error('登记人班组不能为空'));
|
|
|
} else {
|
|
@@ -980,6 +980,12 @@ export default {
|
|
|
unsafeAction: [
|
|
|
{ validator: validateUnsafeAction, trigger: 'change' }
|
|
|
],
|
|
|
+ saiLevel: [
|
|
|
+ { required: true, message: this.$t('SAI级别') + this.$t('不能为空'), trigger: "change" }
|
|
|
+ ],
|
|
|
+ category: [
|
|
|
+ { required: true, message: this.$t('SAI类别') + this.$t('不能为空'), trigger: "change" }
|
|
|
+ ],
|
|
|
},
|
|
|
// 申请状态字典
|
|
|
applyStatusOptions: [],
|