86 lines
2.7 KiB
Plaintext
86 lines
2.7 KiB
Plaintext
<!--pages/jiedan/jiedan.wxml-->
|
|
<view class="box">
|
|
<!-- 轮播图 -->
|
|
<view class="swiper">
|
|
<swiper autoplay="true">
|
|
<swiper-item wx:for="{{picture}}" wx:key="image">
|
|
<image class="imagesize" src="{{item.image}}" mode="aspectFill"/>
|
|
</swiper-item>
|
|
</swiper>
|
|
<view class="text-overlay">
|
|
<text>校园接单 实现财富自由</text>
|
|
</view>
|
|
</view>
|
|
<!-- 下半部分 -->
|
|
<view class="xiabox">
|
|
<!-- 搜索框部分 -->
|
|
<view class="sousuo tongyong">
|
|
<view class="hhhh">
|
|
<view class="inputkuang tongyong">
|
|
<view class="souimage tongyong">
|
|
<image class="sousuosize" src="/image/sousuo.png" mode="aspectFill"/>
|
|
</view>
|
|
<view class="inputk tongyong" >
|
|
<input bindinput="bindKeyInput" placeholder="请输入内容"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 筛选 -->
|
|
<view class="sidebox tongyong" bind:tap="change">
|
|
<view class="saixuan tongyong">
|
|
<image class="imageshai" src="/image/shaiixuan.png" mode="aspectFill"/>
|
|
<text>筛选</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 推广部分 -->
|
|
<view class="messagebox">
|
|
<view class="kuang" wx:for="{{message}}">
|
|
<view class="touxianmg tongyong">
|
|
<image class="touxiangimage" src="https://pic4.zhimg.com/v2-f10ac7fc477596faf538ca274852c68f_b.jpg" mode="aspectFill"/>
|
|
</view>
|
|
<view class="messagesize">
|
|
<text class="text" style="font-size: 15px;color: #FC7E09;">{{item.title}}</text>
|
|
<text class="text" style="font-size: 12px;color: rgb(161, 154, 154);">容易度:{{item.level}}</text>
|
|
<text class="text" style="font-size: 12px;color: rgb(161, 154, 154);" >{{item.person}}</text>
|
|
</view>
|
|
<view class="moneybox">
|
|
<view style="width: 100%;height: 50%;" class="tongyong">
|
|
<text style="color: #FC7E09;font-size: 14px;">佣金:{{item.money}}积分</text>
|
|
</view>
|
|
<view style="width: 100%;height: 50%;" class="weizhi">
|
|
<view class="jiedan tongyong">
|
|
<text>接单</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 侧边栏 -->
|
|
<view class="cebianlan" wx:if="{{show}}">
|
|
<view class="zuo" bind:tap="change">
|
|
|
|
</view>
|
|
<view class="you">
|
|
<view class="wenzi">
|
|
<view class="chengsehezi">
|
|
<view class="chengse">
|
|
</view>
|
|
<view class="wenzicheng">
|
|
<text style="margin-left: 20rpx;font-size: 18px;font-weight: bolder;">任务分类</text>
|
|
</view>
|
|
</view>
|
|
<view class="xuazhongbox">
|
|
<view class="he {{index === selectedIndex ? 'active' : ''}}" wx:for="{{lie}}" wx:key="index" data-index="{{index}}" bind:tap="onSelect" >
|
|
<text style="font-size: 13px;">{{item.name}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |