nextLogistics.vue 10.0 KB

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