1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <import src="/pages/template/title/title_tpl.wxml"/>
- <view class="container">
- <view class="public_view task_content">
- <!-- <template is="title_tpl" data="{{...taskContent}}"/> -->
- <view class="task_content_input">
- <view class="textarea">{{info.content}} {{info.note}}</view>
- <!-- <textarea placeholder=""></textarea> -->
- <block wx:if="{{info.voices}}">
- <view class="voicebtnfinish" data-flag="{{flag}}" data-audio="{{info.voices}}" bindtap="playaudio">
- <image class="playimg" src="{{taskContent.img}}"></image>
- <image class="blimg" src="/images/icons/bl.png"></image>
- <view class="second">{{taskContent.second}}</view>
- </view>
- <!-- <image src="{{taskContent.img}}" data-flag="{{flag}}" data-audio="{{info.voices}}" bindtap="playaudio"></image> -->
- </block>
- </view>
- </view>
- <block wx:if="{{info.imgs.length > 0 || info.videos}}">
- <view class="public_view images">
- <!-- <template is="title_tpl" data="{{...image}}"/> -->
- <view class="images_imgs">
- <image wx:if="{{info.videos}}" class="images_img" data-video="{{info.videos}}" bindtap="videotap" src="/images/icons/shipinyishangchuan@2x.png"></image>
- <block wx:for="{{info.imgs}}" wx:key="key">
- <image mode="aspectFill" class="images_img imglists" bindtap="previewImage" data-src="{{item}}" src="{{item}}"></image>
- </block>
- </view>
- <view class="text-tip">(点击可查看图片、视频详情信息)</view>
- </view>
- </block>
- <!-- <block wx:if="{{info.videos}}">
- <view class="public_view images">
- <template is="title_tpl" data="{{...video}}"/>
- <view class="images_imgs">
- <image class="images_img" data-video="{{info.videos}}" bindtap="videotap" src="/images/icons/shipinyishangchuan@2x.png"></image>
- </view>
- </view>
- </block> -->
-
- </view>
- <view wx:if="{{info.note}}" class="task_box">
- <view class="task_content_title">处理意见:</view>
- <view class="textarea">{{info.note}}</view>
- </view>
- <button wx:if="{{info.orderId > 0}}" bindtap="orderDetail" class="user-info">订单详情</button>
|