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.
42 lines
2.2 KiB
42 lines
2.2 KiB
<!--pages/article/feedback/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">反馈情报</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-list menu no-card sm-border" style="margin-top: 16rpx;">
|
|
<view id="millId" class="cu-item" style="border-bottom: 0rpx solid #ddd" bindtap="showPicker">
|
|
<view class="flex flex-justify content cu-item arrow">
|
|
<view class="text-sg" style="min-width:170rpx">反馈纸厂:</view>
|
|
<view class="flex" style="text-align:left">
|
|
<view class="text-sg {{fatoryName?'text-black':'input-grey'}}">{{fatoryName||'请选择纸厂'}}</view>
|
|
</view>
|
|
</view>
|
|
<text class="cuIcon-right text-gray" style="font-size:32rpx;padding-top:2rpx"></text>
|
|
</view>
|
|
<view class="cu-item" style="border-bottom: 1rpx solid #f3f3f3" bindtap="showPicker">
|
|
<view class="flex flex-justify content cu-item arrow">
|
|
<view class="text-sg" style="min-width:170rpx">反馈类型:</view>
|
|
<view class="flex" style="text-align:left">
|
|
<view class="text-sg {{typeName? 'text-black' :'input-grey'}}">{{typeName || '请选择反馈类型'}}</view>
|
|
</view>
|
|
</view>
|
|
<text class="cuIcon-right text-gray" style="font-size:32rpx;padding-top:2rpx"></text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="margin-top bg-white" style="margin-top: 16rpx;padding: 24rpx 30rpx;border-bottom: 2rpx solid #f3f3f3">
|
|
<view class="text-sg text-gray">反馈内容</view>
|
|
</view>
|
|
<view class="bg-white" style="padding-top:24rpx">
|
|
<view class="textarea {{form.remark?'text-black':'text-gray'}}" wx:if="{{picking}}">{{form.remark?form.remark:'请输入反馈内容,最多200字'}}</view>
|
|
<textarea wx:else id="remark" maxlength="200" value="{{form.remark}}" class="textarea" cursor-spacing="60" style="padding-top:4rpx"
|
|
show-confirm-bar="{{false}}" bindinput="bindInput" placeholder-style="color:#aaa" placeholder="请输入反馈内容,最多200字"></textarea>
|
|
</view>
|
|
|
|
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding: 32rpx 32rpx {{safeBottom + 32}}rpx 32rpx;">
|
|
<view style="width:100%">
|
|
<wux-button block type="positive" bind:click="subFeedBack" disabled="{{requesting}}">提交反馈</wux-button>
|
|
</view>
|
|
</view>
|
|
|
|
<select-view id="picker-view" bindcustomevent="onPickerChange"></select-view>
|