123456789101112131415161718192021222324252627282930 |
- <!-- 自定义头部 -->
- <My_navBar />
- <!-- 轮播图 -->
- <My_BannerSwiper swiperBannerList="{{swiperBannerList}}" />
- <!-- 宫格区域 -->
- <view class="grid_box">
- <van-grid border="{{false}}" column-num="4" icon-size='58' 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_Search checked='{{ftype}}' bindshowPop='typePopChange' bindsearchContent='searchContent' />
- <!-- 搜索分类选择 -->
- <van-popup show="{{ typePopShow }}" position='bottom' z-index='9999999999999' bind:close="typePopChange">
- <My_MultipleChoice isAll='{{true}}' pitchOnItem='{{ftype}}' bindoptionChange='typeCallBack' />
- </van-popup>
- <!-- 供需列表 -->
- <My_SupplyAndDemandList list="{{productList}}" bind:shareCallBack='shareCallBack' />
- <!-- 占位 -->
- <view style="height: 90rpx; width: 50rpx;" />
- <!-- 自定义模态框 -->
- <My_showModel isShow='{{MyModelShow}}' bindcallBack='MyShowModelCallBack' content='{{MyModelText}}' cancel='取消' confirm='确定' ifTabBar />
- <!-- 调用tabbar中的信息查询 -->
- <view style="height: 0; width: 0; overflow: hidden;">
- <CusTabBar id="gxshuju" />
- </view>
- <!-- 贴边按钮 -->
- <navigator class="welt" url='#' bindtap="toRelease">
- <image src="/static/flyLetter.png" style="height: 34rpx; margin-right: 10rpx; margin-left: 26rpx;" mode="heightFix" />发布
- </navigator>
|