expresstype.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view class="box">
  3. <view class="exp">
  4. <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
  5. <view class="item u-flex u-row-between" v-for="(item,idx) in radiolist1" v-if="idx<page" :key="idx">
  6. <text>{{item.name}}</text>
  7. <u-radio :name="item.name" @change="radioChange(item)">
  8. </u-radio>
  9. </view>
  10. </u-radio-group>
  11. </view>
  12. <view class="bottom">
  13. <view class="btn" @click="toteach">
  14. {{i18n.enter}}
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. concant: '',
  24. code: '',
  25. radiolist1: [],
  26. page: 20
  27. };
  28. },
  29. computed: {
  30. i18n() {
  31. return this.$t('index')
  32. }
  33. },
  34. onReachBottom() {
  35. if (this.page < this.radiolist1.length) {
  36. this.page += 20
  37. }
  38. },
  39. onLoad() {
  40. if (uni.getStorageSync('radiolist1')) {
  41. console.log(uni.getStorageSync('radiolist1'));
  42. this.radiolist1 = uni.getStorageSync('radiolist1')
  43. }
  44. },
  45. methods: {
  46. load(index) {
  47. console.log(index)
  48. },
  49. toteach() {
  50. const eventChannel = this.getOpenerEventChannel();
  51. eventChannel.emit('todcp', {
  52. 'concant': this.concant,
  53. 'code': this.code
  54. });
  55. uni.navigateBack()
  56. },
  57. groupChange(n) {
  58. console.log('groupChange', n);
  59. },
  60. radioChange(n) {
  61. this.concant = n.name
  62. this.code = n.code
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .box {
  69. padding: 20rpx 24rpx;
  70. box-sizing: border-box;
  71. .bottom {
  72. width: 750rpx;
  73. height: 166rpx;
  74. background: #FFFFFF;
  75. padding: 18rpx 32rpx;
  76. box-sizing: border-box;
  77. position: fixed;
  78. bottom: 0;
  79. left: 0;
  80. .btn {
  81. width: 686rpx;
  82. height: 88rpx;
  83. background: #F83224;
  84. border-radius: 44rpx;
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 500;
  87. font-size: 32rpx;
  88. color: #FFFFFF;
  89. line-height: 88rpx;
  90. text-align: center;
  91. font-style: normal;
  92. }
  93. }
  94. .item {
  95. width: 654rpx;
  96. height: 112rpx;
  97. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  98. }
  99. .exp {
  100. width: 702rpx;
  101. // height: 564rpx;
  102. background: #FFFFFF;
  103. border-radius: 16rpx;
  104. padding: 0 20rpx;
  105. }
  106. }
  107. </style>