12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <view class="supplyAndDemandBanner">
- <swiper class="swiperBanner" autoplay indicator-dots circular="true" indicator-active-color="#fff">
- <swiper-item wx:for="{{swiperBannerList}}" wx:key="index">
- <image src="{{item.url}}" mode="aspectFill"></image>
- </swiper-item>
- </swiper>
- </view>
- <!-- tabs切换栏 -->
- <view class="tabs_box">
- <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>
- <view style="height: 10rpx;"></view>
- <van-tab title="所有信息">
- <!-- 宫格 -->
- <view class="grid_box">
- <van-grid border="{{false}}" bindtap="gridJumpPage">
- <van-grid-item wx:for="{{gridList}}" data-name="{{item.text}}" icon="{{item.icon}}" text="{{item.text}}" text-class="grid_text-class" />
- </van-grid>
- </view>
- <!-- 列表 -->
- <My_SupplyAndDemandItemBox wx:for="{{5}}" title="【窗帘布】各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:245次<text>意向沟通人数</text>:134次
- </view>
- <view class="dataAndBut_but">
- <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut">一键联系</van-button>
- </view>
- </view>
- </view>
- </My_SupplyAndDemandItemBox>
- </van-tab>
- <van-tab title="正在对接">
- <My_SupplyAndDemandItemBox wx:for="{{5}}" title="各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:245次<text>意向沟通人数</text>:134次
- </view>
- <view class="dataAndBut_but">
- <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut butt-joint">正在对接</van-button>
- </view>
- </view>
- </view>
- </My_SupplyAndDemandItemBox>
- </van-tab>
- <van-tab title="我的需求">
- <My_SupplyAndDemandItemBox wx:for="{{5}}" title="【窗帘布】各位老板看下有以下面料的联系" time="2021-11-10 14:23:43">
- <!-- 下架按钮插槽 -->
- <view slot="soldOutBut">
- <van-button plain color="#4DC2D4" custom-class="soldOutBut">下架</van-button>
- </view>
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:245次<text>意向沟通人数</text>:134次
- </view>
- <view class="dataAndBut_but">
- <van-button color="#4DC2D4" custom-class="custom-slotBut">编辑</van-button>
- <van-button color="#4DC2D4" style="margin-left: 16rpx;" custom-class="custom-slotBut">正在对接</van-button>
- </view>
- </view>
- </view>
- </My_SupplyAndDemandItemBox>
- </van-tab>
- </van-tabs>
- </view>
- <!-- 右侧吸附按钮 -->
- <My_adsorbRight></My_adsorbRight>
- <view style="height: 34px;"></view>
|