order.vue 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225
  1. <template>
  2. <view class="back">
  3. <!-- 地址 -->
  4. <view class="address" @click="toadd">
  5. <view class="u-flex u-row-between">
  6. <view class="add" v-if="addinfo">{{ addinfo.full_address }}</view>
  7. <view class="" v-else>{{ i18n.shippingaddress }}</view>
  8. <u-icon name="arrow-right" size="16"></u-icon>
  9. </view>
  10. <view class="info" v-if="addinfo">
  11. <text>{{ addinfo.name }}</text>
  12. <text style="margin-left: 20rpx">{{
  13. replacePhoneToStar(addinfo.mobile)
  14. }}</text>
  15. </view>
  16. </view>
  17. <!-- 商品 -->
  18. <view class="shop">
  19. <view class="" v-if="typea == 'shop'">
  20. <view class="u-flex" style="margin-top: 32rpx" v-for="(item, idx) in selelist" :key="idx">
  21. <image :src="item.sku_item[0].image" style="width: 184rpx; height: 184rpx" mode=""></image>
  22. <view class=" " style="
  23. margin-left: 20rpx;
  24. flex-direction: column;
  25. justify-content: space-between;
  26. height: 184rpx;
  27. display: flex;
  28. flex: 1;
  29. ">
  30. <view class="">
  31. <text class="toptitle" v-if="language == 'zh-CN'">{{
  32. item.name_cn
  33. }}</text>
  34. <text class="toptitle" v-if="language == 'en-US'">{{
  35. item.name_en
  36. }}</text>
  37. <text class="toptitle" v-if="language == 'es-ES'">{{
  38. item.name_es
  39. }}</text>
  40. <text class="toptitle" v-if="language == 'it-IT'">{{
  41. item.name_ita
  42. }}</text>
  43. <view class="weight" v-if="language == 'zh-CN'">{{ item.sku_item[0].item }} </view>
  44. <view class="weight" v-if="language == 'en-US'">{{ item.sku_item[0].item_en }} </view>
  45. <view class="weight" v-if="language == 'es-ES'">{{ item.sku_item[0].item_es }} </view>
  46. <view class="weight" v-if="language == 'it-IT'">{{ item.sku_item[0].item_ita }} </view>
  47. </view>
  48. <view class="u-flex u-row-between">
  49. <view class="">
  50. <text class="money">¥</text>
  51. <text class="money" style="font-size: 34rpx">{{
  52. item.sku_item[0].discount_price
  53. }}</text>
  54. </view>
  55. <view class=""> x {{ item.cart.goods_num }}</view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <view class="" v-else>
  61. <view class="">
  62. <image :src="goodinfo.merchant.image" style="width: 38rpx; height: 38rpx" mode=""></image>
  63. <text class="name">{{ goodinfo.merchant.merchant_name }}</text>
  64. </view>
  65. <view class="u-flex" style="margin-top: 32rpx">
  66. <image :src="sku_info.image" style="width: 184rpx; height: 184rpx" mode=""></image>
  67. <view class=" " style="
  68. margin-left: 20rpx;
  69. flex-direction: column;
  70. justify-content: space-between;
  71. height: 184rpx;
  72. display: flex;
  73. flex: 1;
  74. ">
  75. <view class="">
  76. <text class="toptitle" v-if="language == 'zh-CN'">{{
  77. goodinfo.name_cn
  78. }}</text>
  79. <text class="toptitle" v-if="language == 'en-US'">{{
  80. goodinfo.name_en
  81. }}</text>
  82. <text class="toptitle" v-if="language == 'es-ES'">{{
  83. goodinfo.name_es
  84. }}</text>
  85. <text class="toptitle" v-if="language == 'it-IT'">{{
  86. goodinfo.name_ita
  87. }}</text>
  88. <view class="weight" v-if="language == 'zh-CN'">{{ sku_info.item }} </view>
  89. <view class="weight" v-if="language == 'en-US'">{{ sku_info.item_en }} </view>
  90. <view class="weight" v-if="language == 'es-ES'">{{ sku_info.item_es }} </view>
  91. <view class="weight" v-if="language == 'it-IT'">{{ sku_info.item_ita }} </view>
  92. <!-- <view class="">{{Number(sku_info.weight)*value}}kg</view> -->
  93. </view>
  94. <view class="u-flex u-row-between">
  95. <view class="">
  96. <text class="money">¥</text>
  97. <text class="money" style="font-size: 34rpx">{{
  98. goodinfo.is_discount == 1
  99. ? (Number(sku_info.price * 1000) * Number(value * 1000)) /
  100. 1000000
  101. : (Number(sku_info.discount_price * 1000) *
  102. Number(value) *
  103. 1000) /
  104. 1000000
  105. }}</text>
  106. </view>
  107. <!-- <u-number-box @change="valChange" v-model="value">
  108. <view slot="minus" class="">
  109. <u-icon name="minus" size="12"></u-icon>
  110. </view>
  111. <input slot="input" v-model="value" style="width: 40px; text-align: center"
  112. class="input" />
  113. <view slot="plus" class="">
  114. <u-icon name="plus" size="12"></u-icon>
  115. </view>
  116. </u-number-box> -->
  117. <view class="">x{{ value }}</view>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. </view>
  123. <!-- 物流 -->
  124. <view class="logistics u-flex u-row-between">
  125. <text style="font-weight: 600; width: 320rpx">{{ i18n.flow }}</text>
  126. <view class="u-flex" @click="changwu">
  127. <text class="change">{{
  128. containname1 ? type1 + " | " + containname1 : i18n.selection
  129. }}</text>
  130. <u-icon name="arrow-right" size="16"></u-icon>
  131. </view>
  132. </view>
  133. <!-- 推荐 -->
  134. <view class="recommend">
  135. <view class="top">
  136. <image v-if="language == 'zh-CN'" src="static/images/recommend.png" style="width: 124rpx; height: 30rpx"
  137. mode=""></image>
  138. <image v-if="language == 'en-US'" src="static/images/recommend1.png"
  139. style="width: 378rpx; height: 30rpx" mode="">
  140. </image>
  141. <image v-if="language == 'es-ES'" src="static/images/recommend2.png"
  142. style="width: 550rpx; height: 30rpx" mode="">
  143. </image>
  144. <image v-if="language == 'it-IT'" src="static/images/recommend3.png"
  145. style="width: 460rpx; height: 30rpx" mode="">
  146. </image>
  147. </view>
  148. <view class="bottom">
  149. <scroll-view scroll-x class="u-flex" style="column: gap 28rpx; display: flex">
  150. <view class="u-flex" style="column-gap: 16rpx">
  151. <view class="" v-for="(item, idx) in swiptlist" :key="idx" @click="todetail(item.id)">
  152. <image :src="item.image" style="width: 156rpx; height: 156rpx" mode="">
  153. </image>
  154. <view class="title" v-if="language == 'zh-CN'">
  155. {{ item.name_cn }}
  156. </view>
  157. <view class="title" v-if="language == 'en-US'">
  158. {{ item.name_en }}
  159. </view>
  160. <view class="title" v-if="language == 'es-ES'">
  161. {{ item.name_es }}
  162. </view>
  163. <view class="title" v-if="language == 'it-IT'">
  164. {{ item.name_ita }}
  165. </view>
  166. <view class="money" style="color: #f83224; font-size: 20rpx">
  167. <text>¥</text>
  168. <text style="font-size: 28rpx">{{
  169. item.is_discount == 0
  170. ? item.discount_price.slice(0, -3)
  171. : item.price.slice(0, -3)
  172. }}</text>
  173. <text>{{
  174. item.is_discount == 0
  175. ? item.discount_price.slice(-3)
  176. : item.price.slice(-3)
  177. }}</text>
  178. </view>
  179. </view>
  180. </view>
  181. </scroll-view>
  182. </view>
  183. </view>
  184. <!-- 商品相关 -->
  185. <view class="abount" style="margin-top: 20rpx">
  186. <view class="u-flex u-row-between" style="margin-bottom: 40rpx">
  187. <view class="name">{{ i18n.Commodityamount }}</view>
  188. <view class="" v-if="typea == 'shop'">{{ goodsPrice }}</view>
  189. <view class="money" v-else>
  190. ¥{{
  191. goodinfo.is_discount == 1
  192. ? (Number(sku_info.price * 100) * Number(value * 100)) / 10000
  193. : (Number(sku_info.discount_price * 100) * Number(value * 100)) /
  194. 10000
  195. }}
  196. </view>
  197. </view>
  198. <view class="u-flex u-row-between" v-show="containname1">
  199. <view class="name">{{ i18n.Grosscommodityweight }}</view>
  200. <!-- <view class="money" v-if="typea=='shop'">{{
  201. goodsWeight
  202. }}kg</view> -->
  203. <!-- <view class="money" v-else>{{Number(sku_info.weight)*value}}kg</view> -->
  204. <view class="money">{{ weight_total }}</view>
  205. </view>
  206. <!-- <view class="back u-flex" v-if="containname1">
  207. <image src="static/images/warning.png" style="width: 32rpx; height: 32rpx" mode=""></image>
  208. <text
  209. style="margin-left: 12rpx; font-size: 24rpx">{{ i18n.buy }}{{ recommend_weight }}kg{{ i18n.price }}¥{{
  210. unit_fee
  211. }},{{ i18n.morefavorable }}</text>
  212. </view> -->
  213. <view class="u-flex u-row-between" style="margin-bottom: 40rpx; margin-top: 20rpx">
  214. <view class="name">{{ i18n.Costperkilogram }}</view>
  215. <view class="money">{{
  216. containname1 ? unit_price : i18n.shippingmethod
  217. }}</view>
  218. </view>
  219. <view class="u-flex u-row-between">
  220. <view class="name">{{ i18n.freight }}</view>
  221. <view class="money">{{
  222. containname1 ? sum : i18n.shippingmethod
  223. }}</view>
  224. </view>
  225. <view class="zong u-flex u-row-right">
  226. <view class="">
  227. <text class="small">{{ i18n.subtotal }}</text>
  228. <text class="mon">¥</text>
  229. <text class="mon" v-if="typea == 'shop'">{{ goodsPrice }}</text>
  230. <text class="mon" v-else style="font-size: 40rpx">{{
  231. goodinfo.is_discount == 1
  232. ? (Number(sku_info.price * 100) * Number(value * 100)) / 10000
  233. : (Number(sku_info.discount_price * 100) * Number(value * 100)) /
  234. 10000
  235. }}</text>
  236. </view>
  237. </view>
  238. </view>
  239. <view class="" style="height: 166rpx"></view>
  240. <view class="btn u-flex u-row-right">
  241. <view class="u-flex">
  242. <!-- <text v-if="typea == 'shop'">{{i18n.Atotalof}}{{goodsWeight}}kg,</text>
  243. <text v-else class="kg">{{i18n.Atotalof}}{{Number(sku_info.weight) * value}}kg,</text> -->
  244. <text class="kg" v-show="containname1">{{ i18n.Atotalof }}{{ weight_total }}kg,</text>
  245. <text>{{ i18n.total }}:</text>
  246. <text class="money" style="font-size: 28rpx">¥</text>
  247. <text style="font-weight: bold" class="money" v-if="typea == 'shop'">{{
  248. Number(sum * 10000 + Number(goodsPrice) * 10000) / 10000
  249. }}</text>
  250. <view class="" v-else>
  251. <text class="money" v-if="goodinfo.is_discount == 1" style="font-weight: bold">{{
  252. Number(
  253. sum * 10000 + Number(sku_info.price) * Number(value) * 10000
  254. ) / 10000
  255. }}</text>
  256. <text class="money" v-if="goodinfo.is_discount == 0" style="font-weight: bold">{{
  257. Number(
  258. sum * 10000 +
  259. Number(sku_info.discount_price) * Number(value) * 10000
  260. ) / 10000
  261. }}</text>
  262. </view>
  263. </view>
  264. <view class="order" @click="topay">
  265. {{ i18n.Submitorder }}
  266. </view>
  267. </view>
  268. <!-- 跨境物流 -->
  269. <u-popup :show="show" @close="close" mode="bottom" closeIconPos="top-right" round="28">
  270. <view style="padding: 40rpx 28rpx; box-sizing: border-box">
  271. <view class="u-flex u-row-between">
  272. <view class="" style="width: 28px; height: 28px"></view>
  273. <view class="poptitle">
  274. {{ i18n.flow }}
  275. </view>
  276. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  277. </view>
  278. <view class="u-flex" style="margin-top: 60rpx; flex-wrap: wrap; column-gap: 16rpx">
  279. <view :class="index == idx ? 'active' : 'unactive'" v-for="(item, idx) in containerList"
  280. @click="change(item, idx)" style="
  281. display: flex;
  282. flex-direction: column;
  283. align-items: center;
  284. justify-content: center;
  285. margin-bottom: 28rpx;
  286. position: relative;
  287. ">
  288. <image v-if="index == idx" src="static/images/change.png" style="
  289. width: 36rpx;
  290. height: 32rpx;
  291. position: absolute;
  292. top: 0;
  293. right: 0;
  294. " mode=""></image>
  295. <view class="logname" v-if="language == 'zh-CN'">{{
  296. item.name_cn
  297. }}</view>
  298. <view class="logname" v-if="language == 'en-US'">{{
  299. item.name_en
  300. }}</view>
  301. <view class="logname" v-if="language == 'es-ES'">{{
  302. item.name_es
  303. }}</view>
  304. <view class="logname" v-if="language == 'it-IT'">{{
  305. item.name_ita
  306. }}</view>
  307. <!-- <view class="wei">¥{{goodinfo.cate==0?item.normal_delivery_fee:item.special_delivery_fee}}/kg</view> -->
  308. <view class="wei" style="font-size: 32rpx; font-weight: 600">¥{{ item.unit_price }}/kg</view>
  309. </view>
  310. </view>
  311. <view class="nextto" @click="next">{{ i18n.next }}</view>
  312. </view>
  313. </u-popup>
  314. <!-- 跨境物流下一步 -->
  315. <u-popup :safeAreaInsetTop="true" :show="show1" @close="close" mode="bottom" closeIconPos="top-right" round="28"
  316. bgColor="#F4F4F4">
  317. <view style="padding: 40rpx 28rpx; box-sizing: border-box; position: relative">
  318. <view class="u-flex u-row-between">
  319. <view class="" style="width: 28px; height: 28px"></view>
  320. <view class="poptitle">
  321. {{ i18n.flow }}
  322. </view>
  323. <u-icon name="close" @click="close" color="background: #333333;" size="28"></u-icon>
  324. </view>
  325. <scroll-view :scroll-y="true" style="500rpx">
  326. <view class="transport" style="margin-top: 32rpx" @click="activea(item, idx)"
  327. v-for="(item, idx) in containlist" v-if="item.sum != 0">
  328. <view class="u-flex u-row-between">
  329. <text class="yundate">{{ i18n.Shipmentdate }} {{ item.end_date }}</text>
  330. <image v-if="datechan == idx" src="/pageA/static/images/active.png"
  331. style="width: 36rpx; height: 36rpx" mode=""></image>
  332. <image v-else src="/pageA/static/images/unactive.png" style="width: 36rpx; height: 36rpx"
  333. mode=""></image>
  334. </view>
  335. <view class="u-flex u-row-between" style="margin-top: 28rpx">
  336. <view class="chest">
  337. <text v-if="language == 'zh-CN'">{{ item.name_cn }}</text>
  338. <text v-if="language == 'en-US'">{{ item.name_en }}</text>
  339. <text v-if="language == 'es-ES'">{{ item.name_es }}</text>
  340. <text v-if="language == 'it-IT'">{{ item.name_ita }}</text>
  341. <text style="margin: 0 16rpx">|</text>
  342. <text>{{ i18n.Estimatedtimeofarrival }}{{ item.transport_days
  343. }}{{ i18n.Workingday }}</text>
  344. </view>
  345. <view class="mone">
  346. <text>¥</text>
  347. <text style="font-size: 48rpx; font-weight: 600">{{
  348. item.sum
  349. }}</text>
  350. </view>
  351. </view>
  352. </view>
  353. </scroll-view>
  354. <view class="" style="height: 166rpx"></view>
  355. <view class="enbottom u-flex u-row-between">
  356. <view class="cancel" @click="close">{{ i18n.Cancel }}</view>
  357. <view class="confirm" @click="confirm">{{ i18n.enter }}</view>
  358. </view>
  359. </view>
  360. </u-popup>
  361. </view>
  362. </template>
  363. <script>
  364. export default {
  365. data() {
  366. return {
  367. value: 1,
  368. show: false,
  369. index: "",
  370. show1: false,
  371. datechan: "",
  372. sku_info: {},
  373. goodinfo: {},
  374. swiptlist: [], //推荐列表
  375. language: "zh-CN",
  376. containerList: [], //列表
  377. province_id: "",
  378. country_id:'',
  379. transport_type_id: "",
  380. containlist: [],
  381. containid: "", //货柜id
  382. containname: "", //货柜名称
  383. type: "", //货运方式名称
  384. containname1: "",
  385. type1: "",
  386. sum: "",
  387. unit_price: "",
  388. recommend_weight: "",
  389. sum1: "",
  390. unit_price1: "",
  391. recommend_weight1: "",
  392. max_weight: "",
  393. min_weight: "",
  394. unit_fee: "",
  395. addinfo: "",
  396. huoid: "",
  397. selelist: [],
  398. typea: "",
  399. goodsPrice: "",
  400. goodsWeight: "",
  401. stringcheck: "",
  402. cartid: "",
  403. weight_total: "",
  404. valuenum: false,
  405. };
  406. },
  407. computed: {
  408. i18n() {
  409. return this.$t("index");
  410. },
  411. },
  412. onLoad(options) {
  413. // url: '/pageA/order?sku=' + this.sku_info + '&value=' + this.value+'&goodinfo='+this.goodinfo
  414. if (options.typea) {
  415. this.typea = options.typea;
  416. this.selelist = JSON.parse(decodeURIComponent(options.selelist));
  417. console.log(this.selelist);
  418. this.goodsPrice = options.goodsPrice;
  419. this.goodsWeight = options.goodsWeight;
  420. this.stringcheck = options.stringcheck;
  421. this.cartid = options.cartid;
  422. console.log(this.cartid);
  423. } else if (options) {
  424. this.value = options.value;
  425. this.sku_info = JSON.parse(decodeURIComponent(options.sku));
  426. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo));
  427. if (options.share_merchant_id) {
  428. this.share_merchant_id = options.share_merchant_id;
  429. }
  430. }
  431. },
  432. onShow() {
  433. if (uni.getStorageSync("language") != "") {
  434. this.language = uni.getStorageSync("language");
  435. }
  436. this.recommend();
  437. // this.container()
  438. },
  439. methods: {
  440. changwu() {
  441. if (this.addinfo) {
  442. this.show = true;
  443. } else {
  444. this.$u.toast(this.i18n.shippingaddress);
  445. }
  446. },
  447. valChange() {
  448. this.valuenum = true;
  449. },
  450. todetail(id) {
  451. uni.navigateTo({
  452. url: "/pageA/productdetails?id=" + id,
  453. });
  454. },
  455. //正则匹配手机号
  456. replacePhoneToStar: function(phone) {
  457. if (phone) {
  458. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  459. }
  460. },
  461. //推荐重量
  462. recommendweight() {
  463. uni.$u.http
  464. .get("/api/express-order/recommend-container", {
  465. params: {
  466. container_id: this.containid,
  467. type: this.goodinfo.cate == 0 ? "normal" : "special",
  468. },
  469. })
  470. .then((res) => {
  471. console.log(res);
  472. this.max_weight = res.max_weight;
  473. this.min_weight = res.min_weight;
  474. this.unit_fee = res.unit_fee;
  475. })
  476. .catch(() => {});
  477. },
  478. //货运类型列表
  479. transport() {
  480. uni.$u.http
  481. .get("/api/transport-type", {
  482. params: {
  483. province_id: this.province_id,
  484. country_id:this.country_id
  485. },
  486. })
  487. .then((res) => {
  488. this.containerList = res;
  489. this.transport_type_id = res[0].id;
  490. if (this.language == "zh-CN") {
  491. this.type = res[0].name_cn;
  492. }
  493. if (this.language == "en-US") {
  494. this.type = res[0].name_en;
  495. }
  496. if (this.language == "es-ES") {
  497. this.type = res[0].name_es;
  498. }
  499. if (this.language == "it-IT") {
  500. this.type = res[0].name_ita;
  501. }
  502. })
  503. .catch(() => {});
  504. },
  505. //跳转到填写地址
  506. toadd() {
  507. var that = this;
  508. uni.navigateTo({
  509. url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
  510. events: {
  511. getadd(res) {
  512. that.addinfo = res;
  513. that.province_id = res.province_id;
  514. that.country_id = res.country_id
  515. that.transport();
  516. },
  517. },
  518. });
  519. },
  520. //计算运费
  521. calculate(){
  522. uni.$u.http
  523. .post("/api/order/calculate", {
  524. address_id: this.addinfo.id, //3 是 String 地址ID
  525. goods_id: this.goodinfo.id, //65 是 String 商品id
  526. goods_num: this.value, //2 是 String 商品数量
  527. sku_item_id: this.sku_info.id, //60 是 String 规格id
  528. cart_ids: this.stringcheck, //8,9 是 String 购物车id
  529. remark: "", //备注 是 String 备注
  530. merchant_goods_id: this.goodinfo.merchant_goods_id || "", //39 是 String 团长商品id
  531. container_id: this.containid, //1 是 String 货柜id
  532. share_member_id: this.share_merchant_id, // 是 String 分享团长id 分享商品的时候传
  533. belong: this.goodinfo.source || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  534. })
  535. .then((res) => {
  536. this.sum = res.freight
  537. if(this.sum==0){
  538. this.unit_price = 0
  539. }
  540. })
  541. .catch(() => {});
  542. } ,
  543. //货柜列表
  544. container() {
  545. this.containlist = [];
  546. uni.$u.http
  547. .get("/api/container-base", {
  548. params: {
  549. is_page: 0,
  550. province_id: this.province_id,
  551. country_id:this.country_id,
  552. transport_type_id: this.transport_type_id,
  553. weight: this.typea == "shop" ?
  554. "" : Number(this.sku_info.weight) * this.value,
  555. type: this.typea == "shop" ?
  556. "" : this.goodinfo.cate == 0 ?
  557. "normal" : "special",
  558. length: this.typea == "shop" ?
  559. "" : Number(this.sku_info.length) * this.value, // 是 String 长
  560. width: this.sku_info.width, // 是 String 宽
  561. height: this.sku_info.height, // 是 String 高
  562. cart_id: this.cartid,
  563. // cart_id: '147,148'
  564. },
  565. })
  566. .then((res) => {
  567. res.forEach((item) => {
  568. if (item.sum != 0) {
  569. this.containlist.push(item);
  570. }
  571. console.log(this.containlist);
  572. });
  573. if (this.cartid.length == 0 && this.typea == "shop") {
  574. console.log("his.cartid.length", this.cartid.length);
  575. this.sum = 0;
  576. }
  577. // this.sum = this.containlist[0].sum
  578. // this.unit_price = this.containlist[0].unit_price
  579. if (this.goodinfo.is_shipping == 0) {
  580. this.sum = 0;
  581. } else {
  582. this.sum = this.containlist[0].sum;
  583. }
  584. if (this.goodinfo.is_shipping == 0) {
  585. this.unit_price = 0;
  586. } else {
  587. this.unit_price = this.containlist[0].unit_price;
  588. }
  589. this.recommend_weight = this.containlist[0].recommend_weight;
  590. this.weight_total = this.containlist[0].weight_total;
  591. this.containid = this.containlist[0].id;
  592. if(this.typea == "shop"){
  593. this.calculate()
  594. }
  595. if (this.language == "zh-CN") {
  596. this.containname = this.containlist[0].name_cn;
  597. }
  598. if (this.language == "en-US") {
  599. this.containname = this.containlist[0].name_en;
  600. }
  601. if (this.language == "es-ES") {
  602. this.containname = this.containlist[0].name_es;
  603. }
  604. if (this.language == "it-IT") {
  605. this.containname = this.containlist[0].name_ita;
  606. }
  607. })
  608. .catch(() => {});
  609. },
  610. //运费满减
  611. config() {
  612. var that = this;
  613. uni.$u.http
  614. .get("/api/config", {
  615. params: {
  616. module: "free_shipping",
  617. },
  618. })
  619. .then((res) => {
  620. if (
  621. Number(that.goodsPrice) > res.free_shipping &&
  622. that.typea == "shop"
  623. ) {
  624. console.log("goodsPrice", that.goodsPrice);
  625. console.log("res.free_shipping", res.free_shipping);
  626. that.sum = 0;
  627. that.unit_price = 0;
  628. }
  629. let goodsum = "";
  630. if (that.goodinfo.is_discount == 1) {
  631. goodsum =
  632. (Number(that.sku_info.price * 100) * Number(that.value * 100)) /
  633. 10000;
  634. console.log("that.sum", that.sum);
  635. console.log("that.goodsum", goodsum);
  636. if (goodsum > res.free_shipping) {
  637. that.sum = 0;
  638. that.unit_price = 0;
  639. }
  640. } else {
  641. goodsum =
  642. (Number(that.sku_info.discount_price * 100) *
  643. Number(that.value * 100)) /
  644. 10000;
  645. if (goodsum > res.free_shipping) {
  646. that.sum = 0;
  647. that.unit_price = 0;
  648. }
  649. }
  650. })
  651. .catch(() => {});
  652. },
  653. //商品推荐
  654. recommend() {
  655. uni.$u.http
  656. .post("/api/goods/recommend", {
  657. keyword: "",
  658. })
  659. .then((res) => {
  660. this.swiptlist = res;
  661. })
  662. .catch(() => {});
  663. },
  664. change(item, index) {
  665. this.transport_type_id = item.id;
  666. this.index = index;
  667. if (this.language == "zh-CN") {
  668. this.type = item.name_cn;
  669. }
  670. if (this.language == "en-US") {
  671. this.type = item.name_en;
  672. }
  673. if (this.language == "es-ES") {
  674. this.type = item.name_es;
  675. }
  676. if (this.language == "it-IT") {
  677. this.type = item.name_ita;
  678. }
  679. },
  680. next() {
  681. this.show = false;
  682. this.show1 = true;
  683. this.type1 = this.type;
  684. this.container();
  685. },
  686. activea(item, idx) {
  687. this.datechan = idx;
  688. this.sum = item.sum;
  689. this.unit_price = item.unit_price;
  690. this.recommend_weight = item.recommend_weight;
  691. this.containid = item.id;
  692. this.weight_total = item.weight_total;
  693. if (this.language == "zh-CN") {
  694. this.containname = item.name_cn;
  695. }
  696. if (this.language == "en-US") {
  697. this.containname = item.name_en;
  698. }
  699. if (this.language == "es-ES") {
  700. this.containname = item.name_es;
  701. }
  702. if (this.language == "it-IT") {
  703. this.containname = item.name_ita;
  704. }
  705. },
  706. //确定
  707. confirm() {
  708. this.valuenum = false;
  709. this.show1 = false;
  710. this.containname1 = this.containname;
  711. this.recommendweight();
  712. this.config();
  713. },
  714. // 取消
  715. close() {
  716. this.show = false;
  717. this.show1 = false;
  718. },
  719. //提交订单
  720. topay() {
  721. if (this.valuenum) {
  722. this.$u.toast(this.i18n.newcontainer);
  723. } else {
  724. uni.$u.http
  725. .post("/api/order", {
  726. address_id: this.addinfo.id, //3 是 String 地址ID
  727. goods_id: this.goodinfo.id, //65 是 String 商品id
  728. goods_num: this.value, //2 是 String 商品数量
  729. sku_item_id: this.sku_info.id, //60 是 String 规格id
  730. cart_ids: this.stringcheck, //8,9 是 String 购物车id
  731. remark: "", //备注 是 String 备注
  732. merchant_goods_id: this.goodinfo.merchant_goods_id || "", //39 是 String 团长商品id
  733. container_id: this.containid, //1 是 String 货柜id
  734. share_member_id: this.share_merchant_id, // 是 String 分享团长id 分享商品的时候传
  735. belong: this.goodinfo.source || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  736. })
  737. .then((res) => {
  738. console.log("share_merchant_id", this.share_merchant_id);
  739. console.log(res);
  740. uni.navigateTo({
  741. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  742. url: "/pageA/payorder?orderid=" + res.id + "&sum=" + res.amount,
  743. });
  744. })
  745. .catch(() => {});
  746. }
  747. },
  748. },
  749. };
  750. </script>
  751. <style lang="scss" scoped>
  752. .toptitle {
  753. font-family: PingFangSC, PingFang SC;
  754. font-weight: 400;
  755. // font-size: 22rpx;
  756. color: #222222;
  757. line-height: 32rpx;
  758. text-align: left;
  759. font-style: normal;
  760. // width: 148rpx;
  761. width: 100%;
  762. overflow: hidden;
  763. text-overflow: ellipsis;
  764. -webkit-line-clamp: 1;
  765. display: -webkit-box;
  766. -webkit-box-orient: vertical;
  767. word-break: break-all;
  768. }
  769. ::v-deep .u-status-bar {
  770. height: 0 !important;
  771. }
  772. .confirm {
  773. width: 398rpx;
  774. height: 84rpx;
  775. background: #f83224;
  776. border-radius: 42rpx;
  777. text-align: center;
  778. font-family: PingFangSC, PingFang SC;
  779. font-weight: 500;
  780. font-size: 32rpx;
  781. color: #ffffff;
  782. line-height: 84rpx;
  783. text-align: center;
  784. font-style: normal;
  785. }
  786. .cancel {
  787. width: 280rpx;
  788. height: 84rpx;
  789. border-radius: 42rpx;
  790. border: 2rpx solid rgba(151, 151, 151, 0.3);
  791. font-family: PingFangSC, PingFang SC;
  792. font-weight: 400;
  793. font-size: 32rpx;
  794. color: #444444;
  795. line-height: 84rpx;
  796. text-align: center;
  797. font-style: normal;
  798. }
  799. .enbottom {
  800. width: 750rpx;
  801. height: 166rpx;
  802. background: #ffffff;
  803. position: absolute;
  804. left: 0rpx;
  805. bottom: 0;
  806. padding: 0 24rpx;
  807. box-sizing: border-box;
  808. }
  809. .mone {
  810. font-family: JDZhengHT, JDZhengHT;
  811. font-weight: 400;
  812. font-size: 26rpx;
  813. color: #f83224;
  814. line-height: 32rpx;
  815. text-align: left;
  816. font-style: normal;
  817. }
  818. .yundate {
  819. font-family: PingFangSC, PingFang SC;
  820. font-weight: 550;
  821. font-size: 32rpx;
  822. color: #333333;
  823. line-height: 44rpx;
  824. text-align: left;
  825. font-style: normal;
  826. }
  827. .chest {
  828. font-family: SFPro, SFPro;
  829. font-weight: 400;
  830. font-size: 24rpx;
  831. color: #555555;
  832. line-height: 28rpx;
  833. text-align: left;
  834. font-style: normal;
  835. }
  836. .act {
  837. width: 702rpx;
  838. height: 164rpx;
  839. background: #ffffff;
  840. border-radius: 12rpx;
  841. padding: 24rpx 20rpx;
  842. box-sizing: border-box;
  843. border: 1rpx solid #f83224;
  844. }
  845. .transport {
  846. width: 702rpx;
  847. height: 164rpx;
  848. background: #ffffff;
  849. border-radius: 12rpx;
  850. padding: 24rpx 20rpx;
  851. box-sizing: border-box;
  852. }
  853. .nextto {
  854. width: 702rpx;
  855. height: 84rpx;
  856. background: #f83224;
  857. border-radius: 44rpx;
  858. font-family: PingFangSC, PingFang SC;
  859. font-weight: 500;
  860. font-size: 32rpx;
  861. color: #ffffff;
  862. line-height: 84rpx;
  863. text-align: center;
  864. font-style: normal;
  865. margin-top: 108rpx;
  866. }
  867. .logname {
  868. font-family: PingFangSC, PingFang SC;
  869. font-weight: 400;
  870. font-size: 28rpx;
  871. color: #333333;
  872. line-height: 40rpx;
  873. text-align: right;
  874. font-style: normal;
  875. overflow: hidden;
  876. width: 220rpx;
  877. white-space: nowrap;
  878. text-overflow: ellipsis;
  879. text-align: center;
  880. word-break: break-all;
  881. }
  882. .wei {
  883. font-family: JDZhengHT, JDZhengHT;
  884. font-weight: 400;
  885. font-size: 32rpx;
  886. color: #f83224;
  887. line-height: 40rpx;
  888. text-align: right;
  889. font-style: normal;
  890. margin-top: 8rpx;
  891. }
  892. .active {
  893. width: 218rpx;
  894. height: 148rpx;
  895. background: rgba(247, 50, 36, 0.05);
  896. border-radius: 8rpx;
  897. border: 1rpx solid #f83224;
  898. }
  899. .unactive {
  900. width: 218rpx;
  901. height: 148rpx;
  902. border-radius: 12rpx;
  903. border: 1rpx solid #c3c3c3;
  904. }
  905. .poptitle {
  906. width: 142rpx;
  907. height: 50rpx;
  908. font-family: PingFangSC, PingFang SC;
  909. font-weight: 600;
  910. font-size: 36rpx;
  911. color: #333333;
  912. text-align: center;
  913. width: 100%;
  914. }
  915. .back {
  916. background: rgba(244, 244, 244, 1);
  917. padding: 20rpx 24rpx;
  918. box-sizing: border-box;
  919. .btn {
  920. width: 750rpx;
  921. height: 166rpx;
  922. background: #ffffff;
  923. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  924. position: fixed;
  925. bottom: 0;
  926. left: 0;
  927. padding: 0 24rpx 5rpx 5rpx;
  928. box-sizing: border-box;
  929. .money {
  930. font-family: HarmonyOS_Sans_Medium;
  931. font-size: 48rpx;
  932. color: #f83224;
  933. line-height: 38rpx;
  934. text-align: left;
  935. font-style: normal;
  936. // font-weight: 500;
  937. font-weight: bold;
  938. }
  939. .kg {
  940. font-family: PingFangSC, PingFang SC;
  941. font-weight: 400;
  942. font-size: 24rpx;
  943. color: #333333;
  944. line-height: 34rpx;
  945. text-align: left;
  946. font-style: normal;
  947. }
  948. .order {
  949. width: 232rpx;
  950. height: 80rpx;
  951. background: #f83224;
  952. border-radius: 40rpx;
  953. font-family: PingFangTC, PingFangTC;
  954. font-weight: 500;
  955. font-size: 32rpx;
  956. color: #ffffff;
  957. line-height: 80rpx;
  958. text-align: center;
  959. font-style: normal;
  960. margin-left: 20rpx;
  961. }
  962. }
  963. //商品相关
  964. .abount {
  965. padding: 28rpx 24rpx;
  966. box-sizing: border-box;
  967. background: #ffffff;
  968. border-radius: 16rpx;
  969. width: 702rpx;
  970. .zong {
  971. width: 654rpx;
  972. padding: 22rpx 0 0 0;
  973. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  974. margin-top: 32rpx;
  975. .small {
  976. font-family: PingFangTC, PingFangTC;
  977. font-weight: 400;
  978. font-size: 24rpx;
  979. color: #444444;
  980. line-height: 34rpx;
  981. text-align: left;
  982. font-style: normal;
  983. }
  984. .mon {
  985. font-family: HarmonyOS_Sans_Medium;
  986. font-size: 28rpx;
  987. color: #f83224;
  988. line-height: 38rpx;
  989. text-align: left;
  990. font-style: normal;
  991. margin-left: 12rpx;
  992. font-weight: bold;
  993. }
  994. }
  995. .back {
  996. background: rgba(244, 244, 244, 1);
  997. padding: 22rpx 16rpx;
  998. box-sizing: border-box;
  999. margin-top: 10rpx;
  1000. // margin-bottom: 20rpx;
  1001. }
  1002. .name {
  1003. font-family: PingFangSC, PingFang SC;
  1004. font-weight: 400;
  1005. font-size: 28rpx;
  1006. color: #333333;
  1007. line-height: 40rpx;
  1008. text-align: left;
  1009. font-style: normal;
  1010. }
  1011. .money {
  1012. font-family: HarmonyOS_Sans_Medium;
  1013. font-size: 28rpx;
  1014. color: #222222;
  1015. line-height: 38rpx;
  1016. text-align: left;
  1017. font-style: normal;
  1018. font-weight: 600;
  1019. }
  1020. }
  1021. .recommend {
  1022. margin-top: 20rpx;
  1023. .title {
  1024. font-family: PingFangSC, PingFang SC;
  1025. font-weight: 400;
  1026. font-size: 22rpx;
  1027. color: #222222;
  1028. line-height: 32rpx;
  1029. text-align: left;
  1030. font-style: normal;
  1031. width: 148rpx;
  1032. height: 64rpx;
  1033. overflow: hidden;
  1034. text-overflow: ellipsis;
  1035. -webkit-line-clamp: 2;
  1036. display: -webkit-box;
  1037. -webkit-box-orient: vertical;
  1038. word-break: break-all;
  1039. }
  1040. .top {
  1041. width: 702rpx;
  1042. height: 64rpx;
  1043. background: linear-gradient(180deg,
  1044. #ffe7e3 0%,
  1045. rgba(255, 255, 255, 1) 100%);
  1046. border-radius: 16rpx 16rpx 0 0;
  1047. padding: 24rpx 22rpx;
  1048. box-sizing: border-box;
  1049. }
  1050. .bottom {
  1051. padding: 0 20rpx 22rpx;
  1052. box-sizing: border-box;
  1053. background: #fff;
  1054. }
  1055. }
  1056. //物流
  1057. .logistics {
  1058. width: 702rpx;
  1059. // height: 96rpx;
  1060. background: #ffffff;
  1061. border-radius: 16rpx;
  1062. padding: 28rpx 22rpx;
  1063. box-sizing: border-box;
  1064. margin-top: 20rpx;
  1065. .change {
  1066. font-family: PingFangSC, PingFang SC;
  1067. font-weight: 400;
  1068. font-size: 28rpx;
  1069. color: #f83224;
  1070. line-height: 40rpx;
  1071. text-align: left;
  1072. font-style: normal;
  1073. margin-right: 8rpx;
  1074. }
  1075. }
  1076. //商城
  1077. .shop {
  1078. width: 702rpx;
  1079. // height: 322rpx;
  1080. background: #ffffff;
  1081. border-radius: 16rpx;
  1082. padding: 30rpx 24rpx;
  1083. margin-top: 20rpx;
  1084. box-sizing: border-box;
  1085. .bu {
  1086. width: 120rpx;
  1087. height: 40rpx;
  1088. border-radius: 20rpx;
  1089. border: 1rpx solid rgba(151, 151, 151, 0.3);
  1090. }
  1091. .money {
  1092. font-family: HarmonyOS_Sans_Medium;
  1093. font-size: 24rpx;
  1094. color: #f83224;
  1095. line-height: 34rpx;
  1096. text-align: left;
  1097. font-style: normal;
  1098. font-weight: 600;
  1099. }
  1100. .name {
  1101. font-family: PingFangSC, PingFang SC;
  1102. font-weight: 400;
  1103. font-size: 30rpx;
  1104. color: #222222;
  1105. line-height: 42rpx;
  1106. text-align: left;
  1107. font-style: normal;
  1108. margin-left: 10rpx;
  1109. }
  1110. .weight {
  1111. font-family: PingFangSC, PingFang SC;
  1112. font-weight: 400;
  1113. font-size: 24rpx;
  1114. color: rgba(34, 34, 34, 0.6);
  1115. line-height: 34rpx;
  1116. text-align: left;
  1117. font-style: normal;
  1118. margin-top: 16rpx;
  1119. }
  1120. }
  1121. // 地址
  1122. .address {
  1123. width: 702rpx;
  1124. // height: 182rpx;
  1125. background: #ffffff;
  1126. border-radius: 16rpx;
  1127. padding: 32rpx 24rpx;
  1128. box-sizing: border-box;
  1129. .add {
  1130. font-family: SFPro, SFPro;
  1131. font-weight: 500;
  1132. font-size: 32rpx;
  1133. color: #222222;
  1134. line-height: 36rpx;
  1135. text-align: left;
  1136. font-style: normal;
  1137. }
  1138. .info {
  1139. font-family: SFPro, SFPro;
  1140. font-weight: 400;
  1141. font-size: 24rpx;
  1142. color: #555555;
  1143. line-height: 28rpx;
  1144. text-align: left;
  1145. font-style: normal;
  1146. margin-top: 20rpx;
  1147. }
  1148. }
  1149. }
  1150. .minus {
  1151. width: 22px;
  1152. height: 22px;
  1153. border-width: 1px;
  1154. border-color: #e6e6e6;
  1155. border-style: solid;
  1156. border-top-left-radius: 100px;
  1157. border-top-right-radius: 100px;
  1158. border-bottom-left-radius: 100px;
  1159. border-bottom-right-radius: 100px;
  1160. @include flex;
  1161. justify-content: center;
  1162. align-items: center;
  1163. }
  1164. .input {
  1165. padding: 0 10px;
  1166. }
  1167. .plus {
  1168. width: 22px;
  1169. height: 22px;
  1170. background-color: #ff0000;
  1171. border-radius: 50%;
  1172. /* #ifndef APP-NVUE */
  1173. display: flex;
  1174. /* #endif */
  1175. justify-content: center;
  1176. align-items: center;
  1177. }
  1178. </style>