百富门答题小程序
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.

103 lines
2.7 KiB

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 20vh;">
  4. <span style="font-weight: bold; margin-bottom: 40rpx;">整体体验</span>
  5. <view class="flex-start-col" style="gap: 10rpx;">
  6. <text>请评价服务的整体质量和满足感</text>
  7. <text>包括品鉴过程中的舒适度和整体氛围</text>
  8. </view>
  9. <view class="mt-40">
  10. <uv-radio-group shape="circle" v-model="checkboxValue">
  11. <view style="display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; width: 72vw;">
  12. <uv-radio inactiveColor="#ecb864" activeColor="#ecb864" labelColor="#ecb864" size="30"
  13. labelSize="18px" iconSize="10px" label="不满意" name="不满意"
  14. :customStyle="{margin: '8px'}"></uv-radio>
  15. <uv-radio inactiveColor="#ecb864" activeColor="#ecb864" labelColor="#ecb864" size="30"
  16. labelSize="18px" iconSize="10px" label="一般" name="一般"
  17. :customStyle="{margin: '8px'}"></uv-radio>
  18. <uv-radio inactiveColor="#ecb864" activeColor="#ecb864" labelColor="#ecb864" size="30"
  19. labelSize="18px" iconSize="10px" label="满意" name="满意"
  20. :customStyle="{margin: '8px'}"></uv-radio>
  21. </view>
  22. </uv-radio-group>
  23. </view>
  24. <view class="flex-center mt-20" style="width: 60%; gap: 10rpx;">
  25. <view class="box active"></view>
  26. <view class="box"></view>
  27. <view class="box"></view>
  28. <view class="box"></view>
  29. <view class="box"></view>
  30. </view>
  31. <view class="flex-center" style="margin-top: 20rpx;">
  32. <span class="flex-center" style="font-size: 24rpx; gap: 10rpx;">
  33. <span class="indexs">{{index}}</span>
  34. <span>/</span>
  35. <span>5</span>
  36. </span>
  37. </view>
  38. <view class="flex-col query mt-40" style="gap: 0rpx;">
  39. <view class="flex-center" style="gap: 30rpx;">
  40. <view class="btn2" style="padding: 16rpx 80rpx;" @click="pre">
  41. 上一题
  42. </view>
  43. <view class="btn2" style="padding: 16rpx 80rpx;" @click="next">
  44. 结束
  45. </view>
  46. </view>
  47. <text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. index: 1,
  57. }
  58. },
  59. methods: {
  60. query() {
  61. },
  62. pre() {
  63. uni.navigateBack({
  64. delta: 1
  65. })
  66. },
  67. next() {
  68. uni.redirectTo({
  69. url: '/pages_order/info/startTest'
  70. })
  71. }
  72. }
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. .query {
  77. position: relative;
  78. top: 10vh;
  79. }
  80. .box {
  81. height: 15rpx;
  82. width: 75rpx;
  83. border-radius: 30rpx;
  84. background-color: #fff6e5;
  85. border: 2rpx solid #f6cf8e;
  86. }
  87. .active {
  88. background-color: #f6cf8e;
  89. }
  90. .indexs {
  91. color: #f6cf8e;
  92. }
  93. </style>