|
@@ -9,7 +9,7 @@
|
|
|
<image :src="companyInfo.logoUrl" mode=""></image>
|
|
|
</view>
|
|
|
<view class="business-details-content-name">{{ companyInfo.companyName }}</view>
|
|
|
- <view class="business-details-content-evaluate">
|
|
|
+ <!-- <view class="business-details-content-evaluate">
|
|
|
<view class="left">
|
|
|
<view class="evaluate">优秀</view>
|
|
|
<view class="describe">综合评分</view>
|
|
@@ -26,7 +26,7 @@
|
|
|
详情
|
|
|
<u-icon class="icon" name="arrow-right" color="#666666"></u-icon>
|
|
|
</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
|
|
|
<!-- 公司概况 -->
|
|
|
<view class="business-details-content-survey">
|
|
@@ -59,18 +59,17 @@
|
|
|
</view>
|
|
|
|
|
|
<!-- 公司相册 -->
|
|
|
- <!-- <view class="business-details-content-album">
|
|
|
+ <view class="business-details-content-album">
|
|
|
<view class="title">公司相册</view>
|
|
|
- <view class="pic-list">
|
|
|
- <view
|
|
|
- class="pic-list-item"
|
|
|
- v-for="(item, index) in picList"
|
|
|
- :key="index"
|
|
|
- >
|
|
|
- <image :src="item.url" mode=""></image>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view> -->
|
|
|
+ <scroll-view scroll-x="true" class="pic" style="width: 100%; overflow:hidden; white-space: nowrap;" v-if="companyInfo.environmentUrlList && companyInfo.environmentUrlList.length > 0">
|
|
|
+ <view class="pic-list">
|
|
|
+ <view class="pic-list-item" v-for="(item, index) in companyInfo.environmentUrlList" :key="index">
|
|
|
+ <u-image :src="item" mode="" height="206" @tap="picClick(index)"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
+ <u-empty v-else text="该公司暂未发布公司相册" mode="data"></u-empty>
|
|
|
+ </view>
|
|
|
|
|
|
<!-- 公司职位 -->
|
|
|
<view class="business-details-content-position">
|
|
@@ -221,6 +220,16 @@
|
|
|
url,
|
|
|
params
|
|
|
})
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 图片预览
|
|
|
+ * @param { Number } index
|
|
|
+ */
|
|
|
+ picClick(index) {
|
|
|
+ uni.previewImage({
|
|
|
+ current: index,
|
|
|
+ urls: this.companyInfo.environmentUrlList
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|