|
@@ -4,10 +4,10 @@
|
|
|
<!-- 公司信息 -->
|
|
|
<div class="company-info-top" @click="handleClickEnterprise(item)">
|
|
|
<div class="float-left">
|
|
|
- <v-img src="../../assets/logo.png" :alt="item.anotherName" :width="40" style="height: 40px;border-radius: 4px;"/>
|
|
|
+ <v-img src="../../assets/logo.png" :alt="item.enterprise.anotherName" :width="40" style="height: 40px;border-radius: 4px;"/>
|
|
|
</div>
|
|
|
<div class="company-info">
|
|
|
- <h3>{{ item.anotherName }}</h3>
|
|
|
+ <h3>{{ item.enterprise.anotherName }}</h3>
|
|
|
<p>{{ item.financingName }}<span class="vline"></span>{{ item.scaleName }}<span class="vline"></span>{{ item.industryName }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -62,7 +62,7 @@ const handleClickPosition = (k) => {
|
|
|
}
|
|
|
// 企业详情
|
|
|
const handleClickEnterprise = (item) => {
|
|
|
- window.open(`/enterprise/details/${item.id}`)
|
|
|
+ window.open(`/enterprise/details/${item.enterprise.id}`)
|
|
|
}
|
|
|
|
|
|
// 查看更多职位
|