拓恒河湖长制全民护河平台WEB端
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.

index.wxml 1.2KB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
12345678910111213141516171819202122232425
  1. <!--package_first/pages/ProtectionSuggestion/ProtectionSuggestion.wxml-->
  2. <view class="suggestion_container">
  3. <view class="main">
  4. <view class="top">
  5. <view>
  6. <image class="text_icon" src="../../../assets/img/tips.png" mode=""/>
  7. </view>
  8. <view class="top_text" >全民护河,全民参与。您的宝贵意见如被采纳,将获得相应积分!</view>
  9. </view>
  10. <view class="bottom">
  11. <view class="suggestion">护河建议</view>
  12. <view class="suggestion_text">
  13. <textarea class="text_content" maxlength="150" bindinput="remarkInputAction" placeholder="请留下您的宝贵意见。" auto-focus="true" value="{{form.content}}" />
  14. </view>
  15. <view class="button" bindtap="submit">
  16. 提交
  17. </view>
  18. </view>
  19. </view>
  20. <view class="submit_suggestion_dialog">
  21. <view class="submit_suggestion_bg" wx:if="{{dialogShow}}"></view>
  22. <image class="submit_suggestion" wx:if="{{dialogShow}}" src="../../../assets/img/submitsuggestion.png" mode=""/>
  23. <view class="close_submit_suggestion" bindtap="colseDialog" wx:if="{{dialogShow}}"></view>
  24. </view>
  25. </view>