24 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-02-21 17:43:11 +08:00
<scroll-view scroll-y="true" class="page">
<view style="width:100%;margin:20rpx auto;background:white;padding:4%;box-sizing:border-box;">
<view style="margin-bottom:10rpx;display:flex;">
<view style="width:26%;">问题和建议:</view>
<textarea style="height:200rpx;line-height:20rpx;" bindinput="bindTextAreaBlur"
placeholder="请详细描述您遇到的问题以便我们更好为您解决200字内" value="{{content}}" maxlength='200'></textarea>
</view>
<!-- <view style="text-align:right">
<text>{{cursor}}</text>
<text class="textcolor">/200</text>
</view> -->
<view class="imageContent">
<image wx:for="{{imgUrl}}" wx:key='index' data-index="{{index}}" src="{{item}}" mode='widthFix' class="image"
bindtap="previewImg">
<view style="position:absolute;top:10rpx;right:10rpx;" catchtap="delImg" data-index="{{index}}">
<text class="iconfont iconcha" style="color:white;font-size:26rpx"></text>
</view>
</image>
<image wx:if="{{hideAdd == 0}}" bindtap="chooseimage" src='../../../images/add.png' class='image'></image>
</view>
</view>
<view class="btn" bindtap="apply">立即提交</view>
</scroll-view>