sleepEvaluation.wxml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <view class="container">
  2. <!-- 基本信息 -->
  3. <view class='title'>服务满意度调查问卷</view>
  4. <view class="section">
  5. <text style="font-weight:600">指导语:</text>
  6. <text>您好!非常感谢您在百忙之中填写这份问卷。为了更好地了解您的入住体验,并根据您的建议进行持续完善。我们特此开展此次调查。请您根据自己的实际情况如实回答,所有数据将严格保密,仅用于研究分析。本问卷大约需要5-10分钟时间,请您耐心完成。您的意见对于我们而言至关重要。</text>
  7. </view>
  8. <view class='title_1'>一、基本信息</view>
  9. <view class="section">
  10. <text>1.您的年龄:</text>
  11. <radio-group bindchange="bindAgeChange">
  12. <block wx:for="{{ageOptions}}" wx:key="index">
  13. <label><radio value="{{item.value}}">{{item.label}}</radio></label>
  14. </block>
  15. </radio-group>
  16. </view>
  17. <view class="section">
  18. <text>2.您的职业:</text>
  19. <radio-group bindchange="bindCareerChange">
  20. <block wx:for="{{careerOptions}}" wx:key="index">
  21. <label wx:if="{{index<5}}"><radio value="{{item.value}}">{{item.label}}</radio></label>
  22. <label wx:else><radio value="{{item.value}}">{{item.label}}</radio>
  23. <input type="text" placeholder="请填写您的职业" bindinput="bindCareerInputInput" />
  24. </label>
  25. </block>
  26. </radio-group>
  27. </view>
  28. <view class="section_age">
  29. <text>3.您的性别:</text>
  30. <radio-group bindchange="bindGenderChange">
  31. <label><radio value="0">男</radio></label>
  32. <label><radio value="1">女</radio></label>
  33. <label><radio value="2">不愿透露</radio></label>
  34. </radio-group>
  35. </view>
  36. <view class="section">
  37. <text>4、您是通过什么渠道预定到的本酒店睡眠房?</text>
  38. <radio-group bindchange="bindChannelChange">
  39. <label><radio value="0">酒店散客</radio></label>
  40. <label><radio value="1">朋友推荐</radio></label>
  41. <label><radio value="2">第三方平台(如携程、去哪儿网、飞猪、同程等)</radio>
  42. <input class="custom-input" type="text" placeholder="请填写第三方平台" bindinput="bindThirdPlatformsInputInput" />
  43. </label>
  44. </radio-group>
  45. </view>
  46. <view class='title_1'>二、用户体验</view>
  47. <!-- 睡眠环境评价 -->
  48. <view class="section_stayExper">
  49. <text>5、睡眠房的入住体验怎么样?</text>
  50. <radio-group bindchange="bindStayExperOptions">
  51. <block wx:for="{{stayExperOptions}}" wx:key="index">
  52. <label><radio value="{{item.value}}">{{item.label}}</radio></label>
  53. </block>
  54. </radio-group>
  55. </view>
  56. <view class="section">
  57. <text>6、入住之后,您觉得哪些方面让您比较满意?(多选)</text>
  58. <checkbox-group bindchange="bindSatisfied">
  59. <block wx:for="{{satisfiedOptions}}" wx:key="index">
  60. <label><checkbox value="{{item.value}}">{{item.label}}</checkbox></label>
  61. </block>
  62. </checkbox-group>
  63. </view>
  64. <view class="section">
  65. <text>7、让您对本次睡眠房入住体验不满意的原因是?</text>
  66. <radio-group bindchange="bindNoSatisfiedChange">
  67. <block wx:for="{{noSatisfiedOptions}}" wx:key="index">
  68. <label wx:if="{{index<2}}"><radio value="{{item.value}}">{{item.label}}</radio></label>
  69. <label wx:else><radio value="{{item.value}}">{{item.label}}</radio>
  70. <input class="custom-input" type="text" placeholder="请填写体验不满意的原因" bindinput="bindNoSatisfiedInput" />
  71. </label>
  72. </block>
  73. </radio-group>
  74. </view>
  75. <view class="section">
  76. <text>8、您通常采取什么措施来改善睡眠?(多选)</text>
  77. <checkbox-group bindchange="bindImprovementSleep">
  78. <block wx:for="{{improvementSleepOptions}}" wx:key="index">
  79. <label><checkbox value="{{item.value}}">{{item.label}}</checkbox></label>
  80. </block>
  81. </checkbox-group>
  82. </view>
  83. <view class="section">
  84. <text>9、您倾向于下面哪些方式来帮助改善睡眠?</text>
  85. <radio-group bindchange="bindWayImprovementSleep">
  86. <block wx:for="{{wayImprovementSleepOptions}}" wx:key="index">
  87. <label wx:if="{{index<4}}"><radio value="{{item.value}}">{{item.label}}</radio></label>
  88. <label wx:else><radio value="{{item.value}}">{{item.label}}</radio>
  89. <input class="custom-input" type="text" placeholder="请填写帮助改善睡眠方式" bindinput="bindWayImprovementSleepInput" />
  90. </label>
  91. </block>
  92. </radio-group>
  93. </view>
  94. <view class="section">
  95. <text>10、您通常从哪里获取关于睡眠健康的信息?(多选)</text>
  96. <checkbox-group bindchange="bindGetSleepHealth">
  97. <block wx:for="{{getSleepHealthOptions}}" wx:key="index">
  98. <label wx:if="{{index<5}}"><checkbox value="{{item.value}}">{{item.label}}</checkbox></label>
  99. <label wx:else><checkbox value="{{item.value}}">{{item.label}}</checkbox>
  100. <input class="custom-input" type="text" placeholder="请填写从哪里获取关于睡眠健康的信息" bindinput="bindGetSleepHealthInput" />
  101. </label>
  102. </block>
  103. </checkbox-group>
  104. </view>
  105. <view class='title_1'>三、影响睡眠的因素</view>
  106. <view class="section">
  107. <text>11、您认为以下哪些因素会影响您的睡眠?(多选)</text>
  108. <checkbox-group bindchange="bindInfluenceSleep">
  109. <block wx:for="{{influenceSleepOptions}}" wx:key="index">
  110. <label wx:if="{{index<6}}"><checkbox value="{{item.value}}">{{item.label}}</checkbox></label>
  111. <label wx:else><checkbox value="{{item.value}}">{{item.label}}</checkbox>
  112. <input class="custom-input" type="text" placeholder="请填写影响您的睡眠因素" bindinput="bindInfluenceSleepInput" />
  113. </label>
  114. </block>
  115. </checkbox-group>
  116. </view>
  117. <view class="section">
  118. <text>12、您通常使用什么方法来改善睡眠质量?(多选)</text>
  119. <checkbox-group bindchange="bindImprovSleepMethods">
  120. <block wx:for="{{improvSleepMethodsOptions}}" wx:key="index">
  121. <label wx:if="{{index<4}}"><checkbox value="{{item.value}}">{{item.label}}</checkbox></label>
  122. <label wx:else><checkbox value="{{item.value}}">{{item.label}}</checkbox>
  123. <input class="custom-input" type="text" placeholder="请填写改善睡眠质量方法" bindinput="bindImprovSleepMethodsInput" />
  124. </label>
  125. </block>
  126. </checkbox-group>
  127. </view>
  128. <view class='title_1'>四、其他意见和建议</view>
  129. <!-- 文本输入问题示例 -->
  130. <view class="section">
  131. <text>13. 关于本次睡眠房的入住体验,您最希望哪些方面可以进行改善优化</text>
  132. <textarea class="full-width-textarea" type="text" placeholder="请填写您的建议" bindinput="bindSuggestionInput" />
  133. </view>
  134. <!-- 提交按钮 -->
  135. <button style="margin-top:30rpx;" bindtap="submitSurvey">提交问卷</button>
  136. <view class="section">
  137. <text style="font-weight:600">感谢您的参与和支持!</text>
  138. <text>通过这份问卷,我们可以更好地了解受访者的睡眠状况及其影响因素,从而为他们提供更有效的改善建议。希望您能如实填写,以便我们为您提供更好的服务。</text>
  139. </view>
  140. </view>