|
|
@@ -185,10 +185,11 @@
|
|
|
<!-- 企业简介 -->
|
|
|
<view class="enterprise">
|
|
|
<!-- 公司介绍卡片 -->
|
|
|
- <view class="company-intro-card">
|
|
|
+ <view class="company-intro-card" @click="goInfo(info.company.companyId)">
|
|
|
<!-- @click="goInfo(info.company.companyId)" -->
|
|
|
<view class="company-avatar">
|
|
|
- <image :src="info.company ? info.company.companyLogo : '../../../static/logo.png'"
|
|
|
+ <image
|
|
|
+ :src="info.company && info.company.companyLogo ? info.company.companyLogo : '../../static/logo.png'"
|
|
|
style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode="aspectFill"></image>
|
|
|
</view>
|
|
|
<view class="company-info">
|
|
|
@@ -215,9 +216,9 @@
|
|
|
size="28"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <map v-if="info && info.lat" style="width: 100%; height: 100%;margin-top: 20rpx;" scale="14" @tap.stop="gotoMap()"
|
|
|
- :latitude="info && info.lat ? info.lat : 0" :longitude="info && info.lng ? info.lng : 0"
|
|
|
- :markers="covers">
|
|
|
+ <map v-if="info && info.lat" style="width: 100%; height: 100%;margin-top: 20rpx;" scale="14"
|
|
|
+ @tap.stop="gotoMap()" :latitude="info && info.lat ? info.lat : 0"
|
|
|
+ :longitude="info && info.lng ? info.lng : 0" :markers="covers">
|
|
|
</map>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -355,6 +356,12 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
+ //跳转企业详情
|
|
|
+ goInfo(companyId) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + companyId
|
|
|
+ })
|
|
|
+ },
|
|
|
//修改岗位
|
|
|
updataServeType(postPushId, type) {
|
|
|
let companyStatus = uni.getStorageSync('companyStatus')
|