newBulitOrder.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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. @closeLogistics="closeLogistics"
  54. />
  55. <!-- 选择物流价格之后的下一步 -->
  56. <!-- 推荐商品 -->
  57. <RecommendGoods :swiptlist="swiptlist" />
  58. <!-- 推荐商品 -->
  59. <!-- 商品信息 -->
  60. <GoodsInformation
  61. :goodinfo="goodinfo"
  62. :containname="containname"
  63. :goodsPrice="goodsList.order.amount"
  64. :countGoodsInformation="countGoodsInformation"
  65. :goodsValue="goodsValue"
  66. :goodsWeight="goodsWeight"
  67. />
  68. <!-- 商品信息 -->
  69. <view class="btn u-flex u-row-right">
  70. <view class="u-flex">
  71. <text class="kg" v-show="containname"
  72. >{{ i18n.Atotalof }}{{ goodsWeight * goodsValue }}kg,</text
  73. >
  74. <text>{{ i18n.total }}:</text>
  75. <text class="money" style="font-size: 28rpx">¥</text>
  76. <view class="">
  77. <text
  78. class="money"
  79. v-if="goodinfo.is_discount == 1"
  80. style="font-weight: bold"
  81. >{{
  82. Number(
  83. countGoodsInformation.sum * 10000 +
  84. Number(sku_info.price) * Number(goodsValue) * 10000
  85. ) / 10000
  86. }}</text
  87. >
  88. <text
  89. class="money"
  90. v-if="goodinfo.is_discount == 0"
  91. style="font-weight: bold"
  92. >{{
  93. Number(
  94. countGoodsInformation.sum * 10000 +
  95. Number(sku_info.discount_price) * Number(goodsValue) * 10000
  96. ) / 10000
  97. }}</text
  98. >
  99. </view>
  100. </view>
  101. <view class="order" @click="topay">
  102. {{ i18n.Submitorder }}
  103. </view>
  104. </view>
  105. </view>
  106. </template>
  107. <script>
  108. import Commodity from "./component/commodity.vue";
  109. import SelectLogistics from "./component/selectLogistics.vue";
  110. import NextLogistics from "./component/nextLogistics.vue";
  111. import RecommendGoods from "./component/recommendGoods.vue";
  112. import GoodsInformation from "./component/goodsInformation.vue";
  113. export default {
  114. components: {
  115. Commodity,
  116. SelectLogistics,
  117. NextLogistics,
  118. RecommendGoods,
  119. GoodsInformation,
  120. },
  121. data() {
  122. return {
  123. addinfo: {}, //地址信息
  124. province_id: "",
  125. containerList: [],
  126. transport_type_id: "", //运输方式ID
  127. transportTypeName: "", //运输方式名称
  128. swiptlist: [], //推荐商品
  129. goodsList: [], //需要下单的商品
  130. logisticsShow: false, //打开选择物流窗口
  131. language: "", //语言
  132. nextLogisticsShow: false, //打开选择货柜窗口
  133. goodinfo: {}, //商品信息
  134. goodsValue: 0, //商品数量
  135. sku_info: {},
  136. containname: "", //货柜名称
  137. countGoodsInformation: {},
  138. goodsWeight: 0, //商品重量
  139. };
  140. },
  141. computed: {
  142. i18n() {
  143. return this.$t("index");
  144. },
  145. },
  146. onLoad(options) {
  147. //需要下单的商品列表
  148. this.goodsList = JSON.parse(decodeURIComponent(options.goodsList));
  149. this.goodsValue = this.goodsList.order_goods[0].goods_num;
  150. this.goodsWeight = this.goodsList.order_goods[0].sku_item.weight;
  151. this.recommend();
  152. },
  153. onShow() {
  154. if (uni.getStorageSync("language") != "") {
  155. this.language = uni.getStorageSync("language");
  156. }
  157. },
  158. methods: {
  159. //关闭选择物流窗口
  160. closeLogistics(data) {
  161. this.logisticsShow = false;
  162. this.nextLogisticsShow = false;
  163. //判断是哪一步关闭,接受数据
  164. if (data.type == "second" && data.containname) {
  165. this.containname = data.containname;
  166. this.countGoodsInformation = data;
  167. }
  168. },
  169. //打开选择货柜弹窗
  170. openContainer(data) {
  171. this.goodinfo.province_id = this.province_id;
  172. this.goodinfo.transport_type_id = this.transport_type_id;
  173. let weight = 0;
  174. let height = 0;
  175. let length = 0;
  176. let price = 0;
  177. let width = 0;
  178. console.log(this.goodsList);
  179. this.goodsList.order_goods.map((item) => {
  180. console.log(item);
  181. weight += item.sku_item.weight;
  182. height += item.sku_item.height;
  183. length += item.sku_item.length;
  184. width += item.sku_item.width;
  185. price += Number(item.sku_item.price);
  186. this.goodinfo.type = item.goods.status;
  187. });
  188. this.goodinfo.weight = weight;
  189. this.goodinfo.height = height;
  190. this.goodinfo.length = length;
  191. this.goodinfo.width = width;
  192. this.goodinfo.price = price;
  193. console.log(this.goodinfo);
  194. this.logisticsShow = false;
  195. this.nextLogisticsShow = true;
  196. //判断打开的窗口是第几步,将选中的运输方式传回
  197. if (data.type == "first" && data.transportTypeName) {
  198. this.transportTypeName = data.transportTypeName;
  199. }
  200. },
  201. //打开选择物流窗口
  202. openLogistics() {
  203. this.logisticsShow = true;
  204. this.transport();
  205. },
  206. //跳转到填写地址
  207. toadd() {
  208. var that = this;
  209. uni.navigateTo({
  210. url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
  211. events: {
  212. getadd(res) {
  213. console.log(res);
  214. that.addinfo = res;
  215. that.province_id = res.province_id;
  216. that.transport();
  217. },
  218. },
  219. });
  220. },
  221. //货运类型列表
  222. transport() {
  223. uni.$u.http
  224. .get("/api/transport-type", {
  225. params: {
  226. province_id: this.province_id,
  227. },
  228. })
  229. .then((res) => {
  230. this.containerList = res;
  231. this.transport_type_id = res[0].id;
  232. this.transportTypeName = res[0].name_cn; //等待后续更改language删除掉
  233. //根据不同的语言选择不用的类型
  234. if (this.language == "zh-CN") {
  235. this.transportTypeName = res[0].name_cn;
  236. }
  237. if (this.language == "en-US") {
  238. this.transportTypeName = res[0].name_en;
  239. }
  240. if (this.language == "es-ES") {
  241. this.transportTypeName = res[0].name_es;
  242. }
  243. if (this.language == "it-IT") {
  244. this.transportTypeName = res[0].name_ita;
  245. }
  246. })
  247. .catch(() => {});
  248. },
  249. //正则匹配手机号
  250. replacePhoneToStar: function (phone) {
  251. if (phone) {
  252. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  253. }
  254. },
  255. //商品推荐
  256. recommend() {
  257. uni.$u.http
  258. .post("/api/goods/recommend", {
  259. keyword: "",
  260. })
  261. .then((res) => {
  262. this.swiptlist = res;
  263. })
  264. .catch(() => {});
  265. },
  266. //增加 or 减少 商品数量
  267. changeGoodsNum(type) {
  268. if (type == "increase") {
  269. this.goodsValue++;
  270. } else {
  271. this.goodsValue--;
  272. }
  273. },
  274. },
  275. };
  276. </script>
  277. <style scoped lang="scss">
  278. .page {
  279. background: rgba(244, 244, 244, 1);
  280. padding: 20rpx 24rpx;
  281. box-sizing: border-box;
  282. padding-bottom: 200rpx;
  283. // 地址
  284. .address {
  285. width: 702rpx;
  286. // height: 182rpx;
  287. background: #ffffff;
  288. border-radius: 16rpx;
  289. padding: 32rpx 24rpx;
  290. box-sizing: border-box;
  291. .add {
  292. font-family: SFPro, SFPro;
  293. font-weight: 500;
  294. font-size: 32rpx;
  295. color: #222222;
  296. line-height: 36rpx;
  297. text-align: left;
  298. font-style: normal;
  299. }
  300. .info {
  301. font-family: SFPro, SFPro;
  302. font-weight: 400;
  303. font-size: 24rpx;
  304. color: #555555;
  305. line-height: 28rpx;
  306. text-align: left;
  307. font-style: normal;
  308. margin-top: 20rpx;
  309. }
  310. }
  311. //物流
  312. .logistics {
  313. width: 702rpx;
  314. background: #ffffff;
  315. border-radius: 16rpx;
  316. padding: 28rpx 22rpx;
  317. box-sizing: border-box;
  318. margin-top: 20rpx;
  319. .change {
  320. font-family: PingFangSC, PingFang SC;
  321. font-weight: 400;
  322. font-size: 28rpx;
  323. color: #f83224;
  324. line-height: 40rpx;
  325. text-align: left;
  326. font-style: normal;
  327. margin-right: 8rpx;
  328. }
  329. }
  330. .btn {
  331. width: 750rpx;
  332. height: 166rpx;
  333. background: #ffffff;
  334. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  335. position: fixed;
  336. bottom: 0;
  337. left: 0;
  338. padding: 0 24rpx 5rpx 5rpx;
  339. box-sizing: border-box;
  340. .money {
  341. font-family: HarmonyOS_Sans_Medium;
  342. font-size: 48rpx;
  343. color: #f83224;
  344. line-height: 38rpx;
  345. text-align: left;
  346. font-style: normal;
  347. // font-weight: 500;
  348. font-weight: bold;
  349. }
  350. .kg {
  351. font-family: PingFangSC, PingFang SC;
  352. font-weight: 400;
  353. font-size: 24rpx;
  354. color: #333333;
  355. line-height: 34rpx;
  356. text-align: left;
  357. font-style: normal;
  358. }
  359. .order {
  360. width: 232rpx;
  361. height: 80rpx;
  362. background: #f83224;
  363. border-radius: 40rpx;
  364. font-family: PingFangTC, PingFangTC;
  365. font-weight: 500;
  366. font-size: 32rpx;
  367. color: #ffffff;
  368. line-height: 80rpx;
  369. text-align: center;
  370. font-style: normal;
  371. margin-left: 20rpx;
  372. }
  373. }
  374. }
  375. </style>