1234567891011121314151617181920212223 |
- <!--pages/mysuggest/mysuggest.wxml-->
- <import src="../../module/header.wxml"/>
- <scroll-view
- class="conent"
- style="height:{{windowh}}rpx;"
- scroll-y="{{selectbar==''?'true':'false'}}"
- bindscrolltolower="{{hasloadall?'':'getMyBuy'}}"
- >
- <template
- is="header"
- data="{{title:'意见反馈',headerheight:headerheight,hasback:true}}"
- />
- <view class="mysuggest_c">
- <textarea
- class="mysuggest_area"
- placeholder="你的满意是我们前进的动力"
- placeholder-style="color:rgba(183, 183, 183, 1)"
- maxlength="400"
- bindinput="getSuggestValue"
- name="textarea"/>
- <view bindtap="subSuggest" class="mysuggest_bt">提交反馈</view>
- </view>
- </scroll-view>
|