opinion.wxml 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!--为我的-意见反馈页面-->
  2. <view class="con">
  3. <view class="title2">请选择反馈类型</view>
  4. </view>
  5. <view class="subTitle">向开发者反馈</view>
  6. <view class="con">
  7. <view class="buttons">
  8. <view><button class="button dark-primary-color white-text-color" bindtap="switch1">功能异常</button></view>
  9. <view><button class="button dark-primary-color white-text-color" bindtap="switch2">支付问题</button></view>
  10. <view><button class="button dark-primary-color white-text-color" bindtap="switch3">产品建议</button></view>
  11. </view>
  12. </view>
  13. <view class="subTitle">向微信平台投诉</view>
  14. <view class="con">
  15. <view class="buttons">
  16. <view><button class="button dark-primary-color white-text-color" bindtap="switch4">违规举报</button></view>
  17. </view>
  18. </view>
  19. <view wx:if="{{currentTab == 1}}" scroll-y style="height: {{winHeight - 60}}px;">
  20. <view class="con">
  21. <view class="title2">请选择反馈内容</view>
  22. <view class="buttons">
  23. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_1">无法打开小程序</button></view>
  24. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_2">小程序闪退</button></view>
  25. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_3">卡顿</button></view>
  26. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_4">黑屏白屏</button></view>
  27. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_5">死机</button></view>
  28. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_6">界面错位</button></view>
  29. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_7">界面加载慢</button></view>
  30. <view><button class="button dark-primary-color white-text-color" bindtap="switch1_8">其他异常</button></view>
  31. </view>
  32. </view>
  33. </view>
  34. <view wx:if="{{currentTab == 2}}" scroll-y style="height: {{winHeight - 60}}px;">
  35. <view class="con">
  36. <view class="title2">请选择反馈内容</view>
  37. <view class="buttons">
  38. <view><button class="button dark-primary-color white-text-color" bindtap="switch2_1">支付失败</button></view>
  39. <view><button class="button dark-primary-color white-text-color" bindtap="switch2_2">支付成功未生效</button></view>
  40. <view><button class="button dark-primary-color white-text-color" bindtap="switch2_3">退款问题</button></view>
  41. <view><button class="button dark-primary-color white-text-color" bindtap="switch2_4">其他</button></view>
  42. </view>
  43. </view>
  44. </view>
  45. <view wx:if="{{currentTab == 3}}" scroll-y style="height: {{winHeight - 60}}px;">
  46. <view class="block">
  47. <view class="cate">产品建议</view>:
  48. <input class="input block-background-color" placeholder="请填写10个字以上的问题描述以便我们提供更好的帮助" model:value="{{inviteCode}}"/>
  49. </view>
  50. <view class="block2">
  51. <view class="block22"><view class="cate">相关截图(选填)</view>:</view>
  52. <imagePicker images="{{publisherAvatar}}" max="1" image-width="450" image-height="450" bindchange="updatePublishAvatar" />
  53. </view>
  54. <view class="block">
  55. <view class="cate">联系方式</view>:
  56. <input class="input block-background-color" placeholder="邮箱/手机号" model:value="{{publisherContact}}"/>
  57. </view>
  58. <button class="button dark-primary-color white-text-color" bindtap="switchend">提交</button>
  59. </view>
  60. <view wx:if="{{currentTab == 4}}" scroll-y style="height: {{winHeight - 60}}px;">
  61. <view class="con">
  62. <view class="title2">请选择投诉原因</view>
  63. <view class="buttons">
  64. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_1">新冠肺炎疫情相关</button></view>
  65. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_2">se</button></view>
  66. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_3">卡顿</button></view>
  67. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_4">黑屏白屏</button></view>
  68. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_5">死机</button></view>
  69. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_6">界面错位</button></view>
  70. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_7">界面加载慢</button></view>
  71. <view><button class="button dark-primary-color white-text-color" bindtap="switch4_8">其他异常</button></view>
  72. </view>
  73. </view>
  74. </view>
  75. <view wx:if="{{currentTab == end}}" class="con">
  76. <view class="con1 dark-primary-color-font">恭喜您完成填写!</view>
  77. <image class="pic" src="../../images/finish.png" mode="aspectFill"/>
  78. <view class="con2">感谢您的入驻</view>
  79. <button class="button dark-primary-color white-text-color" bindtap="returnToUser">返回</button>
  80. </view>