expresstype.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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" :key="idx">
  6. <text>{{item.name}}</text>
  7. <u-radio :name="item.name" @change="radioChange">
  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. radiolist1: [{
  25. name: '顺丰标快',
  26. disabled: false
  27. },
  28. {
  29. name: '中通快递',
  30. disabled: false
  31. },
  32. {
  33. name: '韵达快递',
  34. disabled: false
  35. }, {
  36. name: '圆通快递',
  37. disabled: false
  38. }
  39. ],
  40. };
  41. },
  42. computed: {
  43. i18n() {
  44. return this.$t('index')
  45. }
  46. },
  47. methods: {
  48. toteach() {
  49. const eventChannel = this.getOpenerEventChannel();
  50. eventChannel.emit('todcp', this.concant);
  51. uni.navigateBack()
  52. },
  53. groupChange(n) {
  54. console.log('groupChange', n);
  55. },
  56. radioChange(n) {
  57. console.log('radioChange', n);
  58. this.concant = n
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. .box {
  65. padding: 20rpx 24rpx;
  66. box-sizing: border-box;
  67. .bottom {
  68. width: 750rpx;
  69. height: 166rpx;
  70. background: #FFFFFF;
  71. padding: 18rpx 32rpx;
  72. box-sizing: border-box;
  73. position: fixed;
  74. bottom: 0;
  75. left: 0;
  76. .btn {
  77. width: 686rpx;
  78. height: 88rpx;
  79. background: #F83224;
  80. border-radius: 44rpx;
  81. font-family: PingFangSC, PingFang SC;
  82. font-weight: 500;
  83. font-size: 32rpx;
  84. color: #FFFFFF;
  85. line-height: 88rpx;
  86. text-align: center;
  87. font-style: normal;
  88. }
  89. }
  90. .item {
  91. width: 654rpx;
  92. height: 112rpx;
  93. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  94. }
  95. .exp {
  96. width: 702rpx;
  97. // height: 564rpx;
  98. background: #FFFFFF;
  99. border-radius: 16rpx;
  100. padding: 0 20rpx;
  101. }
  102. }
  103. </style>