纸通宝小程序
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.
 

41 lines
1.2 KiB

<!--pages/article/feedback/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">反馈情报</view>
</cu-custom>
<view class="zt">
<view class="view1">
<view class="cu-form-group margin-top">
<view class="title">反馈纸厂</view>
<picker bindchange="PickerChange" value="{{fatoryNameIndex}}" range="{{fatoryNameList}}">
<view class="picker">
{{fatoryNameIndex?fatoryNameList[fatoryNameIndex]:'请选择纸厂'}}
</view>
</picker>
</view>
</view>
<view class="view2">
<view class="cu-form-group margin-top">
<view class="title">反馈类型</view>
<picker bindchange="typeChange" value="{{typeIndex}}" range="{{typeList}}">
<view class="picker">
{{typeIndex?typeList[typeIndex]:'请选择反馈类型'}}
</view>
</picker>
</view>
</view>
<view class="view3">
<view class="cu-form-group margin-top">
<view class="title">反馈内容</view>
</view>
<view style="padding-left:32rpx;padding-right:32rpx">
<view class="textareaView">
<textarea class="textarea" value='{{postForm.content}}' bindinput='textareaBindblur'></textarea>
</view>
</view>
</view>
<view class="view4" bindtap="subFeedBack">
<view class="sbtn">提交反馈</view>
</view>
</view>