order.vue 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194
  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. transport_type_id: "",
  379. containlist: [],
  380. containid: "", //货柜id
  381. containname: "", //货柜名称
  382. type: "", //货运方式名称
  383. containname1: "",
  384. type1: "",
  385. sum: "",
  386. unit_price: "",
  387. recommend_weight: "",
  388. sum1: "",
  389. unit_price1: "",
  390. recommend_weight1: "",
  391. max_weight: "",
  392. min_weight: "",
  393. unit_fee: "",
  394. addinfo: "",
  395. huoid: "",
  396. selelist: [],
  397. typea: "",
  398. goodsPrice: "",
  399. goodsWeight: "",
  400. stringcheck: "",
  401. cartid: "",
  402. weight_total: "",
  403. valuenum: false,
  404. };
  405. },
  406. computed: {
  407. i18n() {
  408. return this.$t("index");
  409. },
  410. },
  411. onLoad(options) {
  412. // url: '/pageA/order?sku=' + this.sku_info + '&value=' + this.value+'&goodinfo='+this.goodinfo
  413. if (options.typea) {
  414. this.typea = options.typea;
  415. this.selelist = JSON.parse(decodeURIComponent(options.selelist));
  416. console.log(this.selelist);
  417. this.goodsPrice = options.goodsPrice;
  418. this.goodsWeight = options.goodsWeight;
  419. this.stringcheck = options.stringcheck;
  420. this.cartid = options.cartid;
  421. console.log(this.cartid);
  422. } else if (options) {
  423. this.value = options.value;
  424. this.sku_info = JSON.parse(decodeURIComponent(options.sku));
  425. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo));
  426. if (options.share_merchant_id) {
  427. this.share_merchant_id = options.share_merchant_id;
  428. }
  429. }
  430. },
  431. onShow() {
  432. if (uni.getStorageSync("language") != "") {
  433. this.language = uni.getStorageSync("language");
  434. }
  435. this.recommend();
  436. // this.container()
  437. },
  438. methods: {
  439. changwu() {
  440. if (this.addinfo) {
  441. this.show = true;
  442. } else {
  443. this.$u.toast(this.i18n.shippingaddress);
  444. }
  445. },
  446. valChange() {
  447. this.valuenum = true;
  448. },
  449. todetail(id) {
  450. uni.navigateTo({
  451. url: "/pageA/productdetails?id=" + id,
  452. });
  453. },
  454. //正则匹配手机号
  455. replacePhoneToStar: function(phone) {
  456. if (phone) {
  457. return phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2");
  458. }
  459. },
  460. //推荐重量
  461. recommendweight() {
  462. uni.$u.http
  463. .get("/api/express-order/recommend-container", {
  464. params: {
  465. container_id: this.containid,
  466. type: this.goodinfo.cate == 0 ? "normal" : "special",
  467. },
  468. })
  469. .then((res) => {
  470. console.log(res);
  471. this.max_weight = res.max_weight;
  472. this.min_weight = res.min_weight;
  473. this.unit_fee = res.unit_fee;
  474. })
  475. .catch(() => {});
  476. },
  477. //货运类型列表
  478. transport() {
  479. uni.$u.http
  480. .get("/api/transport-type", {
  481. params: {
  482. province_id: this.province_id,
  483. },
  484. })
  485. .then((res) => {
  486. this.containerList = res;
  487. this.transport_type_id = res[0].id;
  488. if (this.language == "zh-CN") {
  489. this.type = res[0].name_cn;
  490. }
  491. if (this.language == "en-US") {
  492. this.type = res[0].name_en;
  493. }
  494. if (this.language == "es-ES") {
  495. this.type = res[0].name_es;
  496. }
  497. if (this.language == "it-IT") {
  498. this.type = res[0].name_ita;
  499. }
  500. })
  501. .catch(() => {});
  502. },
  503. //跳转到填写地址
  504. toadd() {
  505. var that = this;
  506. uni.navigateTo({
  507. url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
  508. events: {
  509. getadd(res) {
  510. that.addinfo = res;
  511. that.province_id = res.province_id;
  512. that.transport();
  513. },
  514. },
  515. });
  516. },
  517. //货柜列表
  518. container() {
  519. this.containlist = [];
  520. uni.$u.http
  521. .get("/api/container-base", {
  522. params: {
  523. is_page: 0,
  524. province_id: this.province_id,
  525. transport_type_id: this.transport_type_id,
  526. weight: this.typea == "shop" ?
  527. "" : Number(this.sku_info.weight) * this.value,
  528. type: this.typea == "shop" ?
  529. "" : this.goodinfo.cate == 0 ?
  530. "normal" : "special",
  531. length: this.typea == "shop" ?
  532. "" : Number(this.sku_info.length) * this.value, // 是 String 长
  533. width: this.sku_info.width, // 是 String 宽
  534. height: this.sku_info.height, // 是 String 高
  535. cart_id: this.cartid,
  536. // cart_id: '147,148'
  537. },
  538. })
  539. .then((res) => {
  540. res.forEach((item) => {
  541. if (item.sum != 0) {
  542. this.containlist.push(item);
  543. }
  544. console.log(this.containlist);
  545. });
  546. if (this.cartid.length == 0 && this.typea == "shop") {
  547. console.log("his.cartid.length", this.cartid.length);
  548. this.sum = 0;
  549. }
  550. // this.sum = this.containlist[0].sum
  551. // this.unit_price = this.containlist[0].unit_price
  552. if (this.goodinfo.is_shipping == 0) {
  553. this.sum = 0;
  554. } else {
  555. this.sum = this.containlist[0].sum;
  556. }
  557. if (this.goodinfo.is_shipping == 0) {
  558. this.unit_price = 0;
  559. } else {
  560. this.unit_price = this.containlist[0].unit_price;
  561. }
  562. this.recommend_weight = this.containlist[0].recommend_weight;
  563. this.weight_total = this.containlist[0].weight_total;
  564. this.containid = this.containlist[0].id;
  565. if (this.language == "zh-CN") {
  566. this.containname = this.containlist[0].name_cn;
  567. }
  568. if (this.language == "en-US") {
  569. this.containname = this.containlist[0].name_en;
  570. }
  571. if (this.language == "es-ES") {
  572. this.containname = this.containlist[0].name_es;
  573. }
  574. if (this.language == "it-IT") {
  575. this.containname = this.containlist[0].name_ita;
  576. }
  577. })
  578. .catch(() => {});
  579. },
  580. //运费满减
  581. config() {
  582. var that = this;
  583. uni.$u.http
  584. .get("/api/config", {
  585. params: {
  586. module: "free_shipping",
  587. },
  588. })
  589. .then((res) => {
  590. if (
  591. Number(that.goodsPrice) > res.free_shipping &&
  592. that.typea == "shop"
  593. ) {
  594. console.log("goodsPrice", that.goodsPrice);
  595. console.log("res.free_shipping", res.free_shipping);
  596. that.sum = 0;
  597. that.unit_price = 0;
  598. }
  599. let goodsum = "";
  600. if (that.goodinfo.is_discount == 1) {
  601. goodsum =
  602. (Number(that.sku_info.price * 100) * Number(that.value * 100)) /
  603. 10000;
  604. console.log("that.sum", that.sum);
  605. console.log("that.goodsum", goodsum);
  606. if (goodsum > res.free_shipping) {
  607. that.sum = 0;
  608. that.unit_price = 0;
  609. }
  610. } else {
  611. goodsum =
  612. (Number(that.sku_info.discount_price * 100) *
  613. Number(that.value * 100)) /
  614. 10000;
  615. if (goodsum > res.free_shipping) {
  616. that.sum = 0;
  617. that.unit_price = 0;
  618. }
  619. }
  620. })
  621. .catch(() => {});
  622. },
  623. //商品推荐
  624. recommend() {
  625. uni.$u.http
  626. .post("/api/goods/recommend", {
  627. keyword: "",
  628. })
  629. .then((res) => {
  630. this.swiptlist = res;
  631. })
  632. .catch(() => {});
  633. },
  634. change(item, index) {
  635. this.transport_type_id = item.id;
  636. this.index = index;
  637. if (this.language == "zh-CN") {
  638. this.type = item.name_cn;
  639. }
  640. if (this.language == "en-US") {
  641. this.type = item.name_en;
  642. }
  643. if (this.language == "es-ES") {
  644. this.type = item.name_es;
  645. }
  646. if (this.language == "it-IT") {
  647. this.type = item.name_ita;
  648. }
  649. },
  650. next() {
  651. this.show = false;
  652. this.show1 = true;
  653. this.type1 = this.type;
  654. this.container();
  655. },
  656. activea(item, idx) {
  657. this.datechan = idx;
  658. this.sum = item.sum;
  659. this.unit_price = item.unit_price;
  660. this.recommend_weight = item.recommend_weight;
  661. this.containid = item.id;
  662. this.weight_total = item.weight_total;
  663. if (this.language == "zh-CN") {
  664. this.containname = item.name_cn;
  665. }
  666. if (this.language == "en-US") {
  667. this.containname = item.name_en;
  668. }
  669. if (this.language == "es-ES") {
  670. this.containname = item.name_es;
  671. }
  672. if (this.language == "it-IT") {
  673. this.containname = item.name_ita;
  674. }
  675. },
  676. //确定
  677. confirm() {
  678. this.valuenum = false;
  679. this.show1 = false;
  680. this.containname1 = this.containname;
  681. this.recommendweight();
  682. this.config();
  683. },
  684. // 取消
  685. close() {
  686. this.show = false;
  687. this.show1 = false;
  688. },
  689. //提交订单
  690. topay() {
  691. if (this.valuenum) {
  692. this.$u.toast(this.i18n.newcontainer);
  693. } else {
  694. uni.$u.http
  695. .post("/api/order", {
  696. address_id: this.addinfo.id, //3 是 String 地址ID
  697. goods_id: this.goodinfo.id, //65 是 String 商品id
  698. goods_num: this.value, //2 是 String 商品数量
  699. sku_item_id: this.sku_info.id, //60 是 String 规格id
  700. cart_ids: this.stringcheck, //8,9 是 String 购物车id
  701. remark: "", //备注 是 String 备注
  702. merchant_goods_id: this.goodinfo.merchant_goods_id || "", //39 是 String 团长商品id
  703. container_id: this.containid, //1 是 String 货柜id
  704. share_member_id: this.share_merchant_id, // 是 String 分享团长id 分享商品的时候传
  705. belong: this.goodinfo.source || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  706. })
  707. .then((res) => {
  708. console.log("share_merchant_id", this.share_merchant_id);
  709. console.log(res);
  710. uni.navigateTo({
  711. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  712. url: "/pageA/payorder?orderid=" + res.id + "&sum=" + res.amount,
  713. });
  714. })
  715. .catch(() => {});
  716. }
  717. },
  718. },
  719. };
  720. </script>
  721. <style lang="scss" scoped>
  722. .toptitle {
  723. font-family: PingFangSC, PingFang SC;
  724. font-weight: 400;
  725. // font-size: 22rpx;
  726. color: #222222;
  727. line-height: 32rpx;
  728. text-align: left;
  729. font-style: normal;
  730. // width: 148rpx;
  731. width: 100%;
  732. overflow: hidden;
  733. text-overflow: ellipsis;
  734. -webkit-line-clamp: 1;
  735. display: -webkit-box;
  736. -webkit-box-orient: vertical;
  737. word-break: break-all;
  738. }
  739. ::v-deep .u-status-bar {
  740. height: 0 !important;
  741. }
  742. .confirm {
  743. width: 398rpx;
  744. height: 84rpx;
  745. background: #f83224;
  746. border-radius: 42rpx;
  747. text-align: center;
  748. font-family: PingFangSC, PingFang SC;
  749. font-weight: 500;
  750. font-size: 32rpx;
  751. color: #ffffff;
  752. line-height: 84rpx;
  753. text-align: center;
  754. font-style: normal;
  755. }
  756. .cancel {
  757. width: 280rpx;
  758. height: 84rpx;
  759. border-radius: 42rpx;
  760. border: 2rpx solid rgba(151, 151, 151, 0.3);
  761. font-family: PingFangSC, PingFang SC;
  762. font-weight: 400;
  763. font-size: 32rpx;
  764. color: #444444;
  765. line-height: 84rpx;
  766. text-align: center;
  767. font-style: normal;
  768. }
  769. .enbottom {
  770. width: 750rpx;
  771. height: 166rpx;
  772. background: #ffffff;
  773. position: absolute;
  774. left: 0rpx;
  775. bottom: 0;
  776. padding: 0 24rpx;
  777. box-sizing: border-box;
  778. }
  779. .mone {
  780. font-family: JDZhengHT, JDZhengHT;
  781. font-weight: 400;
  782. font-size: 26rpx;
  783. color: #f83224;
  784. line-height: 32rpx;
  785. text-align: left;
  786. font-style: normal;
  787. }
  788. .yundate {
  789. font-family: PingFangSC, PingFang SC;
  790. font-weight: 550;
  791. font-size: 32rpx;
  792. color: #333333;
  793. line-height: 44rpx;
  794. text-align: left;
  795. font-style: normal;
  796. }
  797. .chest {
  798. font-family: SFPro, SFPro;
  799. font-weight: 400;
  800. font-size: 24rpx;
  801. color: #555555;
  802. line-height: 28rpx;
  803. text-align: left;
  804. font-style: normal;
  805. }
  806. .act {
  807. width: 702rpx;
  808. height: 164rpx;
  809. background: #ffffff;
  810. border-radius: 12rpx;
  811. padding: 24rpx 20rpx;
  812. box-sizing: border-box;
  813. border: 1rpx solid #f83224;
  814. }
  815. .transport {
  816. width: 702rpx;
  817. height: 164rpx;
  818. background: #ffffff;
  819. border-radius: 12rpx;
  820. padding: 24rpx 20rpx;
  821. box-sizing: border-box;
  822. }
  823. .nextto {
  824. width: 702rpx;
  825. height: 84rpx;
  826. background: #f83224;
  827. border-radius: 44rpx;
  828. font-family: PingFangSC, PingFang SC;
  829. font-weight: 500;
  830. font-size: 32rpx;
  831. color: #ffffff;
  832. line-height: 84rpx;
  833. text-align: center;
  834. font-style: normal;
  835. margin-top: 108rpx;
  836. }
  837. .logname {
  838. font-family: PingFangSC, PingFang SC;
  839. font-weight: 400;
  840. font-size: 28rpx;
  841. color: #333333;
  842. line-height: 40rpx;
  843. text-align: right;
  844. font-style: normal;
  845. overflow: hidden;
  846. width: 220rpx;
  847. white-space: nowrap;
  848. text-overflow: ellipsis;
  849. text-align: center;
  850. word-break: break-all;
  851. }
  852. .wei {
  853. font-family: JDZhengHT, JDZhengHT;
  854. font-weight: 400;
  855. font-size: 32rpx;
  856. color: #f83224;
  857. line-height: 40rpx;
  858. text-align: right;
  859. font-style: normal;
  860. margin-top: 8rpx;
  861. }
  862. .active {
  863. width: 218rpx;
  864. height: 148rpx;
  865. background: rgba(247, 50, 36, 0.05);
  866. border-radius: 8rpx;
  867. border: 1rpx solid #f83224;
  868. }
  869. .unactive {
  870. width: 218rpx;
  871. height: 148rpx;
  872. border-radius: 12rpx;
  873. border: 1rpx solid #c3c3c3;
  874. }
  875. .poptitle {
  876. width: 142rpx;
  877. height: 50rpx;
  878. font-family: PingFangSC, PingFang SC;
  879. font-weight: 600;
  880. font-size: 36rpx;
  881. color: #333333;
  882. text-align: center;
  883. width: 100%;
  884. }
  885. .back {
  886. background: rgba(244, 244, 244, 1);
  887. padding: 20rpx 24rpx;
  888. box-sizing: border-box;
  889. .btn {
  890. width: 750rpx;
  891. height: 166rpx;
  892. background: #ffffff;
  893. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  894. position: fixed;
  895. bottom: 0;
  896. left: 0;
  897. padding: 0 24rpx 5rpx 5rpx;
  898. box-sizing: border-box;
  899. .money {
  900. font-family: HarmonyOS_Sans_Medium;
  901. font-size: 48rpx;
  902. color: #f83224;
  903. line-height: 38rpx;
  904. text-align: left;
  905. font-style: normal;
  906. // font-weight: 500;
  907. font-weight: bold;
  908. }
  909. .kg {
  910. font-family: PingFangSC, PingFang SC;
  911. font-weight: 400;
  912. font-size: 24rpx;
  913. color: #333333;
  914. line-height: 34rpx;
  915. text-align: left;
  916. font-style: normal;
  917. }
  918. .order {
  919. width: 232rpx;
  920. height: 80rpx;
  921. background: #f83224;
  922. border-radius: 40rpx;
  923. font-family: PingFangTC, PingFangTC;
  924. font-weight: 500;
  925. font-size: 32rpx;
  926. color: #ffffff;
  927. line-height: 80rpx;
  928. text-align: center;
  929. font-style: normal;
  930. margin-left: 20rpx;
  931. }
  932. }
  933. //商品相关
  934. .abount {
  935. padding: 28rpx 24rpx;
  936. box-sizing: border-box;
  937. background: #ffffff;
  938. border-radius: 16rpx;
  939. width: 702rpx;
  940. .zong {
  941. width: 654rpx;
  942. padding: 22rpx 0 0 0;
  943. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  944. margin-top: 32rpx;
  945. .small {
  946. font-family: PingFangTC, PingFangTC;
  947. font-weight: 400;
  948. font-size: 24rpx;
  949. color: #444444;
  950. line-height: 34rpx;
  951. text-align: left;
  952. font-style: normal;
  953. }
  954. .mon {
  955. font-family: HarmonyOS_Sans_Medium;
  956. font-size: 28rpx;
  957. color: #f83224;
  958. line-height: 38rpx;
  959. text-align: left;
  960. font-style: normal;
  961. margin-left: 12rpx;
  962. font-weight: bold;
  963. }
  964. }
  965. .back {
  966. background: rgba(244, 244, 244, 1);
  967. padding: 22rpx 16rpx;
  968. box-sizing: border-box;
  969. margin-top: 10rpx;
  970. // margin-bottom: 20rpx;
  971. }
  972. .name {
  973. font-family: PingFangSC, PingFang SC;
  974. font-weight: 400;
  975. font-size: 28rpx;
  976. color: #333333;
  977. line-height: 40rpx;
  978. text-align: left;
  979. font-style: normal;
  980. }
  981. .money {
  982. font-family: HarmonyOS_Sans_Medium;
  983. font-size: 28rpx;
  984. color: #222222;
  985. line-height: 38rpx;
  986. text-align: left;
  987. font-style: normal;
  988. font-weight: 600;
  989. }
  990. }
  991. .recommend {
  992. margin-top: 20rpx;
  993. .title {
  994. font-family: PingFangSC, PingFang SC;
  995. font-weight: 400;
  996. font-size: 22rpx;
  997. color: #222222;
  998. line-height: 32rpx;
  999. text-align: left;
  1000. font-style: normal;
  1001. width: 148rpx;
  1002. height: 64rpx;
  1003. overflow: hidden;
  1004. text-overflow: ellipsis;
  1005. -webkit-line-clamp: 2;
  1006. display: -webkit-box;
  1007. -webkit-box-orient: vertical;
  1008. word-break: break-all;
  1009. }
  1010. .top {
  1011. width: 702rpx;
  1012. height: 64rpx;
  1013. background: linear-gradient(180deg,
  1014. #ffe7e3 0%,
  1015. rgba(255, 255, 255, 1) 100%);
  1016. border-radius: 16rpx 16rpx 0 0;
  1017. padding: 24rpx 22rpx;
  1018. box-sizing: border-box;
  1019. }
  1020. .bottom {
  1021. padding: 0 20rpx 22rpx;
  1022. box-sizing: border-box;
  1023. background: #fff;
  1024. }
  1025. }
  1026. //物流
  1027. .logistics {
  1028. width: 702rpx;
  1029. // height: 96rpx;
  1030. background: #ffffff;
  1031. border-radius: 16rpx;
  1032. padding: 28rpx 22rpx;
  1033. box-sizing: border-box;
  1034. margin-top: 20rpx;
  1035. .change {
  1036. font-family: PingFangSC, PingFang SC;
  1037. font-weight: 400;
  1038. font-size: 28rpx;
  1039. color: #f83224;
  1040. line-height: 40rpx;
  1041. text-align: left;
  1042. font-style: normal;
  1043. margin-right: 8rpx;
  1044. }
  1045. }
  1046. //商城
  1047. .shop {
  1048. width: 702rpx;
  1049. // height: 322rpx;
  1050. background: #ffffff;
  1051. border-radius: 16rpx;
  1052. padding: 30rpx 24rpx;
  1053. margin-top: 20rpx;
  1054. box-sizing: border-box;
  1055. .bu {
  1056. width: 120rpx;
  1057. height: 40rpx;
  1058. border-radius: 20rpx;
  1059. border: 1rpx solid rgba(151, 151, 151, 0.3);
  1060. }
  1061. .money {
  1062. font-family: HarmonyOS_Sans_Medium;
  1063. font-size: 24rpx;
  1064. color: #f83224;
  1065. line-height: 34rpx;
  1066. text-align: left;
  1067. font-style: normal;
  1068. font-weight: 600;
  1069. }
  1070. .name {
  1071. font-family: PingFangSC, PingFang SC;
  1072. font-weight: 400;
  1073. font-size: 30rpx;
  1074. color: #222222;
  1075. line-height: 42rpx;
  1076. text-align: left;
  1077. font-style: normal;
  1078. margin-left: 10rpx;
  1079. }
  1080. .weight {
  1081. font-family: PingFangSC, PingFang SC;
  1082. font-weight: 400;
  1083. font-size: 24rpx;
  1084. color: rgba(34, 34, 34, 0.6);
  1085. line-height: 34rpx;
  1086. text-align: left;
  1087. font-style: normal;
  1088. margin-top: 16rpx;
  1089. }
  1090. }
  1091. // 地址
  1092. .address {
  1093. width: 702rpx;
  1094. // height: 182rpx;
  1095. background: #ffffff;
  1096. border-radius: 16rpx;
  1097. padding: 32rpx 24rpx;
  1098. box-sizing: border-box;
  1099. .add {
  1100. font-family: SFPro, SFPro;
  1101. font-weight: 500;
  1102. font-size: 32rpx;
  1103. color: #222222;
  1104. line-height: 36rpx;
  1105. text-align: left;
  1106. font-style: normal;
  1107. }
  1108. .info {
  1109. font-family: SFPro, SFPro;
  1110. font-weight: 400;
  1111. font-size: 24rpx;
  1112. color: #555555;
  1113. line-height: 28rpx;
  1114. text-align: left;
  1115. font-style: normal;
  1116. margin-top: 20rpx;
  1117. }
  1118. }
  1119. }
  1120. .minus {
  1121. width: 22px;
  1122. height: 22px;
  1123. border-width: 1px;
  1124. border-color: #e6e6e6;
  1125. border-style: solid;
  1126. border-top-left-radius: 100px;
  1127. border-top-right-radius: 100px;
  1128. border-bottom-left-radius: 100px;
  1129. border-bottom-right-radius: 100px;
  1130. @include flex;
  1131. justify-content: center;
  1132. align-items: center;
  1133. }
  1134. .input {
  1135. padding: 0 10px;
  1136. }
  1137. .plus {
  1138. width: 22px;
  1139. height: 22px;
  1140. background-color: #ff0000;
  1141. border-radius: 50%;
  1142. /* #ifndef APP-NVUE */
  1143. display: flex;
  1144. /* #endif */
  1145. justify-content: center;
  1146. align-items: center;
  1147. }
  1148. </style>