1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <cu-custom isBack="{{true}}">
- <view slot="backText">返回</view>
- <view slot="content">进行中的任务</view>
- </cu-custom>
- <scroll-view scroll-y class="scrollPage">
- <view class="tark-list" wx:for="{{list}}" wx:key="id" wx:for-index="index">
- <view class="cu-list menu-avatar p20">
- <view class="cu-item">
- <view class="cu-avatar round lg" style="background-image:url(/img/.png);"></view>
- <view class="content flex-sub">
- <view>{{item.title}}</view>
- <view class="text-gray text-sm flex justify-between">
- {{item.company}}
- </view>
- </view>
- </view>
- <!-- 任务详情 -->
- <view class="padding text-grey bg-white h400">
- <view class="text-cut">
- <view class="fl w100">任务编号 : </view>
- <text class="text-blue">{{item.id}}</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">联系人 : </view>
- <text class="text-blue">{{item.contact}}</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">预算金额 : </view>
- <text class="text-blue">¥{{item.budget_fee/100}}元</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">是否交付 : </view>
- <text class="text-blue">{{item.deliver_img?'是':'否'}}
- </text>
- </view>
- <view class="margin-top-sm tc" >
- <button class="cu-btn bg-blue " style="margin-right:30rpx;" wx:if="{{item.deliver_img}}"
- data-src="{{item.deliver_img}}" bindtap="previewImage">凭据预览</button>
- <button class="cu-btn bg-blue" data-index="{{index}}" bindtap="uplodImg">上传凭据</button>
- </view>
- </view>
- </view>
- </view>
- <view class='cu-tabbar-height'></view>
- </scroll-view>
- <view class='cu-load load-modal' wx:if="{{loadModal}}">
- <view class='cuIcon-emojifill text-orange'></view>
- <view class='gray-text'>加载中...</view>
- </view>
|