kj-flow.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <view>
  3. <view class="u-flex u-row-between">
  4. <view class="" style="width: 28px;height: 28px;"></view>
  5. <view class="title">跨境物流</view>
  6. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  7. </view>
  8. <view class="u-flex" style="margin-top: 56rpx;">
  9. <scroll-view scroll-y="true" class="left">
  10. <view v-for="(item,idx) in 6" :key="idx" @click="changea(idx)"
  11. style="height: 134rpx;display: flex;flex-direction: column;align-items: center;justify-content: center;"
  12. :style="{background:idx==leftchange? '':'#F7F7F7'}">
  13. <view class="ititle" :style="{fontWeight:idx==leftchange?'600':''}">海运散货</view>
  14. <view class="itime" v-if="idx==leftchange">预计到货时间 </view>
  15. <view class="itime" v-if="idx==leftchange">2023-12-31</view>
  16. </view>
  17. </scroll-view>
  18. <scroll-view scroll-y="true" class="right" style="margin-left: 36rpx;">
  19. <view v-for="(item,idx) in 6" :key="idx" @click="change(idx)"
  20. style="height: 134rpx;display: flex;flex-direction: column;align-items: center;justify-content: center;" class="iitem">
  21. <view class="ititle u-flex u-row-between" style="width: 100%;" >
  22. <view class="ititle">发柜时间 2023-12-15</view>
  23. <view>海运1号柜</view>
  24. </view>
  25. <view class="u-flex u-row-between" style="margin-top: 16rpx;width: 100%;">
  26. <view class="price">
  27. <text style='font-size="24rpx"'>¥</text>
  28. <text style='font-size="32rpx"'>12</text>
  29. <text style='font-size="28rpx"'>kg</text>
  30. </view>
  31. <u-icon v-if="idx==rightchange" name="checkbox-mark" color="rgba(248, 50, 36, 1)" size="28"></u-icon>
  32. <view v-else class="" style="width: 28px;height: 28px;"></view>
  33. </view>
  34. </view>
  35. </scroll-view>
  36. </view>
  37. <view class="bottom">
  38. <view class="btn" @click="enter">{{i18n.enter}}</view>
  39. </view>
  40. <view class=""></view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. name: "kj-flow",
  46. data() {
  47. return {
  48. leftchange:0,
  49. rightchange:0,
  50. };
  51. },
  52. computed: {
  53. i18n() {
  54. return this.$t('index')
  55. }
  56. },
  57. methods:{
  58. //左边切换
  59. changea(index){
  60. this.leftchange = index
  61. console.log(this.leftchange);
  62. },
  63. //右边切换
  64. change(idx){
  65. this.rightchange = idx
  66. },
  67. close(){
  68. this.$emit('close')
  69. },
  70. enter(){
  71. this.$emit('success')
  72. }
  73. }
  74. }
  75. </script>
  76. <style lang="scss" scoped>
  77. .iitem{
  78. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  79. box-sizing: border-box;
  80. }
  81. .price {
  82. font-family: SFPro, SFPro;
  83. font-weight: 500;
  84. font-size: 24rpx;
  85. color: #F83224;
  86. line-height: 28rpx;
  87. text-align: right;
  88. font-style: normal;
  89. }
  90. .right {
  91. flex: 1;
  92. width: 474rpx;
  93. height: 642rpx;
  94. }
  95. .bottom {
  96. width: 750rpx;
  97. height: 166rpx;
  98. background: #FFFFFF;
  99. padding: 20rpx 24rpx;
  100. box-sizing: border-box;
  101. }
  102. .btn {
  103. width: 702rpx;
  104. height: 84rpx;
  105. background: #F83224;
  106. border-radius: 44rpx;
  107. font-family: PingFangSC, PingFang SC;
  108. font-weight: 500;
  109. font-size: 32rpx;
  110. color: #FFFFFF;
  111. line-height: 84rpx;
  112. text-align: center;
  113. font-style: normal;
  114. }
  115. .title {
  116. font-family: PingFangSC, PingFang SC;
  117. font-weight: 500;
  118. font-size: 36rpx;
  119. color: #333333;
  120. line-height: 50rpx;
  121. text-align: left;
  122. font-style: normal;
  123. }
  124. .left {
  125. width: 212rpx;
  126. height: 642rpx;
  127. }
  128. .ititle {
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 500;
  131. font-size: 28rpx;
  132. color: #222222;
  133. line-height: 40rpx;
  134. text-align: right;
  135. font-style: normal;
  136. }
  137. .itime {
  138. font-family: PingFangSC, PingFang SC;
  139. font-weight: 400;
  140. font-size: 20rpx;
  141. color: #333333;
  142. line-height: 28rpx;
  143. text-align: right;
  144. font-style: normal;
  145. }
  146. </style>