|
@@ -4,29 +4,28 @@
|
|
|
* @Autor: XuTongZhang
|
|
|
* @Date: 2020-07-30 10:32:00
|
|
|
* @LastEditors: XuTongZhang
|
|
|
- * @LastEditTime: 2020-08-11 17:18:52
|
|
|
+ * @LastEditTime: 2020-08-11 17:27:52
|
|
|
-->
|
|
|
<template>
|
|
|
<div>
|
|
|
<el-dialog
|
|
|
:visible.sync="dialogFormVisible"
|
|
|
- :width="info.filePath?'1400px':'700px'"
|
|
|
+ :width="'1400px'"
|
|
|
:before-close="close"
|
|
|
:close-on-click-modal="false"
|
|
|
>
|
|
|
<div class="flex">
|
|
|
<div class="left">
|
|
|
- <div class="top" v-if="info.answerVideoList && info.answerVideoList.length">
|
|
|
+ <div class="top">
|
|
|
<div class="title">{{info.delivererName}}的面试视频:</div>
|
|
|
<div class="video">
|
|
|
<video
|
|
|
width="100%"
|
|
|
controls
|
|
|
- v-if="info.answerVideoList && info.answerVideoList.length"
|
|
|
- :src="$img + info.answerVideoList[active].answerVideoPath"
|
|
|
+ :src="info.answerVideoList && info.answerVideoList.length ? $img + info.answerVideoList[active].answerVideoPath : ''"
|
|
|
></video>
|
|
|
</div>
|
|
|
- <div class="list">
|
|
|
+ <div class="list" v-if="info.answerVideoList && info.answerVideoList.length">
|
|
|
<div
|
|
|
v-for="(item, index) in info.answerVideoList"
|
|
|
:key="item.id"
|
|
@@ -35,6 +34,7 @@
|
|
|
:class="active === index ? 'is-active' : ''"
|
|
|
>第{{index + 1}}段</div>
|
|
|
</div>
|
|
|
+ <div v-else class="prompt">无视频</div>
|
|
|
</div>
|
|
|
<div class="center">
|
|
|
<div class="title">简历备注:</div>
|
|
@@ -177,4 +177,11 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+.prompt {
|
|
|
+ text-align: center;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 40px;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #888;
|
|
|
+}
|
|
|
</style>
|