|
@@ -40,13 +40,13 @@
|
|
|
<div class="title">简历备注:</div>
|
|
|
<el-input type="textarea" :rows="4" resize="none" placeholder="请输入内容" v-model="remark"></el-input>
|
|
|
</div>
|
|
|
- <div class="footer">
|
|
|
+ <div v-if="!type" class="footer">
|
|
|
<el-button type="primary" @click="submit">提交备注</el-button>
|
|
|
<el-button type="danger" @click="through(2)">标记为未通过</el-button>
|
|
|
<el-button type="success" @click="through(1)">标记为通过</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="right">
|
|
|
+ <div class="resune">
|
|
|
<el-form label-width="140px" label-position="right" v-if="info.resumeFrom===3">
|
|
|
<el-form-item v-for="item in formConfig" :key="item.id" :label="item.configName">
|
|
|
<!-- {{item.type === 2 ? ['女', '男'][info[item.fieldName]] : item.type === 8 ? ['女', '男'][info[item.fieldName]] : info[item.fieldName]}} -->
|
|
@@ -67,6 +67,95 @@
|
|
|
</el-form>
|
|
|
<iframe v-else width="100%" height="100%" :src="$img + info.filePath"></iframe>
|
|
|
</div>
|
|
|
+ <div class="score" v-if="type">
|
|
|
+ <div class="resume-score">
|
|
|
+ <el-card class="box-card">
|
|
|
+ <el-table
|
|
|
+ :data="resumeScore"
|
|
|
+ style="width: 100%">
|
|
|
+ <el-table-column
|
|
|
+ prop="label"
|
|
|
+ label="简历打分"
|
|
|
+ align="center">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="right">
|
|
|
+ <template slot="header" slot-scope>
|
|
|
+ <div class="header-color-grounp">
|
|
|
+ <div class="success"></div>
|
|
|
+ <div class="warning"></div>
|
|
|
+ <div class="danger"></div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="content-color-grounp">
|
|
|
+ <div :class="scope.row.value === 1 && 'success'" @click="changeScore(scope.$index, 1, 'resumeScore')"></div>
|
|
|
+ <div :class="scope.row.value === 2 && 'warning'" @click="changeScore(scope.$index, 2, 'resumeScore')"></div>
|
|
|
+ <div :class="scope.row.value === 3 && 'danger'" @click="changeScore(scope.$index, 3, 'resumeScore')"></div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ <div class="interview-score">
|
|
|
+ <el-card class="box-card">
|
|
|
+ <el-table
|
|
|
+ :data="interviewScore"
|
|
|
+ style="width: 100%">
|
|
|
+ <el-table-column
|
|
|
+ prop="label"
|
|
|
+ label="面试打分"
|
|
|
+ align="center">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center">
|
|
|
+ <template slot="header" slot-scope>
|
|
|
+ <div class="header-color-grounp">
|
|
|
+ <div class="success"></div>
|
|
|
+ <div class="warning"></div>
|
|
|
+ <div class="danger"></div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="content-color-grounp">
|
|
|
+ <div :class="scope.row.value === 1 && 'success'" @click="changeScore(scope.$index, 1, 'interviewScore')"></div>
|
|
|
+ <div :class="scope.row.value === 2 && 'warning'" @click="changeScore(scope.$index, 2, 'interviewScore')"></div>
|
|
|
+ <div :class="scope.row.value === 3 && 'danger'" @click="changeScore(scope.$index, 3, 'interviewScore')"></div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ <div class="comprehensive">
|
|
|
+ <div class="rate-grounp">
|
|
|
+ 综合评分:<el-rate :value="score.totalScore" disabled />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="score-form">
|
|
|
+ <el-form :model="score" ref="scoreForm" label-position="top" label-width="80px">
|
|
|
+ <el-form-item label="简历修改建议">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ resize="none"
|
|
|
+ placeholder="请输入简历修改建议"
|
|
|
+ v-model="score.resumePropose" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="面试修改建议">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ resize="none"
|
|
|
+ placeholder="请输入面试修改建议"
|
|
|
+ v-model="score.interviewPropose" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <div class="score-footer">
|
|
|
+ <el-button @click="resetForm">重置</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm" style="background: #00a0e9;border-color:#00a0e9">确定</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -79,7 +168,58 @@ export default {
|
|
|
remark: '',
|
|
|
active: 0,
|
|
|
formConfig: [],
|
|
|
- form: {}
|
|
|
+ form: {},
|
|
|
+ score: {},
|
|
|
+ scoreId: null,
|
|
|
+ resumeScore:
|
|
|
+ [
|
|
|
+ {
|
|
|
+ label: '基本背景',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '教育背景',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '工作&实习经历',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '求职意向',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '技能',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '自我评价',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '其他',
|
|
|
+ value: 0
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ interviewScore: [
|
|
|
+ {
|
|
|
+ label: '个人介绍',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '自我评价',
|
|
|
+ value: 0
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // label: '问题',
|
|
|
+ // value: 0
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ label: '其他',
|
|
|
+ value: 0
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
@@ -87,17 +227,21 @@ export default {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
+ type: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
close: {
|
|
|
type: Function,
|
|
|
default: () => {}
|
|
|
},
|
|
|
info: {
|
|
|
type: Object,
|
|
|
- default: () => {}
|
|
|
+ default: () => ({})
|
|
|
},
|
|
|
searchForm: {
|
|
|
type: Object,
|
|
|
- default: () => {}
|
|
|
+ default: () => ({})
|
|
|
},
|
|
|
queryData: {
|
|
|
type: Function,
|
|
@@ -152,8 +296,81 @@ export default {
|
|
|
this.form = res.object
|
|
|
})
|
|
|
},
|
|
|
+ getScore (id) {
|
|
|
+ this.$api
|
|
|
+ .post('/resumeScore/queryResumeScore', {
|
|
|
+ reqdata: {
|
|
|
+ resumeId: id
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ const { object } = res
|
|
|
+ const { id, resumePropose, interviewPropose, resumeScore, interviewScore } = object || {}
|
|
|
+ this.score = { resumePropose, interviewPropose }
|
|
|
+ this.scoreId = id
|
|
|
+ this.resumeScore = resumeScore
|
|
|
+ ? JSON.parse(resumeScore)
|
|
|
+ : this.resumeScore.map(item => {
|
|
|
+ item.value = 0
|
|
|
+ return item
|
|
|
+ })
|
|
|
+ // console.log(this.resumeScore)
|
|
|
+ const list = this.interviewScore
|
|
|
+ this.interviewScore = interviewScore
|
|
|
+ ? JSON.parse(interviewScore)
|
|
|
+ : (() => {
|
|
|
+ const num = this.info.answerVideoList ? this.info.answerVideoList.length : 0
|
|
|
+ let arr = []
|
|
|
+ for (let index = 0; index < num; index++) {
|
|
|
+ arr.push(
|
|
|
+ {
|
|
|
+ label: '问题' + (index + 1),
|
|
|
+ value: 0
|
|
|
+ }
|
|
|
+ )
|
|
|
+ }
|
|
|
+ list.splice(2, 0, ...arr)
|
|
|
+ return list.map(item => {
|
|
|
+ item.value = 0
|
|
|
+ return item
|
|
|
+ })
|
|
|
+ })()
|
|
|
+ // this.interviewScore.map(item => {
|
|
|
+ // item.value = 0
|
|
|
+ // return item
|
|
|
+ // })
|
|
|
+ // info.answerVideoList && info.answerVideoList.length
|
|
|
+ })
|
|
|
+ },
|
|
|
openNewPage (url) {
|
|
|
window.open(url)
|
|
|
+ },
|
|
|
+ resetForm () {
|
|
|
+ this.score = {}
|
|
|
+ this.resumeScore.forEach(item => (item.value = 0))
|
|
|
+ this.interviewScore.forEach(item => (item.value = 0))
|
|
|
+ },
|
|
|
+ submitForm () {
|
|
|
+ const { score, resumeScore, interviewScore, scoreId } = this
|
|
|
+ const url = scoreId ? '/resumeScore/updateResumeScore' : '/resumeScore/createResumeScore'
|
|
|
+ this.$api
|
|
|
+ .post(url, {
|
|
|
+ reqdata: {
|
|
|
+ ...score,
|
|
|
+ resumeId: this.info.id,
|
|
|
+ interviewScore: JSON.stringify(interviewScore),
|
|
|
+ resumeScore: JSON.stringify(resumeScore),
|
|
|
+ totalScore: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ this.close()
|
|
|
+ this.queryData(this.searchForm)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ changeScore (index, val, arr) {
|
|
|
+ // console.log(index, val)
|
|
|
+ this.$set(this[arr][index], 'value', val)
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -164,7 +381,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
dialogFormVisible (val) {
|
|
|
+ this.resetForm()
|
|
|
val || (this.active = 0)
|
|
|
+ this.type && this.getScore(this.info.id)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -175,7 +394,7 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
.left {
|
|
|
- flex: 1;
|
|
|
+ flex: 3;
|
|
|
margin-right: 20px;
|
|
|
.top {
|
|
|
.title {
|
|
@@ -211,9 +430,9 @@ export default {
|
|
|
justify-content: center;
|
|
|
}
|
|
|
}
|
|
|
- .right {
|
|
|
+ .resune {
|
|
|
overflow: scroll;
|
|
|
- width: 770px;
|
|
|
+ flex: 3;
|
|
|
max-height: 770px;
|
|
|
iframe {
|
|
|
border: none;
|
|
@@ -221,6 +440,47 @@ export default {
|
|
|
width: 100%;
|
|
|
}
|
|
|
}
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ width: 0!important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .score {
|
|
|
+ flex: 2;
|
|
|
+ .header-color-grounp {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ > div {
|
|
|
+ width: 13px;
|
|
|
+ margin: 0 6px;
|
|
|
+ height: 13px;
|
|
|
+ border-radius: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .content-color-grounp {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ > div {
|
|
|
+ cursor: pointer;
|
|
|
+ width: 25px;
|
|
|
+ height: 13px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background: rgba(144, 147, 153, .5);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .success {
|
|
|
+ background: #67c23a!important;
|
|
|
+ }
|
|
|
+ .warning {
|
|
|
+ background: #e6a23c!important;
|
|
|
+ }
|
|
|
+ .danger {
|
|
|
+ background: #f56c6c!important;
|
|
|
+ }
|
|
|
+ .score-footer {
|
|
|
+ margin-top: 12px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.prompt {
|
|
@@ -230,4 +490,24 @@ export default {
|
|
|
font-size: 20px;
|
|
|
color: #888;
|
|
|
}
|
|
|
+.rate-grounp {
|
|
|
+ display: flex;
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
+::v-deep .el-table th,::v-deep .el-table td {
|
|
|
+ padding: 5px 0 !important;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+::v-deep .el-card__body {
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
+::v-deep .el-card {
|
|
|
+ margin: 5px 0;
|
|
|
+}
|
|
|
+::v-deep .el-form-item {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+::v-deep .el-form-item__label {
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
</style>
|