|
|
|
|
@ -32,12 +32,12 @@
|
|
|
|
|
<div v-if="item.field==='company_date'">
|
|
|
|
|
{{student_info[item.field]?(student_info[item.field]=='0000-00-00'?'':student_info[item.field]):''}}
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div v-else style="word-break: break-word; word-wrap: break-word; overflow-wrap: break-word;">
|
|
|
|
|
{{student_info[item.field]?student_info[item.field]:''}}
|
|
|
|
|
<!-- 是否有更改的字段 -->
|
|
|
|
|
<template v-if="change_data.length>0">
|
|
|
|
|
<template v-for="change in change_data">
|
|
|
|
|
<span style="color:red"
|
|
|
|
|
<span style="color:red; word-break: break-word; word-wrap: break-word; overflow-wrap: break-word;"
|
|
|
|
|
v-if="change[item.field] && change['need_update']">-->{{change[item.field]}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
|
|
|
|
@ -71,7 +71,7 @@
|
|
|
|
|
<template slot="label">
|
|
|
|
|
{{item.name}}
|
|
|
|
|
</template>
|
|
|
|
|
{{item.value}}
|
|
|
|
|
<div style="word-break: break-word; word-wrap: break-word; overflow-wrap: break-word;">{{item.value}}</div>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
@ -114,12 +114,12 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:values>
|
|
|
|
|
<el-table-column align='left' label="操作详情" header-align="center">
|
|
|
|
|
<el-table-column align='left' width="450" label="操作详情" header-align="center" min-width="200" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div v-if="scope.row.event=='created'">
|
|
|
|
|
<div v-if="scope.row.event=='created'" style="word-break: break-word;">
|
|
|
|
|
提交报名信息
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<div v-else style="word-break: break-word;">
|
|
|
|
|
<template v-for="item in apply_status_list">
|
|
|
|
|
<span style="font-weight: bold;" v-if="scope.row.old_values.status===item.id">{{item.value}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
@ -161,7 +161,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="sign_result.status===5">
|
|
|
|
|
<span>放弃原因:</span>
|
|
|
|
|
<span>{{sign_result.giveup_reason}}</span>
|
|
|
|
|
<span style="word-break: break-word; word-wrap: break-word; overflow-wrap: break-word;">{{sign_result.giveup_reason}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex;" v-if="sign_result.status===1">
|
|
|
|
|
<span>录取通知书:</span>
|
|
|
|
|
@ -174,7 +174,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<span>备注:</span>
|
|
|
|
|
<span>{{sign_result.reason?sign_result.reason:''}}</span>
|
|
|
|
|
<span style="word-break: break-word; word-wrap: break-word; overflow-wrap: break-word;">{{sign_result.reason?sign_result.reason:''}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@ -286,7 +286,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
<template v-slot:footer>
|
|
|
|
|
<el-button plain type="primary" plain style='margin-left:5px;margin-bottom:5px;'
|
|
|
|
|
<el-button plain type="primary" style='margin-left:5px;margin-bottom:5px;'
|
|
|
|
|
@click="showChange = false">取消</el-button>
|
|
|
|
|
<el-button type="primary" style='margin-left:5px;margin-bottom:5px;' @click="saveAndUpdate(false)">直接审核</el-button>
|
|
|
|
|
<el-button type="primary" style='margin-left:5px;margin-bottom:5px;' @click="saveAndUpdate(true)">审核并更新</el-button>
|
|
|
|
|
@ -623,10 +623,43 @@
|
|
|
|
|
flex-basis: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 防止内容溢出导致宽度扩展
|
|
|
|
|
.xy-table-item-content {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// el-descriptions 组件样式
|
|
|
|
|
::v-deep .el-descriptions {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .el-descriptions-item__label {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .el-descriptions-item__content {
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
max-width: 85%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 表格内容防止溢出
|
|
|
|
|
::v-deep .el-table {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .el-table__body-wrapper {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .v-header {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|