nextLogistics.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <template>
  2. <view class="list">
  3. <u-popup
  4. :safeAreaInsetTop="false"
  5. :show="nextLogisticsShow"
  6. @close="$emit('closeLogistics')"
  7. mode="bottom"
  8. closeIconPos="top-right"
  9. round="28"
  10. bgColor="#F4F4F4"
  11. >
  12. <view
  13. style="padding: 40rpx 28rpx; box-sizing: border-box; position: relative"
  14. >
  15. <view class="u-flex u-row-between">
  16. <view class="" style="width: 28px; height: 28px"></view>
  17. <view class="poptitle">
  18. {{ i18n.flow }}
  19. </view>
  20. <u-icon
  21. name="close"
  22. @click="$emit('closeLogistics')"
  23. color="background: #333333;"
  24. size="28"
  25. ></u-icon>
  26. </view>
  27. <scroll-view :scroll-y="true" style="500rpx">
  28. <view
  29. class="transport"
  30. style="margin-top: 32rpx"
  31. @click="activea(item, idx)"
  32. v-for="(item, idx) in containerList"
  33. v-if="item.sum != 0"
  34. >
  35. <view class="u-flex u-row-between">
  36. <text class="yundate"
  37. >{{ i18n.Shipmentdate }} {{ item.end_date }}</text
  38. >
  39. <image
  40. v-if="datechan == idx"
  41. src="../../../static/mine/330.png"
  42. style="width: 36rpx; height: 36rpx"
  43. mode=""
  44. ></image>
  45. <image
  46. v-else
  47. src="../../../static/mine/327.png"
  48. style="width: 36rpx; height: 36rpx"
  49. mode=""
  50. ></image>
  51. </view>
  52. <view class="u-flex u-row-between" style="margin-top: 28rpx">
  53. <view class="chest">
  54. <text>{{ item.name_cn }}</text>
  55. <text v-if="language == 'en-US'">{{ item.name_en }}</text>
  56. <text v-if="language == 'es-ES'">{{ item.name_es }}</text>
  57. <text v-if="language == 'it-IT'">{{ item.name_ita }}</text>
  58. <text style="margin: 0 16rpx">|</text>
  59. <text
  60. >{{ i18n.Estimatedtimeofarrival }}{{ item.transport_days
  61. }}{{ i18n.Workingday }}</text
  62. >
  63. </view>
  64. <view class="mone">
  65. <text>¥</text>
  66. <text style="font-size: 48rpx; font-weight: 600">{{
  67. item.sum
  68. }}</text>
  69. </view>
  70. </view>
  71. </view>
  72. </scroll-view>
  73. <view class="" style="height: 166rpx"></view>
  74. <view class="enbottom u-flex u-row-between">
  75. <view class="cancel" @click="$emit('closeLogistics')">{{
  76. i18n.Cancel
  77. }}</view>
  78. <view class="confirm" @click="confirm">{{ i18n.enter }}</view>
  79. </view>
  80. </view>
  81. </u-popup>
  82. </view>
  83. </template>
  84. <script>
  85. export default {
  86. name: "nextLogistics",
  87. props: {
  88. nextLogisticsShow: {
  89. typeof: Boolean,
  90. default: false,
  91. },
  92. language: {
  93. typeof: String,
  94. default: "",
  95. },
  96. goodinfo: {
  97. typeof: Object,
  98. default: () => {
  99. return {};
  100. },
  101. },
  102. },
  103. computed: {
  104. i18n() {
  105. return this.$t("index");
  106. },
  107. },
  108. data() {
  109. return {
  110. containerList: [], //货柜列表
  111. unit_price: "",
  112. recommend_weight: "",
  113. containname: "",
  114. sum: "",
  115. containid: "",
  116. datechan: "", //当前选中的货柜列表下标
  117. };
  118. },
  119. watch: {
  120. //打开窗口,获取货柜
  121. nextLogisticsShow(newVal) {
  122. if (newVal) {
  123. uni.$u.http
  124. .get("/api/container-base", {
  125. params: {
  126. is_page: 0,
  127. province_id: this.goodinfo.province_id,
  128. transport_type_id: this.goodinfo.transport_type_id,
  129. weight: Number(this.goodinfo.weight),
  130. type: "normal",
  131. length: Number(this.goodinfo.length), // 是 String 长
  132. width: this.goodinfo.width, // 是 String 宽
  133. height: this.goodinfo.height, // 是 String 高
  134. cart_id: "",
  135. },
  136. })
  137. .then((res) => {
  138. res.forEach((item) => {
  139. if (item.sum != 0) {
  140. this.containerList.push(item);
  141. }
  142. });
  143. if (this.goodinfo.is_shipping == 0) {
  144. this.sum = 0;
  145. } else {
  146. this.sum = this.containerList[0].sum;
  147. }
  148. if (this.goodinfo.is_shipping == 0) {
  149. this.unit_price = 0;
  150. } else {
  151. this.unit_price = this.containerList[0].unit_price;
  152. }
  153. this.recommend_weight = this.containerList[0].recommend_weight;
  154. this.containid = this.containerList[0].id;
  155. if (this.language == "zh-CN") {
  156. this.containname = this.containerList[0].name_cn;
  157. }
  158. if (this.language == "en-US") {
  159. this.containname = this.containerList[0].name_en;
  160. }
  161. if (this.language == "es-ES") {
  162. this.containname = this.containerList[0].name_es;
  163. }
  164. if (this.language == "it-IT") {
  165. this.containname = this.containerList[0].name_ita;
  166. }
  167. })
  168. .catch(() => {});
  169. }
  170. },
  171. },
  172. methods: {
  173. //运费满减
  174. config() {
  175. var that = this;
  176. uni.$u.http
  177. .get("/api/config", {
  178. params: {
  179. module: "free_shipping",
  180. },
  181. })
  182. .then((res) => {
  183. let goodsum = "";
  184. if (that.goodinfo.is_discount == 1) {
  185. goodsum =
  186. (Number(that.sku_info.price * 100) * Number(that.value * 100)) /
  187. 10000;
  188. console.log("that.sum", that.sum);
  189. console.log("that.goodsum", goodsum);
  190. if (goodsum > res.free_shipping) {
  191. that.sum = 0;
  192. that.unit_price = 0;
  193. }
  194. } else {
  195. goodsum =
  196. (Number(that.sku_info.discount_price * 100) *
  197. Number(that.value * 100)) /
  198. 10000;
  199. if (goodsum > res.free_shipping) {
  200. that.sum = 0;
  201. that.unit_price = 0;
  202. }
  203. }
  204. })
  205. .catch(() => {});
  206. },
  207. //确定选择货柜
  208. confirm() {
  209. this.$emit("closeLogistics");
  210. },
  211. activea(item, idx) {
  212. this.datechan = idx;
  213. this.sum = item.sum;
  214. this.unit_price = item.unit_price;
  215. this.recommend_weight = item.recommend_weight;
  216. this.containid = item.id;
  217. if (this.language == "zh-CN") {
  218. this.containname = item.name_cn;
  219. }
  220. if (this.language == "en-US") {
  221. this.containname = item.name_en;
  222. }
  223. if (this.language == "es-ES") {
  224. this.containname = item.name_es;
  225. }
  226. if (this.language == "it-IT") {
  227. this.containname = item.name_ita;
  228. }
  229. },
  230. },
  231. };
  232. </script>
  233. <style scoped lang="scss">
  234. .poptitle {
  235. width: 142rpx;
  236. height: 50rpx;
  237. font-family: PingFangSC, PingFang SC;
  238. font-weight: 600;
  239. font-size: 36rpx;
  240. color: #333333;
  241. text-align: center;
  242. width: 100%;
  243. }
  244. .transport {
  245. width: 702rpx;
  246. height: 164rpx;
  247. background: #ffffff;
  248. border-radius: 12rpx;
  249. padding: 24rpx 20rpx;
  250. box-sizing: border-box;
  251. }
  252. .yundate {
  253. font-family: PingFangSC, PingFang SC;
  254. font-weight: 550;
  255. font-size: 32rpx;
  256. color: #333333;
  257. line-height: 44rpx;
  258. text-align: left;
  259. font-style: normal;
  260. }
  261. .chest {
  262. font-family: SFPro, SFPro;
  263. font-weight: 400;
  264. font-size: 24rpx;
  265. color: #555555;
  266. line-height: 28rpx;
  267. text-align: left;
  268. font-style: normal;
  269. }
  270. .mone {
  271. font-family: JDZhengHT, JDZhengHT;
  272. font-weight: 400;
  273. font-size: 26rpx;
  274. color: #f83224;
  275. line-height: 32rpx;
  276. text-align: left;
  277. font-style: normal;
  278. }
  279. .enbottom {
  280. width: 750rpx;
  281. height: 166rpx;
  282. background: #ffffff;
  283. position: absolute;
  284. left: 0rpx;
  285. bottom: 0;
  286. padding: 0 24rpx;
  287. box-sizing: border-box;
  288. .confirm {
  289. width: 398rpx;
  290. height: 84rpx;
  291. background: #f83224;
  292. border-radius: 42rpx;
  293. text-align: center;
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 500;
  296. font-size: 32rpx;
  297. color: #ffffff;
  298. line-height: 84rpx;
  299. text-align: center;
  300. font-style: normal;
  301. }
  302. .cancel {
  303. width: 280rpx;
  304. height: 84rpx;
  305. border-radius: 42rpx;
  306. border: 2rpx solid rgba(151, 151, 151, 0.3);
  307. font-family: PingFangSC, PingFang SC;
  308. font-weight: 400;
  309. font-size: 32rpx;
  310. color: #444444;
  311. line-height: 84rpx;
  312. text-align: center;
  313. font-style: normal;
  314. }
  315. }
  316. </style>