order.vue 32 KB

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