newBulitOrder.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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. />
  56. <!-- 选择物流价格之后的下一步 -->
  57. <!-- 推荐商品 -->
  58. <RecommendGoods :swiptlist="swiptlist" />
  59. <!-- 推荐商品 -->
  60. <!-- 商品信息 -->
  61. <GoodsInformation
  62. :goodinfo="goodinfo"
  63. :containname="containname"
  64. :goodsPrice="goodsList.order.goods_amount"
  65. :countGoodsInformation="countGoodsInformation"
  66. :goodsValue="goodsValue"
  67. :specificationsPrice="specificationsPrice"
  68. :goodsWeight="goodsWeight"
  69. />
  70. <!-- 商品信息 -->
  71. <view class="btn u-flex u-row-right">
  72. <view class="u-flex">
  73. <text class="kg" v-show="containname"
  74. >{{ i18n.Atotalof }}{{ goodsWeight }}kg,</text
  75. >
  76. <text>{{ i18n.total }}:</text>
  77. <text class="money" style="font-size: 28rpx">¥</text>
  78. <view class="">
  79. <text class="money" v-if="countGoodsInformation.containname">{{
  80. Number(specificationsPrice) +
  81. Number(countGoodsInformation.unit_price) * goodsWeight
  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: "", //语言
  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. };
  130. },
  131. computed: {
  132. i18n() {
  133. return this.$t("index");
  134. },
  135. },
  136. onLoad(options) {
  137. this.getOrderGoods(options.orderId);
  138. this.recommend();
  139. },
  140. onShow() {
  141. if (uni.getStorageSync("language") != "") {
  142. this.language = uni.getStorageSync("language");
  143. }
  144. },
  145. methods: {
  146. //关闭选择物流窗口
  147. closeLogistics(data) {
  148. this.logisticsShow = false;
  149. this.nextLogisticsShow = false;
  150. //判断是哪一步关闭,接受数据
  151. if (data.type == "second" && data.containname) {
  152. this.containname = data.containname;
  153. this.countGoodsInformation = data;
  154. }
  155. },
  156. //打开选择货柜弹窗
  157. openContainer(data) {
  158. this.goodinfo.province_id = this.province_id;
  159. this.goodinfo.transport_type_id = this.transport_type_id;
  160. let weight = 0;
  161. let height = 0;
  162. let length = 0;
  163. let price = 0;
  164. let width = 0;
  165. this.goodsList.goods.map((item) => {
  166. console.log(item);
  167. weight += item.sku_item.weight;
  168. height += item.sku_item.height;
  169. length += item.sku_item.length;
  170. width += item.sku_item.width;
  171. price += Number(item.sku_item.price);
  172. // this.goodinfo.type = item.goods.status;
  173. });
  174. //等待后端解决多商品之后放开注释
  175. // this.goodinfo.weight = weight;
  176. // this.goodinfo.height = height;
  177. // this.goodinfo.length = length;
  178. // this.goodinfo.width = width;
  179. // this.goodinfo.price = price;
  180. //等待后端解决多商品删除,采用上面几行
  181. this.goodinfo.weight = 10;
  182. this.goodinfo.height = 10;
  183. this.goodinfo.length = 10;
  184. this.goodinfo.width = 10;
  185. this.goodinfo.price = 10;
  186. this.logisticsShow = false;
  187. this.nextLogisticsShow = true;
  188. //判断打开的窗口是第几步,将选中的运输方式传回
  189. if (data.type == "first" && data.transportTypeName) {
  190. this.transportTypeName = data.transportTypeName;
  191. }
  192. },
  193. //运费满减
  194. async config() {
  195. var that = this;
  196. await uni.$u.http
  197. .get("/api/config", {
  198. params: {
  199. module: "free_shipping",
  200. },
  201. })
  202. .then((res) => {
  203. let goodsum = "";
  204. goodsum = Number(that.specificationsPrice) * that.goodsValue;
  205. if (goodsum > res.free_shipping) {
  206. that.countGoodsInformation.sum = 0;
  207. that.countGoodsInformation.unit_price = 0;
  208. } else {
  209. this.countGoodsInformation.sum =
  210. this.countGoodsInformation.unchangedFreight;
  211. this.countGoodsInformation.unit_price =
  212. this.countGoodsInformation.unchangedUnit_price;
  213. }
  214. })
  215. .catch(() => {});
  216. },
  217. //提交订单
  218. topay() {
  219. uni.$u.http
  220. .post("/api/order", {
  221. address_id: this.addinfo.id, //3 是 String 地址ID
  222. goods_id: this.goodsId, //65 是 String 商品id
  223. goods_num: this.goodsValue, //2 是 String 商品数量
  224. sku_item_id: this.sku_item_id, //60 是 String 规格id
  225. cart_ids: "", //8,9 是 String 购物车id
  226. remark: "", //备注 是 String 备注
  227. merchant_goods_id: this.merchant_goods_id || "", //39 是 String 团长商品id
  228. container_id: this.countGoodsInformation.containid, //1 是 String 货柜id
  229. share_member_id: "", // 是 String 分享团长id 分享商品的时候传
  230. belong: this.goodsSource || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  231. })
  232. .then((res) => {
  233. uni.navigateTo({
  234. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  235. url: "/pageA/payorder?orderid=" + res.id + "&sum=" + res.amount,
  236. });
  237. })
  238. .catch(() => {});
  239. },
  240. //打开选择物流窗口
  241. openLogistics() {
  242. this.logisticsShow = true;
  243. this.transport();
  244. },
  245. //获取订单商品
  246. getOrderGoods(id) {
  247. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  248. this.goodsList = res;
  249. this.goodsValue = this.goodsList.goods[0].goods_num;
  250. this.goodsWeight = this.goodsList.weight_total;
  251. this.goodsList.goods.map((item) => {
  252. this.goodsId = item.goods_id;
  253. this.sku_item_id = item.sku_item_id;
  254. this.merchant_goods_id = item.merchant_goods_id;
  255. // this.goodsSource = item.goods.source;
  256. //获取订单商品总金额
  257. this.specificationsPrice +=
  258. Number(item.discount_price) * item.goods_num;
  259. });
  260. });
  261. },
  262. //跳转到填写地址
  263. toadd() {
  264. var that = this;
  265. uni.navigateTo({
  266. url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
  267. events: {
  268. getadd(res) {
  269. console.log(res);
  270. that.addinfo = res;
  271. that.province_id = res.province_id;
  272. that.transport();
  273. },
  274. },
  275. });
  276. },
  277. //货运类型列表
  278. transport() {
  279. uni.$u.http
  280. .get("/api/transport-type", {
  281. params: {
  282. province_id: this.province_id,
  283. },
  284. })
  285. .then((res) => {
  286. this.containerList = res;
  287. this.transport_type_id = res[0].id;
  288. this.transportTypeName = res[0].name_cn; //等待后续更改language删除掉
  289. //根据不同的语言选择不用的类型
  290. if (this.language == "zh-CN") {
  291. this.transportTypeName = res[0].name_cn;
  292. }
  293. if (this.language == "en-US") {
  294. this.transportTypeName = res[0].name_en;
  295. }
  296. if (this.language == "es-ES") {
  297. this.transportTypeName = res[0].name_es;
  298. }
  299. if (this.language == "it-IT") {
  300. this.transportTypeName = res[0].name_ita;
  301. }
  302. })
  303. .catch(() => {});
  304. },
  305. //正则匹配手机号
  306. replacePhoneToStar: function (phone) {
  307. if (phone) {
  308. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  309. }
  310. },
  311. //商品推荐
  312. recommend() {
  313. uni.$u.http
  314. .post("/api/goods/recommend", {
  315. keyword: "",
  316. })
  317. .then((res) => {
  318. this.swiptlist = res;
  319. })
  320. .catch(() => {});
  321. },
  322. //增加 or 减少 商品数量
  323. changeGoodsNum(type) {
  324. if (type == "increase") {
  325. this.goodsValue++;
  326. this.config();
  327. } else if (this.goodsValue > 1) {
  328. this.goodsValue--;
  329. this.config();
  330. }
  331. },
  332. },
  333. };
  334. </script>
  335. <style scoped lang="scss">
  336. .page {
  337. background: rgba(244, 244, 244, 1);
  338. padding: 20rpx 24rpx;
  339. box-sizing: border-box;
  340. padding-bottom: 200rpx;
  341. // 地址
  342. .address {
  343. width: 702rpx;
  344. // height: 182rpx;
  345. background: #ffffff;
  346. border-radius: 16rpx;
  347. padding: 32rpx 24rpx;
  348. box-sizing: border-box;
  349. .add {
  350. font-family: SFPro, SFPro;
  351. font-weight: 500;
  352. font-size: 32rpx;
  353. color: #222222;
  354. line-height: 36rpx;
  355. text-align: left;
  356. font-style: normal;
  357. }
  358. .info {
  359. font-family: SFPro, SFPro;
  360. font-weight: 400;
  361. font-size: 24rpx;
  362. color: #555555;
  363. line-height: 28rpx;
  364. text-align: left;
  365. font-style: normal;
  366. margin-top: 20rpx;
  367. }
  368. }
  369. //物流
  370. .logistics {
  371. width: 702rpx;
  372. background: #ffffff;
  373. border-radius: 16rpx;
  374. padding: 28rpx 22rpx;
  375. box-sizing: border-box;
  376. margin-top: 20rpx;
  377. .change {
  378. font-family: PingFangSC, PingFang SC;
  379. font-weight: 400;
  380. font-size: 28rpx;
  381. color: #f83224;
  382. line-height: 40rpx;
  383. text-align: left;
  384. font-style: normal;
  385. margin-right: 8rpx;
  386. }
  387. }
  388. .btn {
  389. width: 750rpx;
  390. height: 166rpx;
  391. background: #ffffff;
  392. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  393. position: fixed;
  394. bottom: 0;
  395. left: 0;
  396. padding: 0 24rpx 5rpx 5rpx;
  397. box-sizing: border-box;
  398. .money {
  399. font-family: HarmonyOS_Sans_Medium;
  400. font-size: 48rpx;
  401. color: #f83224;
  402. line-height: 38rpx;
  403. text-align: left;
  404. font-style: normal;
  405. // font-weight: 500;
  406. font-weight: bold;
  407. }
  408. .kg {
  409. font-family: PingFangSC, PingFang SC;
  410. font-weight: 400;
  411. font-size: 24rpx;
  412. color: #333333;
  413. line-height: 34rpx;
  414. text-align: left;
  415. font-style: normal;
  416. }
  417. .order {
  418. width: 232rpx;
  419. height: 80rpx;
  420. background: #f83224;
  421. border-radius: 40rpx;
  422. font-family: PingFangTC, PingFangTC;
  423. font-weight: 500;
  424. font-size: 32rpx;
  425. color: #ffffff;
  426. line-height: 80rpx;
  427. text-align: center;
  428. font-style: normal;
  429. margin-left: 20rpx;
  430. }
  431. }
  432. }
  433. </style>