productdetails.vue 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136
  1. <template>
  2. <view>
  3. <scroll-view ref="scrollView" scroll-y="true" style="min-height: 100%;">
  4. <!-- 页面内容 -->
  5. <!-- 自定义导航栏 -->
  6. <u-navbar :safeAreaInsetTop="true" :placeholder='true'>
  7. <view class="u-nav-slot u-flex" slot="left" style="display: flex;">
  8. <view class="u-flex">
  9. <u-icon name="arrow-left" size="19" @click="navigateBack()"></u-icon>
  10. <u-tabs :duration='duration' @click="click" :list="list1" lineColor='#fff'
  11. :activeStyle=" {color:'#FF1515'}" :inactiveStyle="{
  12. color:' #666666' }"></u-tabs>
  13. </view>
  14. <!-- <view class="" style="margin-left: 184rpx;" @click="share = true">
  15. <image src="static/images/share.png" style="width: 38rpx;height: 38rpx;" mode=""></image>
  16. </view> -->
  17. </view>
  18. <view class="u-nav-slot u-flex" slot="right" style="display: flex;">
  19. <view class="" style="margin-left: 184rpx;" @click="share = true">
  20. <image src="static/images/share.png" style="width: 38rpx;height: 38rpx;" mode=""></image>
  21. </view>
  22. <view class="" style="width: 180rpx;"></view>
  23. </view>
  24. </u-navbar>
  25. <!-- 商品图片 -->
  26. <view class="uni-margin-wrap">
  27. <swiper class="swiper" circular :indicator-dots="false" :autoplay="true">
  28. <swiper-item v-if="goodinfo.video">
  29. <video style="width: 750rpx;height: 750rpx;" :src='goodinfo.video'></video>
  30. </swiper-item>
  31. <swiper-item v-for="(item,idx) in goodinfo.images.split(',')" :key="idx">
  32. <image src="https://cdn.uviewui.com/uview/swiper/swiper1.png"
  33. style="width: 750rpx;height: 750rpx;" mode=""></image>
  34. </swiper-item>
  35. </swiper>
  36. </view>
  37. </image>
  38. <view class="back">
  39. <!-- 折扣 -->
  40. <view class="discount">
  41. <view class="top">
  42. <text class='count' v-if="goodinfo.is_discount==0">{{i18n.Discounted}}</text>
  43. <text class='money'>¥</text>
  44. <text class='money'
  45. style="font-size: 48rpx;">{{goodinfo.is_discount==0?goodinfo.discount_price.slice(0,-3):goodinfo.price.slice(0,-3)}}</text>
  46. <text
  47. class='money'>{{goodinfo.is_discount==0?goodinfo.discount_price.slice(-3):goodinfo.price.slice(-3)}}</text>
  48. <text class='right' v-if="goodinfo.is_discount==0">¥{{goodinfo.price}}</text>
  49. </view>
  50. <view class="bottom">
  51. <text class="tabs">{{i18n.sametype}}</text>
  52. <view class="title">
  53. <text class="title" selectable @longpress="onLongPress" v-if="language =='zh-CN'">
  54. {{goodinfo.name_cn}}
  55. </text>
  56. <text class="title" selectable @longpress="onLongPress" v-if="language =='en-US'">
  57. {{goodinfo.name_en}}
  58. </text>
  59. <text class="title" selectable @longpress="onLongPress" v-if="language =='es-ES'">
  60. {{goodinfo.name_es}}
  61. </text>
  62. <text class="title" selectable @longpress="onLongPress" v-if="language =='it-IT'">
  63. {{goodinfo.name_ita}}
  64. </text>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 服务 -->
  69. <view class="serve" style="margin-top: 20rpx;">
  70. <view class="top u-flex u-row-between" @click="sele">
  71. <view class="u-flex">
  72. <view class="change">{{i18n.Sele}}</view>
  73. <view class="" style="margin-left: 20rpx;">{{selectArr.length>0?selectArr.join(','):i18n.Sele}}</view>
  74. </view>
  75. <view class="">
  76. <u-icon name="arrow-right" size='16'></u-icon>
  77. </view>
  78. </view>
  79. <view class="top u-flex u-row-between" style="margin-top: 36rpx;" @click="serve=true">
  80. <view class="u-flex">
  81. <view class="change">{{i18n.service}}</view>
  82. <view class="" style="margin-left: 20rpx;">正品保障 · 极速退款 · 7天无理由退</view>
  83. </view>
  84. <view class="">
  85. <u-icon name="arrow-right" size='16'></u-icon>
  86. </view>
  87. </view>
  88. </view>
  89. <!-- 评论 -->
  90. <view class="comment" ref="targetPosition">
  91. <view class="u-flex u-row-between">
  92. <text class="ping">{{i18n.review}}</text>
  93. <view class="u-flex">
  94. <text class="strip">5000+{{i18n.article + i18n.review}}</text>
  95. <u-icon name="arrow-right" size='16'></u-icon>
  96. </view>
  97. </view>
  98. <view class="" v-for="(item,idx) in commentlist" :key="idx">
  99. <view class="uesr u-flex u-row-between" style="margin-top: 36rpx;">
  100. <view class="u-flex">
  101. <image src="../static/images/logo.png" style="width: 52rpx;height: 52rpx;" mode="">
  102. </image>
  103. <text class="name">{{item.member.nickname}}</text>
  104. </view>
  105. <text class="strip">{{item.created_at}}</text>
  106. </view>
  107. <view class="content">
  108. {{item.content}}
  109. </view>
  110. <view class="sku" style="margin-top: 16rpx;">{{
  111. item.sku_item.item
  112. }}</view>
  113. </view>
  114. </view>
  115. <!-- 店铺 -->
  116. <view class="store u-flex u-row-between">
  117. <view class="u-flex">
  118. <image :src='goodinfo.merchant.image' style="width: 112rpx;height: 112rpx;" mode=""></image>
  119. <view class="" style="margin-left: 20rpx;">
  120. <view class="title">{{goodinfo.merchant.merchant_name}}</view>
  121. <uni-rate network allow-half :readonly="true" color="red" :size='8' :value="5"
  122. v-model="rate" />
  123. <view class="" style='margin-top:20rpx'></view>
  124. <view class="u-flex" style='margin-top:20rpx'>
  125. <text class='num'>{{i18n.Salesvolume}} 2384w+</text>
  126. <view class="line"></view>
  127. <!-- 评价总数 -->
  128. <text class='num'>{{i18n.Salesvolume}} 2384w+</text>
  129. </view>
  130. </view>
  131. </view>
  132. <view class="goshop" @click="goshop">{{i18n.stroll}}</view>
  133. </view>
  134. <!-- 推荐 -->
  135. <view class="recommend">
  136. <view class="title">
  137. {{i18n.Recommended}}
  138. </view>
  139. <view class="">
  140. <swiper style="height: 400rpx;" class="swiper" circular :indicator-dots="true" :autoplay="true">
  141. <swiper-item v-for="(parent,index) in swiptlist" :key="index">
  142. <view class="u-flex swiper-item u-row-between">
  143. <view class="" v-for="(child,idx) in parent" @click="toinfo(child.id)" :key="idx">
  144. <image :src="child.image" style="width: 214rpx;height: 214rpx;" mode="">
  145. </image>
  146. <view class="u-line-1"
  147. style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
  148. v-if="language =='zh-CN'">
  149. {{child.name_cn}}
  150. </view>
  151. <view class="u-line-1"
  152. style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
  153. v-if="language =='en-US'">
  154. {{child.name_en}}
  155. </view>
  156. <view class="u-line-1"
  157. style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
  158. v-if="language =='es-ES'">
  159. {{child.name_es}}
  160. </view>
  161. <view class="u-line-1"
  162. style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
  163. v-if="language =='it-IT'">
  164. {{child.name_ita}}
  165. </view>
  166. <view class="" style="margin-top: 12rpx;">
  167. <span
  168. style="color:rgba(204, 51, 0, 1) ;font-size: 26rpx;">¥{{child.price}}</span>
  169. </view>
  170. </view>
  171. </view>
  172. </swiper-item>
  173. </swiper>
  174. </view>
  175. </view>
  176. <view class="recommend">
  177. <view class="title">{{i18n.Productdetails}}</view>
  178. <view class="" style="margin-top: 32rpx;margin-bottom:28rpx">{{i18n.Specification}}</view>
  179. <view class="specification">
  180. <view class="item u-flex" style='margin-bottom:28rpx' v-for="(item,idx) in goodinfo.parameter"
  181. :key="idx">
  182. <view style='width:150rpx;'>{{item.name}}</view>
  183. <text style='margin-left:58rpx'>{{item.value}}</text>
  184. </view>
  185. </view>
  186. <view class="">
  187. <image :src="goodinfo.image" style="width: 100%;height: 580rpx;" mode=""></image>
  188. </view>
  189. </view>
  190. <view class="" style="height: 158rpx;"></view>
  191. <view class="fix u-flex u-row-between">
  192. <view class="u-flex" style="column-gap: 35rpx;">
  193. <view class="u-flex" style="justify-content: center;flex-direction: column;">
  194. <image src="../static/images/index/service.png" style='width:40rpx;height:40rpx' mode="">
  195. </image>
  196. <view class="ke">{{i18n.Customer}}</view>
  197. </view>
  198. <view class="u-flex" style="justify-content: center;flex-direction: column;" @click="shopping">
  199. <image src="../static/cart1.png" style='width:40rpx;height:40rpx' mode=""></image>
  200. <view class="ke">{{i18n.Shopping}}</view>
  201. </view>
  202. <view class="u-flex" style="justify-content: center;flex-direction: column;" @click="">
  203. <!-- <image src="../static/images/index/attention.png" style='width:40rpx;height:40rpx' mode=""> -->
  204. <image src="../static/images/index/bottom1.png" style='width:40rpx;height:40rpx' mode="">
  205. </image>
  206. <!-- <view class="ke">{{i18n.follow}}</view> -->
  207. <view class="ke" style="color: rgba(248, 50, 36, 1);">已关注</view>
  208. </view>
  209. </view>
  210. <view class="join" @click="join(0)">加入购物车</view>
  211. <view class="pin" @click="join(1)">立即拼团</view>
  212. <!-- <view class="tongzhi" @click="inform">
  213. {{i18n.notification}}
  214. </view> -->
  215. </view>
  216. </view>
  217. </scroll-view>
  218. <!-- 加入购物车 -->
  219. <u-popup :round="10" :show="show">
  220. <view style="padding:48rpx 28rpx;box-sizing: border-box;position: relative;">
  221. <view class="u-flex">
  222. <image :src="goodinfo.image" style="width: 192rpx;height: 192rpx;" mode=""></image>
  223. <view class="" style="margin-left: 20rpx;">
  224. <view class="">
  225. <text class="read">¥</text>
  226. <text class="read" style="font-size: 40rpx;"
  227. v-if="goodinfo.is_discount==0">{{(Number(sku_info.discount_price)*Number(value)) || (Number(goodinfo.discount_price) * Number(value))}}</text>
  228. <!-- <text class="read" v-if="goodinfo.is_discount==0">{{(goodinfo.discount_price * value).slice(-3)}}</text> -->
  229. <text class="read" style="font-size: 40rpx;"
  230. v-if="goodinfo.is_discount==1">{{(Number(sku_info.price)*Number(value))|| (Number(goodinfo.price) * Number(value))}}</text>
  231. <!-- <text class="read" v-if="goodinfo.is_discount==1">{{(goodinfo.price * value).slice(-3)}}</text> -->
  232. <!-- <text class="read" style="font-size: 40rpx;" >{{(Number(goodinfo.price) * Number(value)).toString()}}</text> -->
  233. </view>
  234. <text class="guige">已选:{{selectArr.join(',')||i18n.selection}}</text>
  235. </view>
  236. </view>
  237. <view class="" style="position: absolute;top: 48rpx;right: 28rpx;" @click="show=false">
  238. <u-icon name="close" @click="show==false" color="#000" size="28"></u-icon>
  239. </view>
  240. <view class="" v-for="(item,index) in goodinfo.sku">
  241. <view class="title1" style="margin-top: 40rpx;margin-bottom: 32rpx;">
  242. {{item.name}}
  243. </view>
  244. <view class="u-flex" style="column-gap: 18rpx;flex-wrap: wrap;">
  245. <view class="" :class="selectArr[index]==child?'acttab':'tabs'"
  246. v-for="(child,idx) in item.values" :key="idx" @click="actabs(index,child,item)">
  247. {{child}}
  248. </view>
  249. </view>
  250. </view>
  251. <view class="u-flex u-row-between" style="margin-top: 30rpx;">
  252. <text class="title1">数量</text>
  253. <u-number-box v-model="value" @change="valChange"></u-number-box>
  254. </view>
  255. <view class="" style="height: 200rpx;"></view>
  256. <view class="bottoma">
  257. <view v-if="shopcar==0" class="btn" @click="joincart">
  258. 加入购物车
  259. </view>
  260. <view v-if="shopcar==1" class="btn" @click="order">
  261. 立即购买
  262. </view>
  263. <view v-if="shopcar==2" class="btn" @click="show = false">
  264. 确定
  265. </view>
  266. </view>
  267. </view>
  268. </u-popup>
  269. <u-popup :show="serve">
  270. <view style="padding:48rpx 24rpx;box-sizing: border-box;background-color: #FFF3E7;position: relative;">
  271. <view class="u-flex" style="flex-direction: column;justify-content: center;">
  272. <image src="../static/images/index/serve.png" style="width: 138rpx;height: 34rpx;" mode=""></image>
  273. <text class="info">
  274. 售前售后 安心无忧购物
  275. </text>
  276. </view>
  277. <view class="" style="position: absolute;top: 48rpx;right:24rpx;" @click="serve = false">
  278. <u-icon name="close" style="width: 22rpx;height: 22rpx;"></u-icon>
  279. </view>
  280. <view class="contenta">
  281. <view class="">
  282. <view class="title">丢包丢件</view>
  283. <view class="content">快件如果在运输过程中出现损毁,将按照保价</view>
  284. </view>
  285. <view class="" style='margin-top:36rpx'>
  286. <view class="title">丢包丢件</view>
  287. <view class="content">快件如果在运输过程中出现损毁,将按照保价</view>
  288. </view>
  289. <view class="" style='margin-top:36rpx'>
  290. <view class="title">丢包丢件</view>
  291. <view class="content">快件如果在运输过程中出现损毁,将按照保价</view>
  292. </view>
  293. </view>
  294. <view class="button" @click="serve = false">
  295. {{i18n.know}}
  296. </view>
  297. </view>
  298. </u-popup>
  299. <u-popup :round="10" :show="share" bgColor=' rgba(244, 244, 244, 1);'>
  300. <view
  301. style="padding:48rpx 24rpx;box-sizing: border-box;background-color: rgba(244, 244, 244, 1);border-radius: 10px 10px 0 0 ;">
  302. <view class="u-flex u-row-between" style="">
  303. <view class="" style="width: 28px;height: 28px;"></view>
  304. <text class="info" style="font-size: 32rpx;">
  305. {{i18n.shar}}
  306. </text>
  307. <image src="../static/images/index/bottom2.png" style="width: 40rpx;height: 40rpx;">
  308. </view>
  309. <!-- <view class="" style="position: absolute;top: 48rpx;right:24rpx;">
  310. </view> -->
  311. <view class="u-flex u-row-between" style="margin-top: 82rpx;padding: 0 140rpx;">
  312. <view class="">
  313. <image src="../static/images/index/link.png" style="width: 108rpx;height: 108rpx;" mode="">
  314. </image>
  315. <view class="link">{{i18n.Copylink}}</view>
  316. </view>
  317. <view class="" @click="builder">
  318. <image src="../static/images/index/image.png" style="width: 108rpx;height: 108rpx;" mode="">
  319. </image>
  320. <view class="link">{{i18n.Generatepicture}}</view>
  321. </view>
  322. </view>
  323. <view class="button" @click="share = false" style="background: #fff;color: #555555;margin-top: 58rpx;">
  324. {{i18n.Cancel}}
  325. </view>
  326. </view>
  327. </u-popup>
  328. <u-popup :show="imagea" bgColor=' rgba(244, 244, 244, 0);' mode='center' :customStyle="{alignItems: 'center'}">
  329. <view class="u-fle" style="display: flex; justify-content: flex-end;width: 100%;">
  330. <u-icon name="close" @click="imagea==false" color="#fff" size="28"></u-icon>
  331. </view>
  332. <view
  333. style="padding:48rpx 24rpx;box-sizing: border-box;background-color: rgba(255, 255, 255, 1);border-radius: 16rpx;width: 538rpx;">
  334. <view class="" style="">
  335. <image src="../static/images/index/bottom2.png" style="width: 490rpx;height: 490rpx;">
  336. </view>
  337. <view class="money">
  338. <span>¥</span>
  339. <span style="font-size: 36rpx;">258</span>
  340. <span>00</span>
  341. </view>
  342. <view class="title">布兰德低温烘焙猫粮全价通用高端鲜肉成猫幼</view>
  343. <view class=""
  344. style="display: flex;flex-direction: column;align-items: center;justify-content: center;margin-top: 44rpx;">
  345. <image src="../static/images/logo.png" style="width: 132rpx;height: 132rpx;" mode=""></image>
  346. <view class="view">长按识别查看</view>
  347. </view>
  348. </view>
  349. <view class="button" style="width: 658rpx;">保存到相册</view>
  350. </u-popup>
  351. </view>
  352. </template>
  353. <script>
  354. export default {
  355. data() {
  356. return {
  357. rate: '', //星级
  358. imagea: false,
  359. list1: [{
  360. name: '商品',
  361. }, {
  362. name: '评价',
  363. }, {
  364. name: '详情'
  365. }, ],
  366. current: 0,
  367. // 购物车
  368. show: false,
  369. //服务
  370. serve: false,
  371. //分享
  372. share: false,
  373. value: 1, //步进器的值
  374. swiptlist: [], //推荐列表
  375. actab: 0,
  376. id: '', //商品id
  377. language: '',
  378. goodinfo: {}, //商品详情
  379. duration: 0, //tabs选项
  380. actidx: 0,
  381. subIndex: [],
  382. selectArr: [],
  383. shopcar: '',
  384. sku_info: {},
  385. commentlist: []
  386. };
  387. },
  388. computed: {
  389. i18n() {
  390. return this.$t('index')
  391. }
  392. },
  393. onLoad(options) {
  394. this.id = options.id
  395. this.comment()
  396. },
  397. onShow() {
  398. if (uni.getStorageSync('language') != '') {
  399. this.language = uni.getStorageSync('language')
  400. }
  401. this.detail(this.id)
  402. this.recommend()
  403. },
  404. methods: {
  405. sele(){
  406. this.shopcar = 2
  407. this.show = true
  408. },
  409. //跳转到购物车
  410. shopping() {
  411. uni.switchTab({
  412. url: "/pages/cart/cart"
  413. })
  414. },
  415. //评论接口
  416. comment() {
  417. uni.$u.http.post('/api/goods/goods_comment', {
  418. merchant_goods_id: this.goodinfo.merchant_goods_id,
  419. page: 1,
  420. limit: 2
  421. }).then((res) => {
  422. console.log('comment', res);
  423. this.commentlist = res.data
  424. }).catch(() => {
  425. })
  426. },
  427. //商品推荐
  428. recommend() {
  429. uni.$u.http.post('/api/goods/recommend', {
  430. keyword: '',
  431. }).then((res) => {
  432. this.swiptlist = res.reduce((a, b) => {
  433. let lastIndex = a.length - 1
  434. if (a[lastIndex].length < 3) {
  435. a[lastIndex].push(b)
  436. } else {
  437. a.push([b])
  438. }
  439. return a
  440. }, [
  441. []
  442. ])
  443. }).catch(() => {
  444. })
  445. },
  446. //逛逛
  447. goshop() {
  448. uni.navigateTo({
  449. url: '/pageD/homepage/homepage'
  450. })
  451. },
  452. detail(id) {
  453. uni.$u.http.get('/api/goods/detail/' + id, ).then((res) => {
  454. console.log(res);
  455. this.goodinfo = res
  456. this.comment()
  457. }).catch(() => {
  458. })
  459. },
  460. scrollToPosition() {
  461. console.log(111);
  462. // 使用$refs获取目标位置的DOM元素
  463. const targetElement = this.$refs.targetPosition;
  464. // 调用scrollToView方法滚动到目标位置
  465. this.$refs.scrollView.scrollToView('targetPosition');
  466. },
  467. actabs(index, child, idx) {
  468. // this.actidx = index
  469. // this.actab = child
  470. console.log(this.selectArr);
  471. if (this.selectArr[index] != child) {
  472. this.$set(this.selectArr, index, child);
  473. this.$set(this.subIndex, index, idx);
  474. } else {
  475. this.$set(this.selectArr, index, '');
  476. this.$set(this.subIndex, index, -1); //去掉选中颜色
  477. }
  478. this.goodinfo.sku_item.forEach(ite => {
  479. console.log(ite.item);
  480. console.log(this.selectArr.join(','));
  481. if (ite.item == this.selectArr.join(',')) {
  482. this.sku_info = ite
  483. }
  484. })
  485. console.log(this.sku_info);
  486. },
  487. order() {
  488. uni.navigateTo({
  489. url: '/pageA/order?sku=' + encodeURIComponent(JSON.stringify(this.sku_info)) + '&value=' + this
  490. .value + '&goodinfo=' + encodeURIComponent(JSON.stringify(this.goodinfo))
  491. })
  492. // console.log(JSON.stringify(this.sku_info));
  493. },
  494. //生成图片弹窗
  495. builder() {
  496. this.imagea = true
  497. this.share = false
  498. },
  499. //加入购物车
  500. joincart() {
  501. this.show = false
  502. uni.$u.http.post('/api/cart/save', {
  503. goods_id: this.id, //63 是 String 商品id
  504. goods_num: this.value, //1 是 String 商品数量
  505. sku_item_id: this.sku_info.id, //38 是 String 规格详情id
  506. merchant_goods_id: this.goodinfo.merchant_goods_id, //38 是 String 团长商品id
  507. belong: this.goodinfo.source, //是 String 商品归属 0 团长 1 平台自营 2 团长发布或者分享的平台自营商品、 供应链商品
  508. share_merchant_id: '', //是 String 分享团长id
  509. }).then((res) => {
  510. console.log(res);
  511. this.$u.toast('添加成功')
  512. }).catch(() => {
  513. })
  514. },
  515. valChange(e) {
  516. return e.value
  517. },
  518. navigateBack() {
  519. uni.navigateBack()
  520. },
  521. click(item) {
  522. this.current = item
  523. console.log(item);
  524. if (item.index == 1) {
  525. this.scrollToPosition()
  526. }
  527. },
  528. join(index) {
  529. this.show = true
  530. this.shopcar = index
  531. },
  532. //通知
  533. inform() {
  534. uni.showToast({
  535. title: this.i18n.shelves,
  536. icon: 'none',
  537. duration: 2000
  538. });
  539. },
  540. //复制
  541. onLongPress(e) {
  542. // 获取长按的文本内容
  543. let text = e.target.innerText;
  544. console.log(e);
  545. // 执行复制操作
  546. uni.setClipboardData({
  547. data: text,
  548. success: () => {
  549. uni.showToast({
  550. title: this.i18n.Copiedpaste,
  551. duration: 2000
  552. });
  553. },
  554. fail: () => {
  555. uni.showToast({
  556. title: this.i18n.Replicationfailure,
  557. icon: 'none',
  558. duration: 2000
  559. });
  560. }
  561. });
  562. }
  563. }
  564. }
  565. </script>
  566. <style lang="scss" scoped>
  567. .sku {
  568. font-family: PingFangSC, PingFang SC;
  569. font-weight: 400;
  570. font-size: 20rpx;
  571. color: #888888;
  572. line-height: 28rpx;
  573. text-align: left;
  574. font-style: normal;
  575. }
  576. .acttab {
  577. height: 68rpx;
  578. padding: 14rpx 30rpx;
  579. text-align: center;
  580. box-sizing: border-box;
  581. display: inline;
  582. background: rgba(248, 50, 36, 0.06);
  583. border-radius: 6rpx;
  584. border: 2rpx solid #F83224;
  585. font-family: PingFangSC, PingFang SC;
  586. font-weight: 400;
  587. font-size: 28rpx;
  588. color: #F83224;
  589. line-height: 40rpx;
  590. }
  591. .read {
  592. font-family: HarmonyOS_Sans_Medium;
  593. font-size: 26rpx;
  594. color: #F83224;
  595. line-height: 36rpx;
  596. text-align: left;
  597. font-style: normal;
  598. }
  599. // ::v-deep .u-popup__content{
  600. // background-color: rgba(0,0,0,0) !important;
  601. // }
  602. .money {
  603. font-family: HarmonyOS_Sans_Medium;
  604. font-size: 20rpx;
  605. color: #F83224;
  606. line-height: 26rpx;
  607. text-align: left;
  608. font-style: normal;
  609. }
  610. .title {
  611. font-family: PingFangSC, PingFang SC;
  612. font-weight: 400;
  613. font-size: 28rpx;
  614. color: #222222;
  615. line-height: 40rpx;
  616. text-align: left;
  617. font-style: normal;
  618. margin-top: 16rpx;
  619. }
  620. .view {
  621. font-family: PingFangSC, PingFang SC;
  622. font-weight: 400;
  623. font-size: 20rpx;
  624. color: #777777;
  625. line-height: 28rpx;
  626. text-align: left;
  627. font-style: normal;
  628. margin-top: 12rpx;
  629. }
  630. .actabs {
  631. width: 116rpx;
  632. height: 68rpx;
  633. background: rgba(248, 50, 36, 0.06);
  634. border-radius: 6rpx;
  635. border: 2rpx solid #F83224;
  636. }
  637. .bottoma {
  638. width: 750rpx;
  639. height: 166rpx;
  640. background: #FFFFFF;
  641. padding: 16rpx 44rpx 0;
  642. position: fixed;
  643. bottom: 0;
  644. left: 0;
  645. .btn {
  646. width: 662rpx;
  647. height: 84rpx;
  648. background: #F83224;
  649. border-radius: 44rpx;
  650. font-family: PingFangSC, PingFang SC;
  651. font-weight: 500;
  652. font-size: 32rpx;
  653. color: #FFFFFF;
  654. line-height: 84rpx;
  655. text-align: center;
  656. font-style: normal;
  657. }
  658. }
  659. .title1 {
  660. font-family: PingFangSC, PingFang SC;
  661. font-weight: 550;
  662. font-size: 32rpx;
  663. color: #222222;
  664. line-height: 44rpx;
  665. text-align: left;
  666. font-style: normal;
  667. }
  668. .tabs {
  669. // width: 276rpx;
  670. height: 68rpx;
  671. padding: 14rpx 30rpx;
  672. text-align: center;
  673. background: #F4F4F4;
  674. border-radius: 6rpx;
  675. box-sizing: border-box;
  676. display: inline;
  677. font-size: 28rpx;
  678. border: 2rpx solid rgba(151, 151, 151, 0);
  679. line-height: 40rpx;
  680. // line-height: 68rpx;
  681. }
  682. .link {
  683. font-family: PingFangSC, PingFang SC;
  684. font-weight: 400;
  685. font-size: 28rpx;
  686. color: #555555;
  687. line-height: 40rpx;
  688. text-align: left;
  689. font-style: normal;
  690. margin-top: 16rpx;
  691. }
  692. .tongzhi {
  693. width: 422rpx;
  694. height: 76rpx;
  695. background: #FFB515;
  696. border-radius: 40rpx;
  697. font-family: PingFangSC, PingFang SC;
  698. font-weight: 500;
  699. font-size: 28rpx;
  700. color: #FFFFFF;
  701. line-height: 76rpx;
  702. text-align: center;
  703. font-style: normal;
  704. }
  705. .info {
  706. font-family: PingFangSC, PingFang SC;
  707. font-weight: 400;
  708. font-size: 20rpx;
  709. color: #222222;
  710. line-height: 28rpx;
  711. text-align: left;
  712. font-style: normal;
  713. margin-top: 18rpx;
  714. }
  715. .button {
  716. // width: 662rpx;
  717. height: 88rpx;
  718. background: #F83224;
  719. border-radius: 44rpx;
  720. margin-top: 24rpx;
  721. font-family: PingFangSC, PingFang SC;
  722. font-weight: 500;
  723. font-size: 32rpx;
  724. color: #FFFFFF;
  725. line-height: 88rpx;
  726. text-align: center;
  727. font-style: normal;
  728. }
  729. .contenta {
  730. width: 702rpx;
  731. // height: 590rpx;
  732. background: #FFFFFF;
  733. border-radius: 20rpx;
  734. margin-top: 26rpx;
  735. padding: 28rpx 24rpx;
  736. box-sizing: border-box;
  737. .title {
  738. font-family: PingFangSC, PingFang SC;
  739. font-weight: 500;
  740. font-size: 30rpx;
  741. color: #222222;
  742. line-height: 42rpx;
  743. text-align: left;
  744. font-style: normal;
  745. }
  746. .content {
  747. font-family: PingFangSC, PingFang SC;
  748. font-weight: 400;
  749. font-size: 26rpx;
  750. color: #222222;
  751. line-height: 36rpx;
  752. text-align: left;
  753. font-style: normal;
  754. margin-top: 20rpx;
  755. }
  756. }
  757. .back {
  758. background-color: #F4F4F4;
  759. padding: 20rpx;
  760. box-sizing: border-box;
  761. .guige {}
  762. .fix {
  763. width: 750rpx;
  764. height: 158rpx;
  765. background: #FFFFFF;
  766. padding: 14rpx 28rpx;
  767. box-sizing: border-box;
  768. position: fixed;
  769. bottom: 0;
  770. left: 0;
  771. .ke {
  772. font-family: PingFangSC, PingFang SC;
  773. font-weight: 400;
  774. font-size: 20rpx;
  775. color: #333333;
  776. line-height: 28rpx;
  777. text-align: left;
  778. font-style: normal;
  779. }
  780. .join {
  781. width: 208rpx;
  782. height: 76rpx;
  783. border-radius: 40rpx;
  784. border: 1rpx solid #FF1515;
  785. font-family: PingFangSC, PingFang SC;
  786. font-weight: 500;
  787. font-size: 28rpx;
  788. color: #F83224;
  789. line-height: 76rpx;
  790. text-align: left;
  791. font-style: normal;
  792. text-align: center;
  793. }
  794. .pin {
  795. width: 208rpx;
  796. height: 76rpx;
  797. background: #F83224;
  798. border-radius: 40rpx;
  799. font-family: PingFangSC, PingFang SC;
  800. font-weight: 500;
  801. font-size: 28rpx;
  802. color: #FFFFFF;
  803. line-height: 76rpx;
  804. text-align: center;
  805. font-style: normal;
  806. }
  807. }
  808. // 规格
  809. .specification {
  810. width: 670rpx;
  811. // height: 280rpx;
  812. background: #F4F4F4;
  813. padding: 24rpx 22rpx;
  814. box-sizing: border-box;
  815. view:last-of-type {
  816. margin-bottom: 0rpx !important;
  817. }
  818. .item {
  819. font-family: PingFangSC, PingFang SC;
  820. font-weight: 400;
  821. font-size: 26rpx;
  822. color: #333333;
  823. line-height: 36rpx;
  824. text-align: left;
  825. font-style: normal;
  826. }
  827. }
  828. // 推荐
  829. .recommend {
  830. width: 710rpx;
  831. // height: 476rpx;
  832. background: #FFFFFF;
  833. border-radius: 16rpx;
  834. padding: 24rpx 20rpx;
  835. margin-top: 20rpx;
  836. box-sizing: border-box;
  837. .title {
  838. font-family: PingFangSC, PingFang SC;
  839. font-weight: 550;
  840. font-size: 28rpx;
  841. color: #222222;
  842. line-height: 40rpx;
  843. text-align: left;
  844. font-style: normal;
  845. }
  846. }
  847. //店铺
  848. .store {
  849. width: 710rpx;
  850. height: 160rpx;
  851. background: #FFFFFF;
  852. border-radius: 16rpx;
  853. padding: 24rpx 20rpx;
  854. box-sizing: border-box;
  855. margin-top: 20rpx;
  856. .line {
  857. background: rgba(151, 151, 151, 1);
  858. width: 4rpx;
  859. height: 20rpx;
  860. margin: 0 18rpx;
  861. }
  862. .num {
  863. font-family: SFPro, SFPro;
  864. font-weight: 400;
  865. font-size: 20rpx;
  866. color: #777777;
  867. line-height: 24rpx;
  868. text-align: left;
  869. font-style: normal;
  870. }
  871. .goshop {
  872. // width: 108rpx;
  873. height: 52rpx;
  874. border-radius: 26rpx;
  875. border: 1rpx solid #FF1515;
  876. font-family: PingFangSC, PingFang SC;
  877. font-weight: 400;
  878. font-size: 24rpx;
  879. color: #F83224;
  880. line-height: 52rpx;
  881. text-align: center;
  882. font-style: normal;
  883. padding: 0 20rpx;
  884. box-sizing: border-box;
  885. }
  886. }
  887. // 评论
  888. .comment {
  889. width: 710rpx;
  890. // height: 356rpx;
  891. background: #FFFFFF;
  892. border-radius: 16rpx;
  893. margin-top: 20rpx;
  894. padding: 24rpx 20rpx;
  895. box-sizing: border-box;
  896. .content {
  897. margin-top: 20rpx;
  898. font-family: PingFangSC, PingFang SC;
  899. font-weight: 400;
  900. font-size: 26rpx;
  901. color: #444444;
  902. line-height: 36rpx;
  903. text-align: left;
  904. font-style: normal;
  905. max-height: 112rpx;
  906. overflow: hidden;
  907. text-overflow: ellipsis;
  908. white-space: wrap;
  909. -webkit-line-clamp: 3
  910. }
  911. .name {
  912. font-family: PingFangSC, PingFang SC;
  913. font-weight: 400;
  914. font-size: 24rpx;
  915. color: #222222;
  916. line-height: 34rpx;
  917. text-align: left;
  918. font-style: normal;
  919. margin-left: 16rpx;
  920. }
  921. .ping {
  922. font-family: PingFangSC, PingFang SC;
  923. font-weight: 500;
  924. font-size: 28rpx;
  925. color: #222222;
  926. line-height: 40rpx;
  927. text-align: left;
  928. font-style: normal;
  929. }
  930. .strip {
  931. font-family: PingFangSC, PingFang SC;
  932. font-weight: 400;
  933. font-size: 24rpx;
  934. color: #444444;
  935. line-height: 34rpx;
  936. text-align: left;
  937. font-style: normal;
  938. }
  939. }
  940. //服务
  941. .serve {
  942. width: 710rpx;
  943. height: 180rpx;
  944. background: #FFFFFF;
  945. border-radius: 16rpx;
  946. padding: 32rpx 20rpx;
  947. box-sizing: border-box;
  948. .top {
  949. .change {
  950. font-family: PingFangSC, PingFang SC;
  951. font-weight: 400;
  952. font-size: 28rpx;
  953. color: #666666;
  954. line-height: 40rpx;
  955. text-align: left;
  956. font-style: normal;
  957. }
  958. }
  959. }
  960. //折扣
  961. .discount {
  962. position: relative;
  963. height: 312rpx;
  964. .top {
  965. width: 710rpx;
  966. height: 124rpx;
  967. background: linear-gradient(295deg, #FB6662 0%, #FD403B 100%);
  968. border-radius: 16rpx 16rpx 0 0;
  969. padding: 20rpx;
  970. box-sizing: border-box;
  971. line-height: 98rpx;
  972. .count {
  973. font-family: PingFangSC, PingFang SC;
  974. font-weight: 400;
  975. font-size: 20rpx;
  976. color: #FFFFFF;
  977. text-align: left;
  978. font-style: normal;
  979. }
  980. .money {
  981. font-size: 20rpx;
  982. font-family: HarmonyOS_Sans_Medium;
  983. font-size: 20rpx;
  984. color: #FFFFFF;
  985. text-align: left;
  986. font-style: normal;
  987. margin-left: 8rpx
  988. }
  989. .right {
  990. font-family: HarmonyOS_Sans;
  991. font-size: 24rpx;
  992. color: #FFFFFF;
  993. text-align: left;
  994. font-style: normal;
  995. text-decoration-line: line-through;
  996. margin-left: 16rpx
  997. }
  998. }
  999. .bottom {
  1000. width: 710rpx;
  1001. height: 208rpx;
  1002. background: #FFFFFF;
  1003. border-radius: 16rpx;
  1004. position: absolute;
  1005. top: 104rpx;
  1006. z-index: 2;
  1007. padding: 28rpx 20rpx;
  1008. box-sizing: border-box;
  1009. .title {
  1010. margin-top: 24rpx;
  1011. font-family: PingFangSC, PingFang SC;
  1012. font-weight: 550;
  1013. font-size: 32rpx;
  1014. color: #222222;
  1015. line-height: 44rpx;
  1016. text-align: left;
  1017. font-style: normal;
  1018. }
  1019. }
  1020. .tabs {
  1021. // width: 104rpx;
  1022. height: 40rpx;
  1023. background: rgba(255, 21, 21, 0.1);
  1024. border-radius: 4rpx;
  1025. padding: 4rpx 8rpx;
  1026. font-family: PingFangSC, PingFang SC;
  1027. font-weight: 400;
  1028. font-size: 22rpx;
  1029. color: #FF1515;
  1030. line-height: 40rpx;
  1031. text-align: center;
  1032. font-style: normal;
  1033. }
  1034. }
  1035. }
  1036. // 轮播图
  1037. .uni-margin-wrap {
  1038. width: 750rpx;
  1039. width: 100%;
  1040. .swiper {
  1041. height: 750rpx;
  1042. }
  1043. .swiper-item {
  1044. display: block;
  1045. height: 300rpx;
  1046. line-height: 300rpx;
  1047. text-align: center;
  1048. }
  1049. .swiper-list {
  1050. margin-top: 40rpx;
  1051. margin-bottom: 0;
  1052. }
  1053. .uni-common-mt {
  1054. margin-top: 60rpx;
  1055. position: relative;
  1056. }
  1057. .info {
  1058. position: absolute;
  1059. right: 20rpx;
  1060. }
  1061. .uni-padding-wrap {
  1062. width: 550rpx;
  1063. padding: 0 100rpx;
  1064. }
  1065. }
  1066. ::v-deep .u-popup__content data-v-17becaea {
  1067. align-items: center !important;
  1068. }
  1069. </style>