zsk 2 years ago
parent 99f2cbc74b
commit 1a9b909d7d

@ -167,7 +167,7 @@ Page({
let resImg = e.currentTarget.dataset.src; let resImg = e.currentTarget.dataset.src;
var imgArr = []; var imgArr = [];
this.data.jobDetail.storeImage.forEach((item) => { this.data.images.forEach((item) => {
// let regs = /\.(jpg|jpeg|png)(\?.*)?$/; // let regs = /\.(jpg|jpeg|png)(\?.*)?$/;
// item.isImg = regs.test(item.url.toLowerCase()); // item.isImg = regs.test(item.url.toLowerCase());
if (item.isImg) { if (item.isImg) {

@ -28,11 +28,12 @@
<view class="tr"> <view class="tr">
<view class="jobMoney color-f40"> <view class="jobMoney color-f40">
<!-- {{jobDetail.combiSalary}} --> <!-- {{jobDetail.combiSalary}} -->
{{jobDetail.hourlyPay || '--'}} <!-- {{jobDetail.hourlyPay || '--'}} -->
{{jobDetail.monthlyPay || '--'}}元/月
</view> </view>
<view class="f14s c633 mt10 color-f40"> <view class="f14s c633 mt10 color-f40">
<!-- 5200-8400 --> <!-- 5200-8400 -->
{{jobDetail.monthlyPay || '--'}} <!-- {{jobDetail.monthlyPay || '--'}} -->
</view> </view>
</view> </view>
</view> </view>
@ -60,7 +61,7 @@
</view> </view>
<view class="p016 mt12" wx:if="{{images.length > 0}}"> <view class="p016 mt12" wx:if="{{images.length > 0}}">
<block wx:for="{{images}}" wx:for-item="item" wx:key="index"> <block wx:for="{{images}}" wx:for-item="item" wx:key="index">
<image src="{{item.url}}" bind:tap="showImage" data-src="{{item.url}}" class="img5" mode=""/> <image src="{{item.url}}" bind:tap="showImage" wx:if="{{item.isImg}}" data-src="{{item.url}}" class="img5" mode=""/>
</block> </block>
</view> </view>

@ -40,7 +40,7 @@ page,
margin-right: 16px; margin-right: 16px;
} }
.jobMoney { .jobMoney {
font-size: 18px; font-size: 16px;
font-weight: 601; font-weight: 601;
line-height: 20px; line-height: 20px;
} }

@ -296,7 +296,7 @@
<view class="flex-1 vsb"> <view class="flex-1 vsb">
<view class="display-flex"> <view class="display-flex">
<view class="storeName">{{item.jobName || item.aliasName}}</view> <view class="storeName">{{item.jobName || item.aliasName}}</view>
<view class="hourPay">{{item.salaryClassifyValue}}</view> <view class="hourPay">{{item.monthlyPay}}元/月</view>
</view> </view>
<view class="v-center mt12 mb12"> <view class="v-center mt12 mb12">
<view class="f14s c045 flex-1 display-flex"> <view class="f14s c045 flex-1 display-flex">
@ -305,7 +305,7 @@
<view class="fl" wx:if="{{item.distance != null && item.distance != '' && storeJobListSearchForm.sortTag == 2}}">{{ item.distanceKm}}</view> <view class="fl" wx:if="{{item.distance != null && item.distance != '' && storeJobListSearchForm.sortTag == 2}}">{{ item.distanceKm}}</view>
<view class="fl" wx:else>{{item.age}}</view> <view class="fl" wx:else>{{item.age}}</view>
</view> </view>
<!--<view class="fr f14s fw400" style="color: var(--color-f40);">{{item.monthlyPay}}</view>--> <!-- <view class="fr f14s fw400" style="color: var(--color-f40);">{{item.monthlyPay}}</view> -->
</view> </view>
</view> </view>
<view class="display-flex"> <view class="display-flex">

@ -375,7 +375,7 @@ height: 746rpx;
} }
.hourPay { .hourPay {
/* f18 c633 lh1 flex-1 tr */ /* f18 c633 lh1 flex-1 tr */
font-size: 18px; font-size: 16px;
line-height: 1; line-height: 1;
flex: 1; flex: 1;
text-align: right; text-align: right;

Loading…
Cancel
Save