index.wxml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <view class="supplyAndDemandBanner">
  2. <swiper class="swiperBanner" autoplay indicator-dots circular="true" indicator-active-color="#fff">
  3. <swiper-item wx:for="{{swiperBannerList}}" wx:key="index">
  4. <image src="{{item.url}}" mode="aspectFill"></image>
  5. </swiper-item>
  6. </swiper>
  7. </view>
  8. <!-- tabs切换栏 -->
  9. <view class="tabs_box">
  10. <van-tabs active="{{ active }}" custom-class="tabs-custom-class" tab-active-class="tabs-active-class" ellipsis="{{false}}" line-width="30px" color="#4DC2D4" title-active-color="#4DC2D4" swipeable>
  11. <view style="height: 10rpx;"></view>
  12. <van-tab title="所有信息">
  13. <!-- 宫格 -->
  14. <view class="grid_box">
  15. <van-grid border="{{false}}" bindtap="gridJumpPage">
  16. <van-grid-item wx:for="{{gridList}}" data-name="{{item.text}}" icon="{{item.icon}}" text="{{item.text}}" text-class="grid_text-class" />
  17. </van-grid>
  18. </view>
  19. <!-- 列表 -->
  20. <My_SupplyAndDemandItemBox wx:for="{{5}}" title="【窗帘布】各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
  21. <!-- 内容信息插槽 -->
  22. <view slot="dataAndBut">
  23. <view class="dataAndBut">
  24. <view class="dataAndBut_data">
  25. 浏览次数:245次<text>意向沟通人数</text>:134次
  26. </view>
  27. <view class="dataAndBut_but">
  28. <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut">一键联系</van-button>
  29. </view>
  30. </view>
  31. </view>
  32. </My_SupplyAndDemandItemBox>
  33. </van-tab>
  34. <van-tab title="正在对接">
  35. <My_SupplyAndDemandItemBox wx:for="{{5}}" title="各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
  36. <!-- 内容信息插槽 -->
  37. <view slot="dataAndBut">
  38. <view class="dataAndBut">
  39. <view class="dataAndBut_data">
  40. 浏览次数:245次<text>意向沟通人数</text>:134次
  41. </view>
  42. <view class="dataAndBut_but">
  43. <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut butt-joint">正在对接</van-button>
  44. </view>
  45. </view>
  46. </view>
  47. </My_SupplyAndDemandItemBox>
  48. </van-tab>
  49. <van-tab title="我的需求">
  50. <My_SupplyAndDemandItemBox wx:for="{{5}}" title="【窗帘布】各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
  51. <!-- 下架按钮插槽 -->
  52. <view slot="soldOutBut">
  53. <van-button plain color="#4DC2D4" custom-class="soldOutBut">下架</van-button>
  54. </view>
  55. <!-- 内容信息插槽 -->
  56. <view slot="dataAndBut">
  57. <view class="dataAndBut">
  58. <view class="dataAndBut_data">
  59. 浏览次数:245次<text>意向沟通人数</text>:134次
  60. </view>
  61. <view class="dataAndBut_but">
  62. <van-button color="#4DC2D4" custom-class="custom-slotBut">编辑</van-button>
  63. <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut">正在对接</van-button>
  64. </view>
  65. </view>
  66. </view>
  67. </My_SupplyAndDemandItemBox>
  68. </van-tab>
  69. </van-tabs>
  70. </view>
  71. <!-- 右侧吸附按钮 -->
  72. <My_adsorbRight></My_adsorbRight>
  73. <view style="height: 34px;"></view>