newBulitOrder.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. <template>
  2. <view class="page">
  3. <!-- 地址 -->
  4. <view class="address" @click="toadd">
  5. <view class="u-flex u-row-between">
  6. <view class="add" v-if="JSON.stringify(addinfo) != '{}'">{{
  7. addinfo.full_address
  8. }}</view>
  9. <view class="" v-else>{{ i18n.shippingaddress }}</view>
  10. <u-icon name="arrow-right" size="16"></u-icon>
  11. </view>
  12. <view class="info" v-if="JSON.stringify(addinfo) != '{}'">
  13. <text>{{ addinfo.name }}</text>
  14. <text style="margin-left: 20rpx">{{
  15. replacePhoneToStar(addinfo.mobile)
  16. }}</text>
  17. </view>
  18. </view>
  19. <!-- 地址 -->
  20. <!-- 需要下单的商品列表 -->
  21. <Commodity
  22. :goodsList="goodsList"
  23. :goodsValue="goodsValue"
  24. @changeGoodsNum="changeGoodsNum"
  25. />
  26. <!-- 需要下单的商品列表 -->
  27. <!-- 选择物流 -->
  28. <view class="logistics u-flex u-row-between">
  29. <text style="font-weight: 600; width: 320rpx">{{ i18n.flow }}</text>
  30. <view class="u-flex" @click="openLogistics">
  31. <text class="change">{{
  32. containname ? transportTypeName + " | " + containname : i18n.selection
  33. }}</text>
  34. <u-icon name="arrow-right" size="16"></u-icon>
  35. </view>
  36. </view>
  37. <!-- 选择物流 -->
  38. <!-- 选择物流弹窗 -->
  39. <SelectLogistics
  40. :logisticsShow="logisticsShow"
  41. @closeLogistics="closeLogistics"
  42. :containerList="containerList"
  43. :language="language"
  44. @openContainer="openContainer"
  45. />
  46. <!-- 选择物流弹窗 -->
  47. <!-- 选择物流价格之后的下一步 -->
  48. <NextLogistics
  49. :nextLogisticsShow="nextLogisticsShow"
  50. :language="language"
  51. :goodinfo="goodinfo"
  52. :goodsValue="goodsValue"
  53. :specificationsPrice="specificationsPrice"
  54. @closeLogistics="closeLogistics"
  55. :goodsArr="goodsArr"
  56. />
  57. <!-- 选择物流价格之后的下一步 -->
  58. <!-- 推荐商品 -->
  59. <RecommendGoods :swiptlist="swiptlist" />
  60. <!-- 推荐商品 -->
  61. <!-- 商品信息 -->
  62. <GoodsInformation
  63. :goodinfo="goodinfo"
  64. :containname="containname"
  65. :goodsPrice="goodsList.order.goods_amount"
  66. :countGoodsInformation="countGoodsInformation"
  67. :goodsValue="goodsValue"
  68. :specificationsPrice="specificationsPrice"
  69. :goodsWeight="goodsWeight"
  70. />
  71. <!-- 商品信息 -->
  72. <view class="btn u-flex u-row-right">
  73. <view class="u-flex">
  74. <text class="kg" v-show="containname"
  75. >{{ i18n.Atotalof }}{{ countGoodsInformation.goodsWeight }}kg,</text
  76. >
  77. <text>{{ i18n.total }}:</text>
  78. <text class="money" style="font-size: 28rpx">¥</text>
  79. <view class="">
  80. <text class="money" v-if="countGoodsInformation.containname">{{
  81. Number(specificationsPrice) + Number(countGoodsInformation.sum)
  82. }}</text>
  83. </view>
  84. </view>
  85. <view class="order" @click="topay">
  86. {{ i18n.Submitorder }}
  87. </view>
  88. </view>
  89. </view>
  90. </template>
  91. <script>
  92. import Commodity from "./component/commodity.vue";
  93. import SelectLogistics from "./component/selectLogistics.vue";
  94. import NextLogistics from "./component/nextLogistics.vue";
  95. import RecommendGoods from "./component/recommendGoods.vue";
  96. import GoodsInformation from "./component/goodsInformation.vue";
  97. export default {
  98. components: {
  99. Commodity,
  100. SelectLogistics,
  101. NextLogistics,
  102. RecommendGoods,
  103. GoodsInformation,
  104. },
  105. data() {
  106. return {
  107. addinfo: {}, //地址信息
  108. province_id: "",
  109. containerList: [],
  110. transport_type_id: "", //运输方式ID
  111. transportTypeName: "", //运输方式名称
  112. swiptlist: [], //推荐商品
  113. goodsList: [], //需要下单的商品
  114. logisticsShow: false, //打开选择物流窗口
  115. language: this._language, //语言
  116. nextLogisticsShow: false, //打开选择货柜窗口
  117. goodinfo: {}, //商品信息
  118. goodsValue: 0, //商品数量
  119. sku_info: {},
  120. containname: "", //货柜名称
  121. countGoodsInformation: {},
  122. goodsWeight: 0, //商品重量
  123. goodsId: "", //商品id
  124. sku_item_id: "", //商品规格id
  125. merchant_goods_id: "", //店铺商品id
  126. goodsSource: "", //商品归属
  127. isDiscount: "", //商品是否存在打折
  128. specificationsPrice: 0, //订单商品总金额
  129. goodsArr: [], //多商品用的商品规格
  130. };
  131. },
  132. computed: {
  133. i18n() {
  134. return this.$t("index");
  135. },
  136. },
  137. onLoad(options) {
  138. this.getOrderGoods(options.orderId);
  139. this.recommend();
  140. },
  141. onShow() {
  142. console.log(this.language);
  143. // if (uni.getStorageSync("language") != "") {
  144. // this.language = uni.getStorageSync("language");
  145. // }
  146. },
  147. methods: {
  148. //关闭选择物流窗口
  149. closeLogistics(data) {
  150. this.logisticsShow = false;
  151. this.nextLogisticsShow = false;
  152. //判断是哪一步关闭,接受数据
  153. if (data.type == "second" && data.containname) {
  154. this.containname = data.containname;
  155. this.countGoodsInformation = data;
  156. }
  157. },
  158. //打开选择货柜弹窗
  159. openContainer(data) {
  160. this.goodinfo.province_id = this.province_id;
  161. this.goodinfo.transport_type_id = this.transport_type_id;
  162. let weight = 0;
  163. let height = 0;
  164. let length = 0;
  165. let price = 0;
  166. let width = 0;
  167. this.goodsList.goods.map((item) => {
  168. console.log(item);
  169. weight += item.sku_item.weight;
  170. height += item.sku_item.height;
  171. length += item.sku_item.length;
  172. width += item.sku_item.width;
  173. price += Number(item.sku_item.price);
  174. // this.goodinfo.type = item.goods.status;
  175. });
  176. //等待后端解决多商品之后放开注释
  177. // this.goodinfo.weight = weight;
  178. // this.goodinfo.height = height;
  179. // this.goodinfo.length = length;
  180. // this.goodinfo.width = width;
  181. // this.goodinfo.price = price;
  182. //等待后端解决多商品删除,采用上面几行
  183. this.goodinfo.weight = 10;
  184. this.goodinfo.height = 10;
  185. this.goodinfo.length = 10;
  186. this.goodinfo.width = 10;
  187. this.goodinfo.price = 10;
  188. this.logisticsShow = false;
  189. this.nextLogisticsShow = true;
  190. //判断打开的窗口是第几步,将选中的运输方式传回
  191. if (data.type == "first" && data.transportTypeName) {
  192. this.transportTypeName = data.transportTypeName;
  193. }
  194. },
  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) * that.goodsValue;
  207. if (goodsum > res.free_shipping) {
  208. that.countGoodsInformation.sum = 0;
  209. that.countGoodsInformation.unit_price = 0;
  210. } else {
  211. this.countGoodsInformation.sum =
  212. this.countGoodsInformation.unchangedFreight;
  213. this.countGoodsInformation.unit_price =
  214. this.countGoodsInformation.unchangedUnit_price;
  215. }
  216. })
  217. .catch(() => {});
  218. },
  219. //提交订单
  220. topay() {
  221. uni.$u.http
  222. .post("/api/order", {
  223. address_id: this.addinfo.id, //3 是 String 地址ID
  224. goods_id: this.goodsId, //65 是 String 商品id
  225. goods_num: this.goodsValue, //2 是 String 商品数量
  226. sku_item_id: this.sku_item_id, //60 是 String 规格id
  227. cart_ids: "", //8,9 是 String 购物车id
  228. remark: "", //备注 是 String 备注
  229. merchant_goods_id: this.merchant_goods_id || "", //39 是 String 团长商品id
  230. container_id: this.countGoodsInformation.containid, //1 是 String 货柜id
  231. share_member_id: "", // 是 String 分享团长id 分享商品的时候传
  232. belong: this.goodsSource || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  233. goods_arr: JSON.stringify(this.goodsArr),
  234. })
  235. .then((res) => {
  236. uni.navigateTo({
  237. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  238. url: "/pageA/payorder?orderid=" + res.id + "&sum=" + res.amount,
  239. });
  240. })
  241. .catch(() => {});
  242. },
  243. //打开选择物流窗口
  244. openLogistics() {
  245. this.logisticsShow = true;
  246. this.transport();
  247. },
  248. //获取订单商品
  249. getOrderGoods(id) {
  250. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  251. this.goodsList = res;
  252. this.goodsValue = this.goodsList.goods[0].goods_num;
  253. this.goodsList.goods.map((item) => {
  254. this.goodsId = item.goods_id;
  255. this.sku_item_id = item.sku_item_id;
  256. this.merchant_goods_id = item.merchant_goods_id;
  257. // this.goodsSource = item.goods.source;
  258. //库存商品大于需要购买的数量
  259. if (item.true_stock > item.goods_num) {
  260. this.goodsWeight += item.sku_item.weight * item.goods_num; //商品重量
  261. //多商品获取规格商品id
  262. let obj = {
  263. merchant_goods_id: item.merchant_goods_id,
  264. goods_num: item.goods_num,
  265. sku_item_id: item.sku_item_id,
  266. };
  267. this.goodsArr.push(obj);
  268. //获取订单商品总金额
  269. this.specificationsPrice +=
  270. Number(item.discount_price) * item.goods_num;
  271. }
  272. });
  273. if (this.goodsArr.length < this.goodsList.goods.length) {
  274. uni.showToast({
  275. title: "已自动去除库存不足的商品",
  276. icon: "none",
  277. });
  278. }
  279. });
  280. },
  281. //跳转到填写地址
  282. toadd() {
  283. var that = this;
  284. uni.navigateTo({
  285. url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
  286. events: {
  287. getadd(res) {
  288. console.log(res);
  289. that.addinfo = res;
  290. that.province_id = res.province_id;
  291. that.transport();
  292. },
  293. },
  294. });
  295. },
  296. //货运类型列表
  297. transport() {
  298. uni.$u.http
  299. .get("/api/transport-type", {
  300. params: {
  301. province_id: this.province_id,
  302. },
  303. })
  304. .then((res) => {
  305. this.containerList = res;
  306. this.transport_type_id = res[0].id;
  307. this.transportTypeName = res[0].name_cn; //等待后续更改language删除掉
  308. //根据不同的语言选择不用的类型
  309. if (this.language == "zh-CN") {
  310. this.transportTypeName = res[0].name_cn;
  311. }
  312. if (this.language == "en-US") {
  313. this.transportTypeName = res[0].name_en;
  314. }
  315. if (this.language == "es-ES") {
  316. this.transportTypeName = res[0].name_es;
  317. }
  318. if (this.language == "it-IT") {
  319. this.transportTypeName = res[0].name_ita;
  320. }
  321. })
  322. .catch(() => {});
  323. },
  324. //正则匹配手机号
  325. replacePhoneToStar: function (phone) {
  326. if (phone) {
  327. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  328. }
  329. },
  330. //商品推荐
  331. recommend() {
  332. uni.$u.http
  333. .post("/api/goods/recommend", {
  334. keyword: "",
  335. })
  336. .then((res) => {
  337. this.swiptlist = res;
  338. })
  339. .catch(() => {});
  340. },
  341. //增加 or 减少 商品数量
  342. changeGoodsNum(type) {
  343. if (type == "increase") {
  344. this.goodsValue++;
  345. this.config();
  346. } else if (this.goodsValue > 1) {
  347. this.goodsValue--;
  348. this.config();
  349. }
  350. },
  351. },
  352. };
  353. </script>
  354. <style scoped lang="scss">
  355. .page {
  356. background: rgba(244, 244, 244, 1);
  357. padding: 20rpx 24rpx;
  358. box-sizing: border-box;
  359. padding-bottom: 200rpx;
  360. // 地址
  361. .address {
  362. width: 702rpx;
  363. // height: 182rpx;
  364. background: #ffffff;
  365. border-radius: 16rpx;
  366. padding: 32rpx 24rpx;
  367. box-sizing: border-box;
  368. .add {
  369. font-family: SFPro, SFPro;
  370. font-weight: 500;
  371. font-size: 32rpx;
  372. color: #222222;
  373. line-height: 36rpx;
  374. text-align: left;
  375. font-style: normal;
  376. }
  377. .info {
  378. font-family: SFPro, SFPro;
  379. font-weight: 400;
  380. font-size: 24rpx;
  381. color: #555555;
  382. line-height: 28rpx;
  383. text-align: left;
  384. font-style: normal;
  385. margin-top: 20rpx;
  386. }
  387. }
  388. //物流
  389. .logistics {
  390. width: 702rpx;
  391. background: #ffffff;
  392. border-radius: 16rpx;
  393. padding: 28rpx 22rpx;
  394. box-sizing: border-box;
  395. margin-top: 20rpx;
  396. .change {
  397. font-family: PingFangSC, PingFang SC;
  398. font-weight: 400;
  399. font-size: 28rpx;
  400. color: #f83224;
  401. line-height: 40rpx;
  402. text-align: left;
  403. font-style: normal;
  404. margin-right: 8rpx;
  405. }
  406. }
  407. .btn {
  408. width: 750rpx;
  409. height: 166rpx;
  410. background: #ffffff;
  411. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  412. position: fixed;
  413. bottom: 0;
  414. left: 0;
  415. padding: 0 24rpx 5rpx 5rpx;
  416. box-sizing: border-box;
  417. .money {
  418. font-family: HarmonyOS_Sans_Medium;
  419. font-size: 48rpx;
  420. color: #f83224;
  421. line-height: 38rpx;
  422. text-align: left;
  423. font-style: normal;
  424. // font-weight: 500;
  425. font-weight: bold;
  426. }
  427. .kg {
  428. font-family: PingFangSC, PingFang SC;
  429. font-weight: 400;
  430. font-size: 24rpx;
  431. color: #333333;
  432. line-height: 34rpx;
  433. text-align: left;
  434. font-style: normal;
  435. }
  436. .order {
  437. width: 232rpx;
  438. height: 80rpx;
  439. background: #f83224;
  440. border-radius: 40rpx;
  441. font-family: PingFangTC, PingFangTC;
  442. font-weight: 500;
  443. font-size: 32rpx;
  444. color: #ffffff;
  445. line-height: 80rpx;
  446. text-align: center;
  447. font-style: normal;
  448. margin-left: 20rpx;
  449. }
  450. }
  451. }
  452. </style>