order.vue 28 KB

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