mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 00:49:37 +08:00
24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
<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> |