纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

29 lines
1.5 KiB

<!--pages/message/index.wxml-->
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
<view class="flex item-content" bindtap="lookItem">
<wux-image width="{{100}}" height="{{100}}" lazyLoad="true" src="{{item.coverImgUrl}}" mode="aspectFill">
<image class="image-load" slot="loading" src="/assets/image/def_image.png"></image>
<image class="image-load" slot="error" src="/assets/image/def_image.png"></image>
<image class="image-load" slot="empty" src="/assets/image/def_image.png"></image>
</wux-image>
<view style="flex:1;padding-left:24rpx;height:100px">
<view class="flex" style="height:20px;align-items: center">
<image style="width:40px;height:20px;margin-right:12rpx" src="/assets/image/ico_tag3.png"></image>
<view class="page-name">{{item.firstCategoryName || item.secondCategoryName}}</view>
</view>
<view class="flex page-num" style="margin-top:8rpx">
<view class="text-cut" style="font-size:24rpx;max-width: 240rpx">
{{item.locProvinceName + item.locCityName}}</view>
</view>
<view class="flex" style="margin-top:16rpx;align-items: center">
<text wx:if="{{item.unitPrice}}">
<text class="page-price">¥{{formate.formatePrice2(item.unitPrice, kg)}}</text>
</text>
<text class="page-price" wx:else>价格面议</text>
<!-- <text class="text-gray" style="font-size:24rpx;margin-left:24px">求购日期:{{formate.substring(item.createTime, 0, 10)}}</text> -->
</view>
<view style="height:32px">
<view class="page-outline">{{item.description || ''}}</view>
</view>
</view>
</view>