details.wxml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <view class="box">
  2. <!-- 供需标题和用户信息 -->
  3. <view class="title-and-usercenter">
  4. <view class="title-and-userMessage">
  5. <view class="header-title">【{{particulars.ftype}}】{{particulars.ftitle}}</view>
  6. <view class="header-userMessage">
  7. <view class="header-userMessage-img">
  8. <image wx:if="{{particulars.headportraiturl}}" src="{{particulars.headportraiturl}}" mode="aspectFit"></image>
  9. <image wx:else src="/static/tacitly-approve/MRuserImg.png" mode="aspectFit"></image>
  10. </view>
  11. <view class="header-userMessage-textMsg">{{particulars.createby}} {{particulars.checkdate}}</view>
  12. </view>
  13. <view class="but-box">
  14. <van-button wx:if="{{particulars.fstatus == '待对接'}}" color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut details-custom-slotBut">一键联系</van-button>
  15. <van-button wx:else color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-NoSlotBut details-custom-slotBut">{{particulars.fstatus}}</van-button>
  16. </view>
  17. </view>
  18. </view>
  19. <scroll-view scroll-y style="flex: 1; height: 1px;">
  20. <!-- 产品详情 -->
  21. <view class="header-box">
  22. <view style="overflow-wrap: break-word;">{{particulars.fcontent}}</view>
  23. <view class="detailed-description">
  24. <image wx:for="{{particulars.attinfos}}" src="{{item.fobsurl}}" mode="widthFix" catchtap="previewImage"></image>
  25. </view>
  26. </view>
  27. <!-- 更多推荐 -->
  28. <My_CenterTheTitle title='其他推荐'></My_CenterTheTitle>
  29. <!-- 列表 -->
  30. <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">
  31. <!-- 内容信息插槽 -->
  32. <view slot="dataAndBut">
  33. <view class="dataAndBut">
  34. <view class="dataAndBut_data">
  35. 浏览次数:{{item.freadtimes}}次 意向沟通人数:{{item.fcommunicationtimes}}次
  36. </view>
  37. <van-button wx:if="{{item.fstatus == '待对接'}}" color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut" catchtap="contact">一键联系</van-button>
  38. <van-button wx:else color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-NoSlotBut" catchtap="stop">{{item.fstatus}}</van-button>
  39. </view>
  40. </view>
  41. </My_SupplyAndDemandItemBox>
  42. </scroll-view>
  43. </view>