nextLogistics.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. goodsValue: {
  103. typeof: Number,
  104. default: 0,
  105. },
  106. //商品规格价格
  107. specificationsPrice: {
  108. typeof: String,
  109. default: "",
  110. },
  111. //多商品
  112. goodsArr: {
  113. typeof: Object,
  114. default: () => {
  115. return {};
  116. },
  117. },
  118. },
  119. computed: {
  120. i18n() {
  121. return this.$t("index");
  122. },
  123. },
  124. data() {
  125. return {
  126. containerList: [], //货柜列表
  127. unit_price: "",
  128. recommend_weight: "",
  129. containname: "",
  130. sum: "", //运费
  131. containid: "", //货柜id
  132. datechan: "", //当前选中的货柜列表下标
  133. max_weight: "", //推荐重量。当满足当前重量,减少价格
  134. min_weight: "",
  135. unit_fee: "", //满减价格
  136. unchangedFreight: "", //基础运费,不会变
  137. unchangedUnit_price: "",
  138. goodsWeight: 0,
  139. };
  140. },
  141. watch: {
  142. //打开窗口,获取货柜
  143. nextLogisticsShow(newVal) {
  144. if (newVal) {
  145. uni.$u.http
  146. .get("/api/container-base", {
  147. params: {
  148. is_page: 0,
  149. province_id: this.goodinfo.province_id,
  150. transport_type_id: this.goodinfo.transport_type_id,
  151. weight: Number(this.goodinfo.weight),
  152. length: Number(this.goodinfo.length), // 是 String 长
  153. width: this.goodinfo.width, // 是 String 宽
  154. height: this.goodinfo.height, // 是 String 高
  155. cart_id: "",
  156. goods_arr: JSON.stringify(this.goodsArr),
  157. },
  158. })
  159. .then((res) => {
  160. res.forEach((item) => {
  161. if (item.sum != 0) {
  162. this.containerList.push(item);
  163. }
  164. });
  165. if (this.goodinfo.is_shipping == 0) {
  166. this.sum = 0;
  167. this.unchangedFreight = 0;
  168. } else {
  169. this.sum = this.containerList[0].sum;
  170. this.unchangedFreight = this.containerList[0].sum;
  171. }
  172. this.unit_price = this.containerList[0].unit_price;
  173. this.unchangedUnit_price = this.containerList[0].unit_price;
  174. this.recommend_weight = this.containerList[0].recommend_weight;
  175. this.containid = this.containerList[0].id;
  176. this.goodsWeight = this.containerList[0].weight_total;
  177. console.log(this.language);
  178. if (this.language == "zh-CN") {
  179. this.containname = this.containerList[0].name_cn;
  180. }
  181. if (this.language == "en-US") {
  182. this.containname = this.containerList[0].name_en;
  183. }
  184. if (this.language == "es-ES") {
  185. this.containname = this.containerList[0].name_es;
  186. }
  187. if (this.language == "it-IT") {
  188. this.containname = this.containerList[0].name_ita;
  189. }
  190. })
  191. .catch(() => {});
  192. }
  193. },
  194. },
  195. methods: {
  196. //运费满减
  197. async config() {
  198. var that = this;
  199. await uni.$u.http
  200. .get("/api/config", {
  201. params: {
  202. module: "free_shipping",
  203. },
  204. })
  205. .then((res) => {
  206. let goodsum = "";
  207. goodsum = Number(that.specificationsPrice);
  208. if (goodsum > res.free_shipping) {
  209. that.sum = 0;
  210. that.unit_price = 0;
  211. } else {
  212. this.sum = this.unchangedFreight;
  213. this.unit_price = this.unchangedUnit_price;
  214. }
  215. })
  216. .catch(() => {});
  217. },
  218. //推荐重量
  219. async recommendweight() {
  220. await uni.$u.http
  221. .get("/api/express-order/recommend-container", {
  222. params: {
  223. container_id: this.containid,
  224. type: "normal",
  225. },
  226. })
  227. .then((res) => {
  228. this.max_weight = res.max_weight;
  229. this.min_weight = res.min_weight;
  230. this.unit_fee = res.unit_fee;
  231. })
  232. .catch(() => {});
  233. },
  234. //确定选择货柜
  235. confirm() {
  236. this.recommendweight();
  237. this.config();
  238. //异步跳转
  239. const timer = setTimeout(() => {
  240. let data = {
  241. type: "second",
  242. containname: this.containname,
  243. containid: this.containid,
  244. recommend_weight: this.recommend_weight,
  245. unit_price: this.unit_price,
  246. sum: this.sum,
  247. max_weight: this.max_weight,
  248. min_weight: this.min_weight,
  249. unit_fee: this.unit_fee,
  250. unchangedFreight: this.unchangedFreight,
  251. unchangedUnit_price: this.unchangedUnit_price,
  252. goodsWeight: this.goodsWeight,
  253. };
  254. console.log(data);
  255. this.$emit("closeLogistics", data);
  256. clearTimeout(timer);
  257. }, 200);
  258. },
  259. activea(item, idx) {
  260. this.datechan = idx;
  261. this.sum = item.sum;
  262. this.unchangedFreight = item.sum;
  263. this.unit_price = item.unit_price;
  264. this.recommend_weight = item.recommend_weight;
  265. this.containid = item.id;
  266. this.containname = item.name_cn; //等待后续更改language删除掉
  267. if (this.language == "zh-CN") {
  268. this.containname = item.name_cn;
  269. }
  270. if (this.language == "en-US") {
  271. this.containname = item.name_en;
  272. }
  273. if (this.language == "es-ES") {
  274. this.containname = item.name_es;
  275. }
  276. if (this.language == "it-IT") {
  277. this.containname = item.name_ita;
  278. }
  279. },
  280. },
  281. };
  282. </script>
  283. <style scoped lang="scss">
  284. .poptitle {
  285. width: 142rpx;
  286. height: 50rpx;
  287. font-family: PingFangSC, PingFang SC;
  288. font-weight: 600;
  289. font-size: 36rpx;
  290. color: #333333;
  291. text-align: center;
  292. width: 100%;
  293. }
  294. .transport {
  295. width: 702rpx;
  296. height: 164rpx;
  297. background: #ffffff;
  298. border-radius: 12rpx;
  299. padding: 24rpx 20rpx;
  300. box-sizing: border-box;
  301. }
  302. .yundate {
  303. font-family: PingFangSC, PingFang SC;
  304. font-weight: 550;
  305. font-size: 32rpx;
  306. color: #333333;
  307. line-height: 44rpx;
  308. text-align: left;
  309. font-style: normal;
  310. }
  311. .chest {
  312. font-family: SFPro, SFPro;
  313. font-weight: 400;
  314. font-size: 24rpx;
  315. color: #555555;
  316. line-height: 28rpx;
  317. text-align: left;
  318. font-style: normal;
  319. }
  320. .mone {
  321. font-family: JDZhengHT, JDZhengHT;
  322. font-weight: 400;
  323. font-size: 26rpx;
  324. color: #f83224;
  325. line-height: 32rpx;
  326. text-align: left;
  327. font-style: normal;
  328. }
  329. .enbottom {
  330. width: 750rpx;
  331. height: 166rpx;
  332. background: #ffffff;
  333. position: absolute;
  334. left: 0rpx;
  335. bottom: 0;
  336. padding: 0 24rpx;
  337. box-sizing: border-box;
  338. .confirm {
  339. width: 398rpx;
  340. height: 84rpx;
  341. background: #f83224;
  342. border-radius: 42rpx;
  343. text-align: center;
  344. font-family: PingFangSC, PingFang SC;
  345. font-weight: 500;
  346. font-size: 32rpx;
  347. color: #ffffff;
  348. line-height: 84rpx;
  349. text-align: center;
  350. font-style: normal;
  351. }
  352. .cancel {
  353. width: 280rpx;
  354. height: 84rpx;
  355. border-radius: 42rpx;
  356. border: 2rpx solid rgba(151, 151, 151, 0.3);
  357. font-family: PingFangSC, PingFang SC;
  358. font-weight: 400;
  359. font-size: 32rpx;
  360. color: #444444;
  361. line-height: 84rpx;
  362. text-align: center;
  363. font-style: normal;
  364. }
  365. }
  366. </style>