You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.3 KiB
28 lines
1.3 KiB
<!--pages/agent/index/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
|
|
<view class="cu-custom bg-white" style="height:{{CustomBar}}px;z-index: 99;">
|
|
<view class="cu-bar fixed {{bgColor}}"
|
|
style="height:{{CustomBar}}px;padding-top:{{StatusBar}}rpx;{{shadow?'box-shadow: none': ''}};{{shadow?'border-bottom: none': ''}}">
|
|
<view class="action" bindtap="backspace">
|
|
<text class="weui_goback"></text>
|
|
</view>
|
|
<view class="flex" style="top:{{StatusBar}}rpx;color:black;font-size:36rpx;width:340rpx;height:80rpx">
|
|
<view data-index="0" class="flex flex-center flex-column" style="flex:1;" catchtap="onTabChangeTop">
|
|
<view class="text-sg text-bold" style="color:{{pageIndex == 0 ? '#008AFF' : '#333'}}">求购</view>
|
|
</view>
|
|
<view data-index="1" class="flex flex-center flex-column" style="flex:1;" catchtap="onTabChangeTop">
|
|
<view class="text-sg text-bold" style="color:{{pageIndex == 1 ? '#008AFF' : '#333'}}">供应</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<swiper current="{{pageIndex}}" duration="300" style="height:{{height}}rpx">
|
|
<swiper-item catchtouchmove="stopTouchMove">
|
|
<focus id="{{TabList[0].value}}" />
|
|
</swiper-item>
|
|
<swiper-item catchtouchmove="stopTouchMove">
|
|
<factory id="{{TabList[1].value}}" />
|
|
</swiper-item>
|
|
</swiper>
|