wenjuan-tian.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="wenjuan-tian u-flex u-col-top">
  3. <view class="bianhao">
  4. {{index}}、
  5. </view>
  6. <view>
  7. <view class="timu-text">
  8. <text class="text1">填空</text>
  9. <block v-for="(val,key) in textlist" :key="key">
  10. <text class="text2">{{val.text}}</text>
  11. <input class="input" type="text" v-if="val.input" v-model="val.value">
  12. </block>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. index: {
  21. type: [Number, String],
  22. default: 0
  23. },
  24. item: {
  25. type: Object,
  26. default () {
  27. return {}
  28. }
  29. }
  30. },
  31. data() {
  32. return {
  33. value: '',
  34. text: '',
  35. textlist: []
  36. }
  37. },
  38. created() {
  39. this.init()
  40. },
  41. watch:{
  42. textlist:{
  43. handler(e){
  44. this.$emit('changetian',e)
  45. },
  46. deep:true
  47. }
  48. },
  49. methods: {
  50. init() {
  51. this.text = this.item.quesName
  52. var arr = this.text.split("()")
  53. this.textlist = []
  54. arr.forEach((val, key) => {
  55. if (key == arr.length - 1) {
  56. this.textlist.push({
  57. text: val,
  58. })
  59. } else {
  60. this.textlist.push({
  61. text: val,
  62. value: '',
  63. input: true
  64. })
  65. }
  66. })
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="scss">
  72. .wenjuan-tian {
  73. .bianhao {
  74. font-size: 28rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #222222;
  78. line-height: 44rpx;
  79. }
  80. .timu-text {
  81. .input {
  82. width: 90rpx;
  83. height: 44rpx;
  84. line-height: 44rpx;
  85. border-bottom: 2rpx solid #313131;
  86. display: inline-block;
  87. padding: 0 10rpx;
  88. text-align: center;
  89. vertical-align: top;
  90. }
  91. .text1 {
  92. display: inline-block;
  93. width: 88rpx;
  94. line-height: 44rpx;
  95. background: #167FFF;
  96. border-radius: 6rpx;
  97. text-align: center;
  98. font-size: 24rpx;
  99. font-family: PingFangSC-Regular, PingFang SC;
  100. font-weight: 400;
  101. color: #FFFFFF;
  102. margin-right: 12rpx;
  103. }
  104. .text2 {
  105. vertical-align: top;
  106. line-height: 44rpx;
  107. font-size: 28rpx;
  108. font-family: PingFangSC-Medium, PingFang SC;
  109. font-weight: 500;
  110. color: #222222;
  111. }
  112. }
  113. }
  114. </style>