You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
3.2 KiB
Plaintext

2 years ago
<view class="container">
2 years ago
<view class='type-box display-flex' wx:if="{{!success}}">
<view wx:for="{{troubleList}}"
class="type-item {{actived == index ? 'type-active' : ''}}" data-item="{{item}}" data-index="{{index}}"
bind:tap="handleUpdatType"
>{{item}}</view>
</view>
2 years ago
<view class="submit" wx:if="{{!success}}" hover-class="none" hover-stop-propagation="false">
<textarea class="bgf textarea br8 f14" value="{{textVal}}" bindinput="getVal" maxlength="150" placeholder="我们想听到您的心声..." placeholder-class="f14 cccc" bindfocus bindconfirm></textarea>
2 years ago
<!-- <view class="" style="margin-top: 16px;">
<image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/dailibaoming/my_uploadphotos.svg"
mode="widthFix"
style="width: 72px;height: 72px;"
bind:tap="handleUpdateImage"
/>
</view>
<view style="margin-top: 8px;font-size: 12px;color: #999999;">
上传照片截图最多传4张选填
2 years ago
</view> -->
<view class="weui-cell__bd1 mt20">
<view class="weui-uploader__bd">
<view class="weui-uploader__files" id="uploaderFiles">
<block wx:for="{{files}}" wx:key="*this">
<view class="weui-uploader__file pr" bindtap="previewImage" id="{{item}}">
<image src="http://matripe.oss-cn-beijing.aliyuncs.com/nezha/del.svg" data-id="{{item.id}}" data-url="{{item.url}}" catchtap="delImgs" class="delImg" style="width:20px;height: 20px;"></image>
<image catchtap="showImgs" mark:url="{{item.url}}" class="weui-uploader__img" src="{{item.url}}" mode="aspectFill" />
</view>
</block>
</view>
2 years ago
<view class="weui-uploader__input-box" wx:if="{{files.length < 4}}" bindtap="chooseMedia">
<image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/dailibaoming/my_uploadphotos.svg"
mode="widthFix"
style="width: 72px;height: 72px;"
/>
<!-- <view class="weui-uploader__input" bindtap="chooseMedia"></view> -->
2 years ago
</view>
</view>
</view>
2 years ago
<view class="clb"></view>
<view style="margin-top: 8px;font-size: 12px;color: #999999;">
上传照片截图最多传4张选填
</view>
2 years ago
<button class="normalBtn loginOut f16" hover-class="thover" bindtap="submit" style="margin-top:90px" loading="{{loading}}">提交</button>
2 years ago
</view>
<view class="success" wx:else hover-class="none" hover-stop-propagation="false">
<view class="tc" style="padding-top: 100px;">
<icon class="iconfont icon-tijiaochenggong lh1" style="color:#07c160;font-size:70px"></icon>
<view class="successText mt20 f22 fw500 lh1">已提交</view>
<view class="f14 c9 mt16" hover-class="none" hover-stop-propagation="false">感谢您的宝贵意见,我们会第一时间处理哈~</view>
2 years ago
<button class="normalBtn loginOut f16" hover-class="thover" bindtap="goback" style="margin-top:50px" loading="{{loading}}">返回</button>
<!-- <view class="tac mt16 f14" style="color:#576B95" bindtap="goList" hover-class="thover" hover-stop-propagation="false">查看记录</view> -->
2 years ago
</view>
</view>
</view>