expresstype.vue 2.8 KB

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