12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <view class="box">
- <!-- 供需标题和用户信息 -->
- <view class="title-and-usercenter">
- <view class="title-and-userMessage">
- <view class="header-title">【{{particulars.ftype}}】{{particulars.ftitle}}</view>
- <view class="header-userMessage">
- <view class="header-userMessage-img">
- <image wx:if="{{particulars.headportraiturl}}" src="{{particulars.headportraiturl}}" mode="aspectFit"></image>
- <image wx:else src="/static/tacitly-approve/MRuserImg.png" mode="aspectFit"></image>
- </view>
- <view class="header-userMessage-textMsg">{{particulars.createby}} {{particulars.checkdate}}</view>
- </view>
- <view class="but-box">
- <van-button wx:if="{{particulars.fstatus == '待对接'}}" color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut details-custom-slotBut">一键联系</van-button>
- <van-button wx:else color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-NoSlotBut details-custom-slotBut">{{particulars.fstatus}}</van-button>
- </view>
- </view>
- </view>
- <scroll-view scroll-y style="flex: 1; height: 1px;">
- <!-- 产品详情 -->
- <view class="header-box">
- <view style="overflow-wrap: break-word;">{{particulars.fcontent}}</view>
- <view class="detailed-description">
- <image wx:for="{{particulars.attinfos}}" src="{{item.fobsurl}}" mode="widthFix" catchtap="previewImage"></image>
- </view>
- </view>
- <!-- 更多推荐 -->
- <My_CenterTheTitle title='其他推荐'></My_CenterTheTitle>
- <!-- 列表 -->
- <My_SupplyAndDemandItemBox wx:for="{{recommendationList}}" title="[{{item.ftype}}]{{item.ftitle}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" data-index="{{index}}" type='{{item.ftype}}' content="{{item.fcontent}}" bindtap="jumpForDetails">
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:{{item.freadtimes}}次 意向沟通人数:{{item.fcommunicationtimes}}次
- </view>
- <van-button wx:if="{{item.fstatus == '待对接'}}" color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut" catchtap="contact">一键联系</van-button>
- <van-button wx:else color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-NoSlotBut" catchtap="stop">{{item.fstatus}}</van-button>
- </view>
- </view>
- </My_SupplyAndDemandItemBox>
- </scroll-view>
- </view>
|