zsk 2 years ago
parent 99f2cbc74b
commit 1a9b909d7d

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

@ -28,11 +28,12 @@
<view class="tr">
<view class="jobMoney color-f40">
<!-- {{jobDetail.combiSalary}} -->
{{jobDetail.hourlyPay || '--'}}
<!-- {{jobDetail.hourlyPay || '--'}} -->
{{jobDetail.monthlyPay || '--'}}元/月
</view>
<view class="f14s c633 mt10 color-f40">
<!-- 5200-8400 -->
{{jobDetail.monthlyPay || '--'}}
<!-- {{jobDetail.monthlyPay || '--'}} -->
</view>
</view>
</view>
@ -60,7 +61,7 @@
</view>
<view class="p016 mt12" wx:if="{{images.length > 0}}">
<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>
</view>

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

@ -296,7 +296,7 @@
<view class="flex-1 vsb">
<view class="display-flex">
<view class="storeName">{{item.jobName || item.aliasName}}</view>
<view class="hourPay">{{item.salaryClassifyValue}}</view>
<view class="hourPay">{{item.monthlyPay}}元/月</view>
</view>
<view class="v-center mt12 mb12">
<view class="f14s c045 flex-1 display-flex">

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

Loading…
Cancel
Save