selectLogistics.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <template>
  2. <view class="list">
  3. <u-popup
  4. :show="logisticsShow"
  5. @close="$emit('closeLogistics')"
  6. mode="bottom"
  7. closeIconPos="top-right"
  8. round="28"
  9. >
  10. <view style="padding: 40rpx 28rpx; box-sizing: border-box">
  11. <view class="u-flex u-row-between">
  12. <view class="" style="width: 28px; height: 28px"></view>
  13. <view class="poptitle">
  14. {{ i18n.flow }}
  15. </view>
  16. <u-icon
  17. name="close"
  18. @click="$emit('closeLogistics')"
  19. color="background: #333333;"
  20. size="28"
  21. ></u-icon>
  22. </view>
  23. <view
  24. class="u-flex"
  25. style="margin-top: 60rpx; flex-wrap: wrap; column-gap: 16rpx"
  26. >
  27. <view
  28. :class="selectedIndex == idx ? 'active' : 'unactive'"
  29. v-for="(item, idx) in containerList"
  30. :key="idx"
  31. @click="change(item, idx)"
  32. style="
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. margin-bottom: 28rpx;
  38. position: relative;
  39. "
  40. >
  41. <image
  42. v-if="selectedIndex == idx"
  43. src="static/images/change.png"
  44. style="
  45. width: 36rpx;
  46. height: 32rpx;
  47. position: absolute;
  48. top: 0;
  49. right: 0;
  50. "
  51. mode=""
  52. ></image>
  53. <!-- v-if="language == 'zh-CN'" -->
  54. <view class="logname">{{ item.name_cn }}</view>
  55. <view class="logname" v-if="language == 'en-US'">{{
  56. item.name_en
  57. }}</view>
  58. <view class="logname" v-if="language == 'es-ES'">{{
  59. item.name_es
  60. }}</view>
  61. <view class="logname" v-if="language == 'it-IT'">{{
  62. item.name_ita
  63. }}</view>
  64. <!-- <view class="wei">¥{{goodinfo.cate==0?item.normal_delivery_fee:item.special_delivery_fee}}/kg</view> -->
  65. <view class="wei" style="font-size: 32rpx; font-weight: 600"
  66. >¥{{ item.unit_price }}/kg</view
  67. >
  68. </view>
  69. </view>
  70. <view class="nextto" @click="next">{{ i18n.next }}</view>
  71. </view>
  72. </u-popup>
  73. </view>
  74. </template>
  75. <script>
  76. export default {
  77. props: {
  78. logisticsShow: {
  79. typeof: Boolean,
  80. default: false,
  81. },
  82. containerList: {
  83. typeof: Array,
  84. default: () => {
  85. return [];
  86. },
  87. },
  88. language: {
  89. typeof: String,
  90. default: "",
  91. },
  92. },
  93. computed: {
  94. i18n() {
  95. return this.$t("index");
  96. },
  97. },
  98. data() {
  99. return {
  100. selectedIndex: 0, //选中的价格下标
  101. transport_type_id: "", //选中的物流id
  102. transportTypeName: "", //运输方式名称
  103. };
  104. },
  105. methods: {
  106. next() {
  107. console.log(this.transportTypeName);
  108. return;
  109. this.$emit("openContainer");
  110. },
  111. change(item, index) {
  112. this.transport_type_id = item.id;
  113. this.selectedIndex = index;
  114. this.transportTypeName = item.name_cn; //等待后续更改language删除掉
  115. if (this.language == "zh-CN") {
  116. this.transportTypeName = item.name_cn;
  117. }
  118. if (this.language == "en-US") {
  119. this.transportTypeName = item.name_en;
  120. }
  121. if (this.language == "es-ES") {
  122. this.transportTypeName = item.name_es;
  123. }
  124. if (this.language == "it-IT") {
  125. this.transportTypeName = item.name_ita;
  126. }
  127. },
  128. },
  129. };
  130. </script>
  131. <style scoped lang="scss">
  132. .poptitle {
  133. width: 142rpx;
  134. height: 50rpx;
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 600;
  137. font-size: 36rpx;
  138. color: #333333;
  139. text-align: center;
  140. width: 100%;
  141. }
  142. .logname {
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 400;
  145. font-size: 28rpx;
  146. color: #333333;
  147. line-height: 40rpx;
  148. text-align: right;
  149. font-style: normal;
  150. overflow: hidden;
  151. width: 220rpx;
  152. white-space: nowrap;
  153. text-overflow: ellipsis;
  154. text-align: center;
  155. word-break: break-all;
  156. }
  157. .active {
  158. width: 218rpx;
  159. height: 148rpx;
  160. background: rgba(247, 50, 36, 0.05);
  161. border-radius: 8rpx;
  162. border: 1rpx solid #f83224;
  163. }
  164. .unactive {
  165. width: 218rpx;
  166. height: 148rpx;
  167. border-radius: 12rpx;
  168. border: 1rpx solid #c3c3c3;
  169. }
  170. .nextto {
  171. width: 702rpx;
  172. height: 84rpx;
  173. background: #f83224;
  174. border-radius: 44rpx;
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 500;
  177. font-size: 32rpx;
  178. color: #ffffff;
  179. line-height: 84rpx;
  180. text-align: center;
  181. font-style: normal;
  182. margin-top: 108rpx;
  183. }
  184. </style>