productdetails.vue 34 KB

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