日照项目的居民端小程序
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.1 KiB

<view class="demand-container">
<view class="demand-wr">
<view class="demand-tabs tabs-top">
<view wx:for="{{tabsList}}" wx:key="id" data-id="{{item.id}}"
class="demand-tabs-item {{ current === item.id && 'tabs-on'}}" bind:tap="handleTabs">
{{ item.name }}
</view>
<!-- <view class="demand-tabs-item">我的需求</view> -->
</view>
<swiper class="demand-swiper" current="{{ current }}" bindchange="handleSwiperChange">
<swiper-item>
<wr id="common" status-list="{{commonStatus}}" source="common" />
</swiper-item>
<swiper-item>
<wr id="myDemand" status-list="{{myDemand}}" source="my" />
</swiper-item>
</swiper>
</view>
<movable-area class="movable-area">
<movable-view class="movable-view" y="900rpx" direction="all" bind:tap="handleTo">
<!-- <view class="move-wr"> -->
<image class="move-img" src="../../images/demand/add.png" />
<view class="move-text">我有需求</view>
<!-- </view> -->
</movable-view>
</movable-area>
</view>