12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!-- 自定义头部 -->
- <My_navBar></My_navBar>
- <!-- 轮播图 -->
- <My_BannerSwiper swiperBannerList="{{swiperBannerList}}"></My_BannerSwiper>
- <!-- tabs切换栏 -->
- <view class="tabs_box">
- <van-tabs active="{{ active }}" bind:change="tabsChange" 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">
- <view class="grid_item" wx:key="index" wx:for="{{ftypeList}}" data-type="{{item.ftype}}" bindtap="switchScreenType">
- <view class="grid_item_image {{ftype==item.ftype?'grid_item_pitchOn':''}}">
- <!-- <image></image> -->
- </view>
- <view class="grid_item_title">{{item.ftype}}</view>
- </view>
- </view>
- <!-- 列表 -->
- <My_SupplyAndDemandItemBox data-index="{{index}}" bindtap="jumpForDetails" wx:for="{{productList}}" title="【{{item.ftitle}}】{{item.fcontent}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" bindstopOnShow="stopOnShow">
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:{{item.freadtimes}}次 意向沟通人数:{{item.fcommunicationtimes}}次
- </view>
- <view class="dataAndBut_but">
- <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>
- </view>
- </My_SupplyAndDemandItemBox>
- </van-tab>
- <van-tab title="正在对接">
- <view class="abutting-joint-box">
- <view class="abutting-joint-titleAndMsg">
- <view class="abutting-joint-title">各位老板看下有以下面料的联系我,高价收!</view>
- <view class="abutting-joint-msg"><text style="color: #FF0000; opacity: .5;">[23条]</text>李老板:多少钱收?多少钱收?</view>
- </view>
- <view class="abutting-joint-timeAndBut">
- <view class="abutting-joint-time">2021-11-10 14:23:43</view>
- <van-button custom-class="abutting-joint-but"><text class="abutting-joint-but-text">继续沟通</text></van-button>
- </view>
- </view>
- </van-tab>
- <van-tab title="我的需求">
- <!-- 搜索 -->
- <view class="my-need-search">
- <input class="my-need-search-input {{searchFocus?'my-need-search-inputfocus':''}}" confirm-type="search" placeholder="搜索关键字" type="text" bindfocus="needSearchFocus" bindblur="needSearchBlur" />
- <view class="my-need-search-but">
- <van-icon name="search" />
- </view>
- </view>
- <!-- 列表 -->
- <My_SupplyAndDemandItemBox wx:for="{{productList}}" title="【{{item.ftitle}}】{{item.fcontent}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" data-index="{{index}}" bindtap="jumpForDetails">
- <!-- 下架按钮插槽 -->
- <view slot="soldOutBut">
- <van-button data-index="{{index}}" plain color="#4DC2D4" custom-class="soldOutBut" catchtap="soldOut">下架</van-button>
- </view>
- <!-- 内容信息插槽 -->
- <view slot="dataAndBut">
- <view class="dataAndBut">
- <view class="dataAndBut_data">
- 浏览次数:{{item.freadtimes}}<text catchtap="showCommunicationOfNumber">意向沟通人数</text>:{{item.fcommunicationtimes}}次
- </view>
- <view class="dataAndBut_but">
- <van-button color="#4DC2D4" data-index="{{index}}" style="margin-left: 16rpx;" custom-class="custom-slotBut" catchtap="productEdit">编辑</van-button>
- </view>
- </view>
- </view>
- </My_SupplyAndDemandItemBox>
- </van-tab>
- </van-tabs>
- </view>
- <!-- 我的需求弹框 -->
- <van-action-sheet show="{{ ifShowCommunicationOfNumber }}" bind:close="showCommunicationOfNumber">
- <view class="CommunicationOfNumber">
- <view class="CommunicationOfNumber-title">沟通列表</view>
- <view class="CommunicationOfNumber-list">
- <view wx:for="{{5}}">2021-02-13 16:34:45<text>用户:啊9999</text>发起联系,遗憾未达成合作</view>
- </view>
- </view>
- <view style="height: 50px;"></view>
- </van-action-sheet>
- <!-- 右侧吸附按钮 -->
- <My_adsorbRight></My_adsorbRight>
- <!-- 触底展示 -->
- <My_pageReachBottom dummyStatus="{{productList.length>=1}}" loadMore="{{pageTotal<pageNumber}}"></My_pageReachBottom>
- <!-- 安全距离 -->
- <view style="height: 34px;"></view>
|