|
|
@@ -233,12 +233,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="content-l-item-btn flex align-center">
|
|
|
- <div class="content-l-item-btn-item"
|
|
|
- v-for="(ite, ind) in item.industry.slice(0, 4)">
|
|
|
- {{ ite }}<el-divider
|
|
|
- v-if="ind < item.industry.slice(0, 4).length - 1 && item.industry.length > 1"
|
|
|
- direction="vertical" />
|
|
|
-
|
|
|
+ <div class="content-l-item-btn-item flex align-center">
|
|
|
+ <img :src="item.hr && item.hr.hrImg ? item.hr.hrImg : '/default.jpg'"
|
|
|
+ style="width: 40px;height: 40px;border-radius: 50%;" mode="">
|
|
|
+ </img>
|
|
|
+ <div class="company-info-text">
|
|
|
+ {{ item.user && item.user.userName || '未知' }}·{{ item.hr &&item.hr.hrPosition || '未知' }}
|
|
|
+ </div>
|
|
|
+ <div v-if="item.respondTime" class="reply-time">{{ item.respondTime }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -1404,9 +1406,20 @@ $marginTop-60: 120px;
|
|
|
border-radius: 0 0 0 13px;
|
|
|
|
|
|
.content-l-item-btn-item {
|
|
|
- color: #666666;
|
|
|
- font-size: 13px;
|
|
|
-
|
|
|
+ .company-info-text {
|
|
|
+ margin: 0 10px;
|
|
|
+ color: rgba(156, 164, 171, 1);
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ }
|
|
|
+ .reply-time {
|
|
|
+ border-radius: 4px;
|
|
|
+ background: rgba(236, 225, 253, 1);
|
|
|
+ padding: 4px;
|
|
|
+ color: rgba(106.94, 84.63, 214.02, 0.96);
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|