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.
40 lines
1.4 KiB
40 lines
1.4 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" style="border-bottom: none;">
|
|
<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" style="border-bottom: none;">
|
|
<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" placeholder="请输入反馈内容,最多200字" value='{{postForm.content}}' style="padding:16rpx" bindinput='textareaBindblur'></textarea>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="view4" bindtap="subFeedBack">
|
|
<view class="sbtn">提交反馈</view>
|
|
</view>
|
|
|
|
</view>
|