order.vue 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  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. };
  284. },
  285. computed: {
  286. i18n() {
  287. return this.$t('index')
  288. },
  289. },
  290. onLoad(options) {
  291. // url: '/pageA/order?sku=' + this.sku_info + '&value=' + this.value+'&goodinfo='+this.goodinfo
  292. if (options.typea) {
  293. console.log(22222);
  294. this.typea = options.typea
  295. this.selelist = JSON.parse(decodeURIComponent(options.selelist))
  296. this.goodsPrice = options.goodsPrice
  297. this.goodsWeight = options.goodsWeight
  298. this.stringcheck = options.stringcheck
  299. } else if (options) {
  300. this.value = options.value
  301. this.sku_info = JSON.parse(decodeURIComponent(options.sku));
  302. this.goodinfo = JSON.parse(decodeURIComponent(options.goodinfo))
  303. if(options.share_merchant_id){
  304. this.share_merchant_id = options.share_merchant_id
  305. }
  306. console.log(this.goodinfo);
  307. console.log(this.sku_info);
  308. }
  309. },
  310. onShow() {
  311. if (uni.getStorageSync('language') != '') {
  312. this.language = uni.getStorageSync('language')
  313. }
  314. this.recommend()
  315. // this.container()
  316. },
  317. methods: {
  318. todetail(id) {
  319. uni.reLaunch({
  320. url: '/pageA/productdetails?id=' + id
  321. })
  322. },
  323. //正则匹配手机号
  324. replacePhoneToStar: function(phone) {
  325. if (phone) {
  326. return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
  327. }
  328. },
  329. //推荐重量
  330. recommendweight() {
  331. uni.$u.http.get('/api/express-order/recommend-container', {
  332. params: {
  333. container_id: this.containid,
  334. type: this.goodinfo.cate == 0 ? 'normal' : 'special'
  335. }
  336. }).then((res) => {
  337. console.log(res);
  338. this.max_weight = res.max_weight
  339. this.min_weight = res.min_weight
  340. this.unit_fee = res.unit_fee
  341. }).catch(() => {
  342. })
  343. },
  344. //货运类型列表
  345. transport() {
  346. uni.$u.http.get('/api/transport-type', {
  347. params: {
  348. province_id: this.province_id,
  349. }
  350. }).then((res) => {
  351. this.containerList = res
  352. this.transport_type_id = res[0].id
  353. if (this.language == 'zh-CN') {
  354. this.type = res[0].name_cn
  355. }
  356. if (this.language == 'en-US') {
  357. this.type = res[0].name_en
  358. }
  359. if (this.language == 'es-ES') {
  360. this.type = res[0].name_es
  361. }
  362. if (this.language == 'it-IT') {
  363. this.type = res[0].name_ita
  364. }
  365. }).catch(() => {
  366. })
  367. },
  368. //跳转到填写地址
  369. toadd() {
  370. var that = this
  371. uni.navigateTo({
  372. url: '/pageC/addressManagement/addressManagement?tabs=' + Number(0),
  373. events: {
  374. getadd(res) {
  375. that.addinfo = res
  376. that.province_id = res.province_id
  377. that.transport()
  378. }
  379. }
  380. })
  381. },
  382. //货柜列表
  383. container() {
  384. uni.$u.http.get('/api/container-base', {
  385. params: {
  386. is_page: 0,
  387. province_id: this.province_id,
  388. transport_type_id: this.transport_type_id,
  389. weight: this.typea == 'shop' ?
  390. this.goodsWeight : Number(this.sku_info.weight) * this.value,
  391. type: this.goodinfo.cate == 0 ? 'normal' : 'special',
  392. length: Number(this.goodinfo.length) * this.value, // 是 String 长
  393. width: this.goodinfo.width, // 是 String 宽
  394. height: this.goodinfo.height, // 是 String 高
  395. }
  396. }).then((res) => {
  397. res.forEach((item) => {
  398. if (item.sum != 0) {
  399. this.containlist.push(item)
  400. }
  401. console.log(this.containlist);
  402. })
  403. // this.sum = this.containlist[0].sum
  404. // this.unit_price = this.containlist[0].unit_price
  405. if (this.goodinfo.is_shipping == 0) {
  406. this.sum = 0
  407. } else {
  408. this.sum = this.containlist[0].sum
  409. }
  410. if (this.goodinfo.is_shipping == 0) {
  411. this.unit_price = 0
  412. } else {
  413. this.unit_price = this.containlist[0].unit_price
  414. }
  415. this.recommend_weight = this.containlist[0].recommend_weight
  416. this.containid = this.containlist[0].id
  417. if (this.language == 'zh-CN') {
  418. this.containname = this.containlist[0].name_cn
  419. }
  420. if (this.language == 'en-US') {
  421. this.containname = this.containlist[0].name_en
  422. }
  423. if (this.language == 'es-ES') {
  424. this.containname = this.containlist[0].name_es
  425. }
  426. if (this.language == 'it-IT') {
  427. this.containname = this.containlist[0].name_ita
  428. }
  429. }).catch(() => {
  430. })
  431. },
  432. //运费满减
  433. config() {
  434. var that = this
  435. uni.$u.http.get('/api/config', {
  436. params: {
  437. module: 'free_shipping'
  438. }
  439. }).then((res) => {
  440. let goodsum = ''
  441. if (that.goodinfo.is_discount == 1) {
  442. goodsum = Number(that.sku_info.price * 100) * Number(that.value * 100) / 10000
  443. console.log('that.sum', that.sum);
  444. console.log('that.goodsum', goodsum);
  445. if (goodsum > res.free_shipping) {
  446. that.sum = 0;
  447. that.unit_price = 0;
  448. }
  449. } else {
  450. goodsum = Number(that.sku_info.discount_price * 100) * Number(that.value * 100) / 10000
  451. if (goodsum > res.free_shipping) {
  452. that.sum = 0
  453. that.unit_price = 0
  454. }
  455. }
  456. }).catch(() => {
  457. })
  458. },
  459. //商品推荐
  460. recommend() {
  461. uni.$u.http.post('/api/goods/recommend', {
  462. keyword: ''
  463. }).then((res) => {
  464. // this.swiptlist = res.reduce((a, b) => {
  465. // let lastIndex = a.length - 1
  466. // if (a[lastIndex].length < 3) {
  467. // a[lastIndex].push(b)
  468. // } else {
  469. // a.push([b])
  470. // }
  471. // return a
  472. // }, [
  473. // []
  474. // ])
  475. this.swiptlist = res
  476. }).catch(() => {
  477. })
  478. },
  479. change(item, index) {
  480. this.transport_type_id = item.id
  481. this.index = index
  482. if (this.language == 'zh-CN') {
  483. this.type = item.name_cn
  484. }
  485. if (this.language == 'en-US') {
  486. this.type = item.name_en
  487. }
  488. if (this.language == 'es-ES') {
  489. this.type = item.name_es
  490. }
  491. if (this.language == 'it-IT') {
  492. this.type = item.name_ita
  493. }
  494. },
  495. next() {
  496. this.show = false
  497. this.show1 = true
  498. this.type1 = this.type
  499. this.container()
  500. },
  501. activea(item, idx) {
  502. this.datechan = idx
  503. this.sum = item.sum
  504. this.unit_price = item.unit_price
  505. this.recommend_weight = item.recommend_weight
  506. this.containid = item.id
  507. if (this.language == 'zh-CN') {
  508. this.containname = item.name_cn
  509. }
  510. if (this.language == 'en-US') {
  511. this.containname = item.name_en
  512. }
  513. if (this.language == 'es-ES') {
  514. this.containname = item.name_es
  515. }
  516. if (this.language == 'it-IT') {
  517. this.containname = item.name_ita
  518. }
  519. },
  520. //确定
  521. confirm() {
  522. this.show1 = false
  523. this.containname1 = this.containname
  524. this.recommendweight()
  525. this.config()
  526. },
  527. // 取消
  528. close() {
  529. this.show = false
  530. this.show1 = false
  531. },
  532. //提交订单
  533. topay() {
  534. uni.$u.http.post('/api/order', {
  535. address_id: this.addinfo.id, //3 是 String 地址ID
  536. goods_id: this.goodinfo.id, //65 是 String 商品id
  537. goods_num: this.value, //2 是 String 商品数量
  538. sku_item_id: this.sku_info.id, //60 是 String 规格id
  539. cart_ids: this.stringcheck, //8,9 是 String 购物车id
  540. remark: '', //备注 是 String 备注
  541. merchant_goods_id: this.goodinfo.merchant_goods_id || '', //39 是 String 团长商品id
  542. container_id: this.containid, //1 是 String 货柜id
  543. share_member_id: this.share_merchant_id, // 是 String 分享团长id 分享商品的时候传
  544. belong: this.goodinfo.source || '' //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
  545. }).then((res) => {
  546. console.log('share_merchant_id',this.share_merchant_id);
  547. console.log(res);
  548. uni.navigateTo({
  549. // url: '/pageA/payorder?sum=' + (Number(this.sum*10000+ Number(this.sku_info.discount_price)*Number(this.value)*10000))/10000 +'&orderid=' + res.id
  550. url: '/pageA/payorder?orderid=' + res.id + '&sum=' + res.amount
  551. })
  552. }).catch(() => {})
  553. }
  554. }
  555. }
  556. </script>
  557. <style lang="scss" scoped>
  558. .toptitle {
  559. font-family: PingFangSC, PingFang SC;
  560. font-weight: 400;
  561. // font-size: 22rpx;
  562. color: #222222;
  563. line-height: 32rpx;
  564. text-align: left;
  565. font-style: normal;
  566. // width: 148rpx;
  567. width: 100%;
  568. overflow: hidden;
  569. text-overflow: ellipsis;
  570. -webkit-line-clamp: 1;
  571. display: -webkit-box;
  572. -webkit-box-orient: vertical;
  573. word-break: break-all;
  574. }
  575. ::v-deep .u-status-bar {
  576. height: 0 !important;
  577. }
  578. .confirm {
  579. width: 398rpx;
  580. height: 84rpx;
  581. background: #F83224;
  582. border-radius: 42rpx;
  583. text-align: center;
  584. font-family: PingFangSC, PingFang SC;
  585. font-weight: 500;
  586. font-size: 32rpx;
  587. color: #FFFFFF;
  588. line-height: 84rpx;
  589. text-align: center;
  590. font-style: normal;
  591. }
  592. .cancel {
  593. width: 280rpx;
  594. height: 84rpx;
  595. border-radius: 42rpx;
  596. border: 2rpx solid rgba(151, 151, 151, 0.3);
  597. font-family: PingFangSC, PingFang SC;
  598. font-weight: 400;
  599. font-size: 32rpx;
  600. color: #444444;
  601. line-height: 84rpx;
  602. text-align: center;
  603. font-style: normal;
  604. }
  605. .enbottom {
  606. width: 750rpx;
  607. height: 166rpx;
  608. background: #FFFFFF;
  609. position: absolute;
  610. left: 0rpx;
  611. bottom: 0;
  612. padding: 0 24rpx;
  613. box-sizing: border-box;
  614. }
  615. .mone {
  616. font-family: JDZhengHT, JDZhengHT;
  617. font-weight: 400;
  618. font-size: 26rpx;
  619. color: #F83224;
  620. line-height: 32rpx;
  621. text-align: left;
  622. font-style: normal;
  623. }
  624. .yundate {
  625. font-family: PingFangSC, PingFang SC;
  626. font-weight: 550;
  627. font-size: 32rpx;
  628. color: #333333;
  629. line-height: 44rpx;
  630. text-align: left;
  631. font-style: normal;
  632. }
  633. .chest {
  634. font-family: SFPro, SFPro;
  635. font-weight: 400;
  636. font-size: 24rpx;
  637. color: #555555;
  638. line-height: 28rpx;
  639. text-align: left;
  640. font-style: normal;
  641. }
  642. .act {
  643. width: 702rpx;
  644. height: 164rpx;
  645. background: #FFFFFF;
  646. border-radius: 12rpx;
  647. padding: 24rpx 20rpx;
  648. box-sizing: border-box;
  649. border: 1rpx solid #F83224;
  650. }
  651. .transport {
  652. width: 702rpx;
  653. height: 164rpx;
  654. background: #FFFFFF;
  655. border-radius: 12rpx;
  656. padding: 24rpx 20rpx;
  657. box-sizing: border-box;
  658. }
  659. .nextto {
  660. width: 702rpx;
  661. height: 84rpx;
  662. background: #F83224;
  663. border-radius: 44rpx;
  664. font-family: PingFangSC, PingFang SC;
  665. font-weight: 500;
  666. font-size: 32rpx;
  667. color: #FFFFFF;
  668. line-height: 84rpx;
  669. text-align: center;
  670. font-style: normal;
  671. margin-top: 108rpx;
  672. }
  673. .logname {
  674. font-family: PingFangSC, PingFang SC;
  675. font-weight: 400;
  676. font-size: 28rpx;
  677. color: #333333;
  678. line-height: 40rpx;
  679. text-align: right;
  680. font-style: normal;
  681. overflow: hidden;
  682. width: 220rpx;
  683. white-space: nowrap;
  684. text-overflow: ellipsis;
  685. text-align: center;
  686. word-break: break-all;
  687. }
  688. .wei {
  689. font-family: JDZhengHT, JDZhengHT;
  690. font-weight: 400;
  691. font-size: 32rpx;
  692. color: #F83224;
  693. line-height: 40rpx;
  694. text-align: right;
  695. font-style: normal;
  696. margin-top: 8rpx;
  697. }
  698. .active {
  699. width: 218rpx;
  700. height: 148rpx;
  701. background: rgba(247, 50, 36, 0.05);
  702. border-radius: 8rpx;
  703. border: 1rpx solid #F83224;
  704. }
  705. .unactive {
  706. width: 218rpx;
  707. height: 148rpx;
  708. border-radius: 12rpx;
  709. border: 1rpx solid #C3C3C3;
  710. }
  711. .poptitle {
  712. width: 142rpx;
  713. height: 50rpx;
  714. font-family: PingFangSC, PingFang SC;
  715. font-weight: 600;
  716. font-size: 36rpx;
  717. color: #333333;
  718. text-align: center;
  719. width: 100%;
  720. }
  721. .back {
  722. background: rgba(244, 244, 244, 1);
  723. padding: 20rpx 24rpx;
  724. box-sizing: border-box;
  725. .btn {
  726. width: 750rpx;
  727. height: 166rpx;
  728. background: #FFFFFF;
  729. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
  730. position: fixed;
  731. bottom: 0;
  732. left: 0;
  733. padding: 0 24rpx 5rpx 5rpx;
  734. box-sizing: border-box;
  735. .money {
  736. font-family: HarmonyOS_Sans_Medium;
  737. font-size: 48rpx;
  738. color: #F83224;
  739. line-height: 38rpx;
  740. text-align: left;
  741. font-style: normal;
  742. // font-weight: 500;
  743. font-weight: bold;
  744. }
  745. .kg {
  746. font-family: PingFangSC, PingFang SC;
  747. font-weight: 400;
  748. font-size: 24rpx;
  749. color: #333333;
  750. line-height: 34rpx;
  751. text-align: left;
  752. font-style: normal;
  753. }
  754. .order {
  755. width: 232rpx;
  756. height: 80rpx;
  757. background: #F83224;
  758. border-radius: 40rpx;
  759. font-family: PingFangTC, PingFangTC;
  760. font-weight: 500;
  761. font-size: 32rpx;
  762. color: #FFFFFF;
  763. line-height: 80rpx;
  764. text-align: center;
  765. font-style: normal;
  766. margin-left: 20rpx;
  767. }
  768. }
  769. //商品相关
  770. .abount {
  771. padding: 28rpx 24rpx;
  772. box-sizing: border-box;
  773. background: #FFFFFF;
  774. border-radius: 16rpx;
  775. width: 702rpx;
  776. .zong {
  777. width: 654rpx;
  778. padding: 22rpx 0 0 0;
  779. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  780. margin-top: 32rpx;
  781. .small {
  782. font-family: PingFangTC, PingFangTC;
  783. font-weight: 400;
  784. font-size: 24rpx;
  785. color: #444444;
  786. line-height: 34rpx;
  787. text-align: left;
  788. font-style: normal;
  789. }
  790. .mon {
  791. font-family: HarmonyOS_Sans_Medium;
  792. font-size: 28rpx;
  793. color: #F83224;
  794. line-height: 38rpx;
  795. text-align: left;
  796. font-style: normal;
  797. margin-left: 12rpx;
  798. font-weight: bold;
  799. }
  800. }
  801. .back {
  802. background: rgba(244, 244, 244, 1);
  803. padding: 22rpx 16rpx;
  804. box-sizing: border-box;
  805. margin-top: 10rpx;
  806. // margin-bottom: 20rpx;
  807. }
  808. .name {
  809. font-family: PingFangSC, PingFang SC;
  810. font-weight: 400;
  811. font-size: 28rpx;
  812. color: #333333;
  813. line-height: 40rpx;
  814. text-align: left;
  815. font-style: normal;
  816. }
  817. .money {
  818. font-family: HarmonyOS_Sans_Medium;
  819. font-size: 28rpx;
  820. color: #222222;
  821. line-height: 38rpx;
  822. text-align: left;
  823. font-style: normal;
  824. font-weight: 600;
  825. }
  826. }
  827. .recommend {
  828. margin-top: 20rpx;
  829. .title {
  830. font-family: PingFangSC, PingFang SC;
  831. font-weight: 400;
  832. font-size: 22rpx;
  833. color: #222222;
  834. line-height: 32rpx;
  835. text-align: left;
  836. font-style: normal;
  837. width: 148rpx;
  838. height: 64rpx;
  839. overflow: hidden;
  840. text-overflow: ellipsis;
  841. -webkit-line-clamp: 2;
  842. display: -webkit-box;
  843. -webkit-box-orient: vertical;
  844. word-break: break-all;
  845. }
  846. .top {
  847. width: 702rpx;
  848. height: 64rpx;
  849. background: linear-gradient(180deg, #FFE7E3 0%, rgba(255, 255, 255, 1) 100%);
  850. border-radius: 16rpx 16rpx 0 0;
  851. padding: 24rpx 22rpx;
  852. box-sizing: border-box;
  853. }
  854. .bottom {
  855. padding: 0 20rpx 22rpx;
  856. box-sizing: border-box;
  857. background: #fff;
  858. }
  859. }
  860. //物流
  861. .logistics {
  862. width: 702rpx;
  863. // height: 96rpx;
  864. background: #FFFFFF;
  865. border-radius: 16rpx;
  866. padding: 28rpx 22rpx;
  867. box-sizing: border-box;
  868. margin-top: 20rpx;
  869. .change {
  870. font-family: PingFangSC, PingFang SC;
  871. font-weight: 400;
  872. font-size: 28rpx;
  873. color: #F83224;
  874. line-height: 40rpx;
  875. text-align: left;
  876. font-style: normal;
  877. margin-right: 8rpx;
  878. }
  879. }
  880. //商城
  881. .shop {
  882. width: 702rpx;
  883. // height: 322rpx;
  884. background: #FFFFFF;
  885. border-radius: 16rpx;
  886. padding: 30rpx 24rpx;
  887. margin-top: 20rpx;
  888. box-sizing: border-box;
  889. .bu {
  890. width: 120rpx;
  891. height: 40rpx;
  892. border-radius: 20rpx;
  893. border: 1rpx solid rgba(151, 151, 151, 0.3);
  894. }
  895. .money {
  896. font-family: HarmonyOS_Sans_Medium;
  897. font-size: 24rpx;
  898. color: #F83224;
  899. line-height: 34rpx;
  900. text-align: left;
  901. font-style: normal;
  902. font-weight: 600;
  903. }
  904. .name {
  905. font-family: PingFangSC, PingFang SC;
  906. font-weight: 400;
  907. font-size: 30rpx;
  908. color: #222222;
  909. line-height: 42rpx;
  910. text-align: left;
  911. font-style: normal;
  912. margin-left: 10rpx;
  913. }
  914. .weight {
  915. font-family: PingFangSC, PingFang SC;
  916. font-weight: 400;
  917. font-size: 24rpx;
  918. color: rgba(34, 34, 34, 0.6);
  919. line-height: 34rpx;
  920. text-align: left;
  921. font-style: normal;
  922. margin-top: 16rpx;
  923. }
  924. }
  925. // 地址
  926. .address {
  927. width: 702rpx;
  928. // height: 182rpx;
  929. background: #FFFFFF;
  930. border-radius: 16rpx;
  931. padding: 32rpx 24rpx;
  932. box-sizing: border-box;
  933. .add {
  934. font-family: SFPro, SFPro;
  935. font-weight: 500;
  936. font-size: 32rpx;
  937. color: #222222;
  938. line-height: 36rpx;
  939. text-align: left;
  940. font-style: normal;
  941. }
  942. .info {
  943. font-family: SFPro, SFPro;
  944. font-weight: 400;
  945. font-size: 24rpx;
  946. color: #555555;
  947. line-height: 28rpx;
  948. text-align: left;
  949. font-style: normal;
  950. margin-top: 20rpx;
  951. }
  952. }
  953. }
  954. .minus {
  955. width: 22px;
  956. height: 22px;
  957. border-width: 1px;
  958. border-color: #E6E6E6;
  959. border-style: solid;
  960. border-top-left-radius: 100px;
  961. border-top-right-radius: 100px;
  962. border-bottom-left-radius: 100px;
  963. border-bottom-right-radius: 100px;
  964. @include flex;
  965. justify-content: center;
  966. align-items: center;
  967. }
  968. .input {
  969. padding: 0 10px;
  970. }
  971. .plus {
  972. width: 22px;
  973. height: 22px;
  974. background-color: #FF0000;
  975. border-radius: 50%;
  976. /* #ifndef APP-NVUE */
  977. display: flex;
  978. /* #endif */
  979. justify-content: center;
  980. align-items: center;
  981. }
  982. </style>