wenjuan-duo.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="wenjuan-duo u-flex u-col-top">
  3. <view class="bianhao">
  4. {{index}}、
  5. </view>
  6. <view>
  7. <view class="timu-text">
  8. <text>多选</text>
  9. <text>{{item.quesName}}</text>
  10. </view>
  11. <view class="radio-box">
  12. <u-checkbox-group @change="checkboxGroupChange" :wrap="true">
  13. <view v-for="(val, key) in checklist" :key="key" v-if="item[val.name]">
  14. <u-checkbox v-model="val.check" :name="key">
  15. <text class="item-text">{{item[val.name]}}</text>
  16. </u-checkbox>
  17. </view>
  18. </u-checkbox-group>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. props: {
  26. index: {
  27. type: [Number, String],
  28. default: 0
  29. },
  30. item: {
  31. type: Object,
  32. default () {
  33. return {}
  34. }
  35. }
  36. },
  37. data() {
  38. return {
  39. value: '',
  40. checked: false,
  41. checklist: [{
  42. name: 'answerA',
  43. check: false
  44. }, {
  45. name: 'answerB',
  46. check: false
  47. }, {
  48. name: 'answerC',
  49. check: false
  50. }, {
  51. name: 'answerD',
  52. check: false
  53. }, {
  54. name: 'answerE',
  55. check: false
  56. }, {
  57. name: 'answerF',
  58. check: false
  59. }, {
  60. name: 'answerG',
  61. check: false
  62. }]
  63. }
  64. },
  65. onLoad() {
  66. },
  67. methods: {
  68. checkboxGroupChange(e) {
  69. var arr = []
  70. e.forEach(val => {
  71. arr.push(this.item[this.checklist[val].name])
  72. })
  73. this.$emit('changecheck',arr)
  74. }
  75. }
  76. }
  77. </script>
  78. <style lang="scss">
  79. .wenjuan-duo {
  80. .radio-box {
  81. margin-top: 20rpx;
  82. .item-text {
  83. font-size: 28rpx;
  84. font-family: PingFangSC-Regular, PingFang SC;
  85. font-weight: 400;
  86. color: rgba(0, 0, 0, 0.88);
  87. }
  88. }
  89. .bianhao {
  90. font-size: 28rpx;
  91. font-family: PingFangSC-Medium, PingFang SC;
  92. font-weight: 500;
  93. color: #222222;
  94. line-height: 44rpx;
  95. }
  96. .timu-text {
  97. text:first-child {
  98. display: inline-block;
  99. width: 88rpx;
  100. line-height: 44rpx;
  101. background: #167FFF;
  102. border-radius: 6rpx;
  103. text-align: center;
  104. font-size: 24rpx;
  105. font-family: PingFangSC-Regular, PingFang SC;
  106. font-weight: 400;
  107. color: #FFFFFF;
  108. margin-right: 12rpx;
  109. }
  110. text:last-child {
  111. line-height: 44rpx;
  112. font-size: 28rpx;
  113. font-family: PingFangSC-Medium, PingFang SC;
  114. font-weight: 500;
  115. color: #222222;
  116. }
  117. }
  118. }
  119. </style>