flat: 暂存

This commit is contained in:
Apcallover
2024-03-10 18:25:02 +08:00
parent 050ddd08dc
commit 6a6e99bc71
8 changed files with 325 additions and 83 deletions

View File

@@ -182,6 +182,28 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item title="审核状态" name="5" disabled="true">
<template slot="title">
<div class="avue-group__header">
<div class="avue-group__title">审核信息</div>
</div>
</template>
<el-row>
<el-col span="24">
<el-form-item label="审核状态:">{{
recruit[model.reviewState]
}}</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col span="24">
<el-form-item label="审核备注:">{{
model.reviewMsg || '无'
}}</el-form-item>
</el-col>
</el-row>
</el-collapse-item>
</el-collapse>
</el-form>
</div>
@@ -194,7 +216,7 @@ import { dateFormat } from "@/util/date";
import {
wageUnitCategoryState,
educationState,
genderState,
genderState, recruitStatus,
} from "@/common/dic";
function getDic(arr) {
@@ -210,10 +232,11 @@ export default {
props: { model: Object },
data() {
return {
activeNames: ["1", "2", "3", "4"],
activeNames: ["1", "2", "3", "4", "5"],
wageUnitCategory: getDic(wageUnitCategoryState),
education: getDic(educationState),
gender: getDic(genderState),
recruit: getDic(recruitStatus),
};
},
mounted() { },