You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!--pages/feedback/feedback.wxml-->
|
|
|
|
<view class="bgColor">
|
|
|
|
|
|
|
|
<view class="cardBg">
|
|
|
|
<view style="font-size: 28rpx;">
|
|
|
|
<view style="display: flex;">
|
|
|
|
<text>问题类型</text>
|
|
|
|
<picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}" style="flex: 1;">
|
|
|
|
<text class="why">{{array[index]}}</text>
|
|
|
|
</picker>
|
|
|
|
</view>
|
|
|
|
<textarea class="textarea" placeholder="补充描述,有助于更好的处理问题。" placeholder-class="place"></textarea>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view style="margin-top: 60rpx; font-size: 26rpx;">
|
|
|
|
<view><text style="color: red;">*</text> 上传图片/截图</view>
|
|
|
|
|
|
|
|
<view class="addimg">
|
|
|
|
<block wx:for="{{imageArr}}">
|
|
|
|
<view wx:if="{{item.isBtn}}" bindtap="{{item.func}}">{{item.text}}</view>
|
|
|
|
<view wx:else style="display: flex;">
|
|
|
|
<image src="{{item.text}}"></image>
|
|
|
|
</view>
|
|
|
|
</block>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<button class="btn" bindtap="goMyorder">提 交</button>
|
|
|
|
</view>
|