wenjuan-dan.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="wenjuan-dan 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-radio-group v-model="value" :wrap="true" @change="changeradio">
  13. <view v-for="(val, key) in radiolist" :key="key" v-if="item[val]">
  14. <u-radio :name="item[val]">
  15. <text class="item-text">{{item[val]}}</text>
  16. </u-radio>
  17. </view>
  18. </u-radio-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. radiolist: ['answerA', 'answerB', 'answerC', 'answerD', 'answerE', 'answerF', 'answerG']
  41. }
  42. },
  43. onLoad() {
  44. },
  45. methods: {
  46. changeradio(e){
  47. this.$emit('changeradio',e)
  48. }
  49. }
  50. }
  51. </script>
  52. <style lang="scss">
  53. .wenjuan-dan {
  54. .radio-box {
  55. margin-top: 20rpx;
  56. .item-text {
  57. font-size: 28rpx;
  58. font-family: PingFangSC-Regular, PingFang SC;
  59. font-weight: 400;
  60. color: rgba(0, 0, 0, 0.88);
  61. }
  62. }
  63. .bianhao {
  64. font-size: 28rpx;
  65. font-family: PingFangSC-Medium, PingFang SC;
  66. font-weight: 500;
  67. color: #222222;
  68. line-height: 44rpx;
  69. }
  70. .timu-text {
  71. text:first-child {
  72. display: inline-block;
  73. width: 88rpx;
  74. line-height: 44rpx;
  75. background: #167FFF;
  76. border-radius: 6rpx;
  77. text-align: center;
  78. font-size: 24rpx;
  79. font-family: PingFangSC-Regular, PingFang SC;
  80. font-weight: 400;
  81. color: #FFFFFF;
  82. margin-right: 12rpx;
  83. }
  84. text:last-child {
  85. line-height: 44rpx;
  86. font-size: 28rpx;
  87. font-family: PingFangSC-Medium, PingFang SC;
  88. font-weight: 500;
  89. color: #222222;
  90. }
  91. }
  92. }
  93. </style>