productdetails.vue 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631
  1. <template>
  2. <view class="page">
  3. <!-- 页面内容 -->
  4. <!-- 自定义导航栏 -->
  5. <u-navbar :safeAreaInsetTop="true" :placeholder="true">
  6. <view class="u-nav-slot u-flex" slot="left" style="display: flex">
  7. <view class="u-flex">
  8. <u-icon name="arrow-left" size="19" @click="returnindex"></u-icon>
  9. <u-tabs :duration="duration" @click="scrollToPosition" :list="list1" lineColor="#fff"
  10. :activeStyle="{ color: '#FF1515' }" :inactiveStyle="{
  11. color: ' #666666',
  12. }"></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="" @click="sharea">
  20. <image src="static/images/share.png" style="width: 38rpx; height: 38rpx" mode=""></image>
  21. </view>
  22. <view class="" style="width: 200rpx"></view>
  23. </view>
  24. </u-navbar>
  25. <!-- 商品图片 -->
  26. <scroll-view ref="scrollView" scroll-y="true" style="min-height: 100vh" :scroll-into-view="toView"
  27. scroll-with-animation="true">
  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 :poster="goodinfo.image" style="width: 100%; height: 100%" :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="item" 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">{{goodinfo.discount_price?goodinfo.discount_price.slice(0, -3):''}}</text>
  49. <text class="money">{{ goodinfo.discount_price?goodinfo.discount_price.slice(-3):'' }}</text>
  50. <!-- <text class="right" v-if="goodinfo.is_discount == 0">¥{{ goodinfo.price }}</text> -->
  51. <text class="right" v-if="goodinfo.is_discount == 0">¥{{ goodinfo.price * value }}</text>
  52. </view>
  53. <view class="bottom">
  54. <view class="u-flex" style="column-gap: 16rpx">
  55. <div v-for="(tab, idx) in goodinfo.label_arr" :key="idx">
  56. <text v-if="language == 'zh-CN'" class="tabs">{{
  57. tab.name_cn
  58. }}</text>
  59. <text v-if="language == 'en-US'" class="tabs">{{
  60. tab.name_en
  61. }}</text>
  62. <text v-if="language == 'es-ES'" class="tabs">{{
  63. tab.name_es
  64. }}</text>
  65. <text v-if="language == 'it-IT'" class="tabs">{{
  66. tab.name_ita
  67. }}</text>
  68. </div>
  69. </view>
  70. <view class="">
  71. <text class="title" v-if="language == 'zh-CN'">
  72. {{ goodinfo.name_cn }}
  73. </text>
  74. <text class="title" selectable @longpress="onLongPress" v-if="language == 'en-US'">
  75. {{ goodinfo.name_en }}
  76. </text>
  77. <text class="title" selectable @longpress="onLongPress" v-if="language == 'es-ES'">
  78. {{ goodinfo.name_es }}
  79. </text>
  80. <text class="title" selectable @longpress="onLongPress" v-if="language == 'it-IT'">
  81. {{ goodinfo.name_ita }}
  82. </text>
  83. </view>
  84. </view>
  85. </view>
  86. <!-- 服务 -->
  87. <view class="serve" style="margin-top: 20rpx">
  88. <view class="top u-flex u-row-between" @click="sele">
  89. <view class="u-flex">
  90. <view class="change">{{ i18n.Sele }}</view>
  91. <view class="" style="margin-left: 20rpx">
  92. {{ selectArr.length > 0 ? selectArr.join(",") : i18n.Sele }}
  93. </view>
  94. </view>
  95. <view class="">
  96. <u-icon name="arrow-right" size="16"></u-icon>
  97. </view>
  98. </view>
  99. <view class="top u-flex u-row-between" style="margin-top: 36rpx" @click="openfu">
  100. <view class="u-flex">
  101. <view class="change">{{ i18n.service }}</view>
  102. <view v-if="language == 'zh-CN'" class="" style="margin-left: 20rpx">{{ content.name_cn }}
  103. </view>
  104. <view v-if="language == 'en-US'" class="" style="margin-left: 20rpx">{{ content.name_en }}
  105. </view>
  106. <view v-if="language == 'es-ES'" class="" style="margin-left: 20rpx">{{ content.name_es }}
  107. </view>
  108. <view v-if="language == 'it-IT'" class="" style="margin-left: 20rpx">{{ content.name_ita }}
  109. </view>
  110. </view>
  111. <view class="">
  112. <u-icon name="arrow-right" size="16"></u-icon>
  113. </view>
  114. </view>
  115. </view>
  116. <!-- 评论 -->
  117. <view class="comment" ref="targetPosition" id="scroll1">
  118. <view class="u-flex u-row-between">
  119. <text class="ping">{{ i18n.review }}</text>
  120. <view class="u-flex" @click="tocomment">
  121. <text class="strip">{{ total }}{{ i18n.article + i18n.review }}</text>
  122. <u-icon name="arrow-right" size="16"></u-icon>
  123. </view>
  124. </view>
  125. <view class="" v-for="(item, idx) in commentlist" :key="idx">
  126. <view class="uesr u-flex u-row-between" style="margin-top: 36rpx">
  127. <view class="u-flex">
  128. <image :src="item.member.avatar" style="width: 52rpx; height: 52rpx" mode="">
  129. </image>
  130. <text class="name">{{ item.member.nickname }}</text>
  131. </view>
  132. <text class="strip">{{ item.created_at }}</text>
  133. </view>
  134. <view class="content">
  135. {{ item.content }}
  136. </view>
  137. <view class="sku" style="margin-top: 16rpx">{{
  138. item.sku_item.item
  139. }}</view>
  140. </view>
  141. </view>
  142. <!-- 店铺 -->
  143. <view class="store u-flex u-row-between">
  144. <view class="u-flex">
  145. <image :src="goodinfo.merchant.image" style="width: 112rpx; height: 112rpx" mode=""></image>
  146. <view class="" style="margin-left: 20rpx">
  147. <view class="title" style="width: 600">{{
  148. goodinfo.merchant.merchant_name
  149. }}</view>
  150. <view class="redback u-flex">
  151. <uni-rate network allow-half :readonly="true" active-color="red"
  152. color="rgba(255, 27, 0, 0.5)" :size="8" v-model="rate" max="5" />
  153. <text style="margin-left: 8rpx">{{ rate }}</text>
  154. </view>
  155. <view class="" style="margin-top: 20rpx"></view>
  156. <view class="u-flex" style="margin-top: 20rpx">
  157. <text class="num">{{ i18n.Salesvolume }} {{ goodinfo.merchant.sale_num }}</text>
  158. <view class="line"></view>
  159. <!-- 评价总数 -->
  160. <text class="num">{{ i18n.review }} {{ goodinfo.merchant.comment_num }}</text>
  161. </view>
  162. </view>
  163. </view>
  164. <view class="goshop" @click="goshop(goodinfo.merchant.id)">{{
  165. i18n.stroll
  166. }}</view>
  167. </view>
  168. <!-- 推荐 -->
  169. <view class="recommend">
  170. <view class="title">
  171. {{ i18n.Recommended }}
  172. </view>
  173. <view class="" style="margin-top: 10rpx">
  174. <swiper style="height: 400rpx" class="swiper" circular :indicator-dots="true" :autoplay="true">
  175. <swiper-item v-for="(parent, index) in swiptlist" :key="index">
  176. <view class="u-flex swiper-item u-row-between">
  177. <view class="" v-for="(child, idx) in parent" @click="detail(child.id)" :key="idx">
  178. <image :src="child.image" style="
  179. width: 214rpx;
  180. height: 214rpx;
  181. border-radius: 10rpx;
  182. " mode="">
  183. </image>
  184. <view class="over" style="
  185. width: 214rpx;
  186. margin-top: 14rpx;
  187. font-style: normal;
  188. font-size: 26rpx;
  189. " v-if="language == 'zh-CN'">
  190. {{ child.name_cn }}
  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 == 'en-US'">
  198. {{ child.name_en }}
  199. </view>
  200. <view class="over" style="
  201. width: 214rpx;
  202. margin-top: 14rpx;
  203. font-style: normal;
  204. font-size: 26rpx;
  205. " v-if="language == 'es-ES'">
  206. {{ child.name_es }}
  207. </view>
  208. <view class="over" style="
  209. width: 214rpx;
  210. margin-top: 14rpx;
  211. font-style: normal;
  212. font-size: 26rpx;
  213. " v-if="language == 'it-IT'">
  214. {{ child.name_ita }}
  215. </view>
  216. <view class="" style="margin-top: 12rpx">
  217. <span
  218. style="color: rgba(204, 51, 0, 1); font-size: 26rpx">¥{{ child.price }}</span>
  219. </view>
  220. </view>
  221. </view>
  222. </swiper-item>
  223. </swiper>
  224. </view>
  225. </view>
  226. <view class="recommend" id="scroll2">
  227. <view class="title">{{ i18n.Productdetails }}</view>
  228. <view class="" style="margin-top: 32rpx; margin-bottom: 28rpx; font-size: 26rpx">
  229. {{ i18n.Specification }}
  230. </view>
  231. <view class="specification">
  232. <view class="item u-flex" style="margin-bottom: 28rpx" v-for="(item, idx) in goodinfo.parameter"
  233. :key="idx">
  234. <view style="width: 150rpx" v-if="language == 'zh-CN'">{{ item.name }}</view>
  235. <text style="margin-left: 58rpx" v-if="language == 'zh-CN'">{{ item.value }}</text>
  236. <view style="width: 150rpx" v-if="language == 'en-US'">{{ item.name_en }}</view>
  237. <text style="margin-left: 58rpx" v-if="language == 'en-US'">{{ item.value_en }}</text>
  238. <view style="width: 150rpx" v-if="language == 'es-ES'">{{ item.name_es }}</view>
  239. <text style="margin-left: 58rpx" v-if="language == 'es-ES'">{{ item.value_es }}</text>
  240. <view style="width: 150rpx" v-if="language == 'it-IT'">{{ item.name_ita }}</view>
  241. <text style="margin-left: 58rpx" v-if="language == 'it-IT'">{{ item.value_ita }}</text>
  242. </view>
  243. </view>
  244. <view class="" style="margin-top: 28rpx">
  245. <view v-if="language == 'zh-CN'" class="">
  246. <u-parse :content="goodinfo.detail_cn"></u-parse>
  247. </view>
  248. <view v-if="language == 'en-US'" class="">
  249. <u-parse :content="goodinfo.detail_en"></u-parse>
  250. </view>
  251. <view v-if="language == 'es-ES'" class="">
  252. <u-parse :content="goodinfo.detail_es"></u-parse>
  253. </view>
  254. <view v-if="language == 'it-IT'" class="">
  255. <u-parse :content="goodinfo.detail_ita"></u-parse>
  256. </view>
  257. <!-- <image :src="goodinfo.image" style="width: 100%; height: 580rpx" mode=""></image> -->
  258. </view>
  259. </view>
  260. <view class="" style="height: 158rpx"></view>
  261. <view class="fix u-flex u-row-between">
  262. <view class="u-flex" style="column-gap: 35rpx">
  263. <view class="u-flex" style="justify-content: center; flex-direction: column" @click="chat">
  264. <image src="../static/images/index/service.png" style="width: 40rpx; height: 40rpx" mode="">
  265. </image>
  266. <view class="ke">{{ i18n.Customer }}</view>
  267. </view>
  268. <view class="u-flex" style="justify-content: center; flex-direction: column" @click="shopping">
  269. <image src="../static/cart1.png" style="width: 40rpx; height: 40rpx" mode="">
  270. </image>
  271. <view class="ke">{{ i18n.Shopping }}</view>
  272. </view>
  273. <view class="u-flex" style="
  274. justify-content: center;
  275. flex-direction: column;
  276. width: 70rpx;
  277. " @click="fllow">
  278. <image v-if="goodinfo.is_interest == 1" src="../static/images/index/attention.png"
  279. style="width: 40rpx; height: 40rpx" mode=""></image>
  280. <image v-if="goodinfo.is_interest == 0" src="../static/images/index/bottom1.png"
  281. style="width: 40rpx; height: 40rpx" mode="">
  282. </image>
  283. <view v-if="goodinfo.is_interest == 1" class="ke">{{
  284. i18n.follow
  285. }}</view>
  286. <view v-if="goodinfo.is_interest == 0" class="ke" style="color: rgba(248, 50, 36, 1)">
  287. {{ i18n.Followed }}
  288. </view>
  289. </view>
  290. </view>
  291. <view v-if="sku_info.stock_total == 0" class="tongzhi" @click="inform">
  292. {{ i18n.notification }}
  293. </view>
  294. <view v-if="sku_info.stock_total != 0" class="join" @click="join(0)">{{ i18n.Addtocart }}</view>
  295. <view v-if="sku_info.stock_total != 0" class="pin" @click="join(1)">{{
  296. i18n.grouping
  297. }}</view>
  298. </view>
  299. </view>
  300. </scroll-view>
  301. <!-- 加入购物车 -->
  302. <u-popup :round="10" :show="show">
  303. <view style="padding: 48rpx 28rpx; box-sizing: border-box; position: relative">
  304. <view class="u-flex">
  305. <image :src="
  306. sku_info.image==null ? goodinfo.image : sku_info.image
  307. " style="width: 192rpx; height: 192rpx" mode="">
  308. </image>
  309. <view class="" style="margin-left: 20rpx">
  310. <view class="">
  311. <text class="read">¥</text>
  312. <text class="read" style="font-size: 40rpx; font-weight: 600">{{
  313. (Number(sku_info.discount_price * 100) * Number(value * 100)) /
  314. 10000 ||
  315. (Number(goodinfo.discount_price * 100) * Number(value * 100)) /
  316. 10000
  317. }}</text>
  318. <!-- <text class="read" v-if="goodinfo.is_discount==0">{{(goodinfo.discount_price * value).slice(-3)}}</text> -->
  319. <!-- <text class="read" style="font-size: 40rpx;font-weight: 600;"
  320. v-if="goodinfo.is_discount == 1">{{
  321. (Number(sku_info.price * 100) * Number(value * 100)) /
  322. 10000 ||
  323. (Number(goodinfo.price * 100) * Number(value * 100)) / 10000
  324. }}</text> -->
  325. <!-- <text class="read" v-if="goodinfo.is_discount==1">{{(goodinfo.price * value).slice(-3)}}</text> -->
  326. <!-- <text class="read" style="font-size: 40rpx;" >{{(Number(goodinfo.price) * Number(value)).toString()}}</text> -->
  327. </view>
  328. <text class="guige">{{ i18n.Selected }}:{{
  329. selectArr.join(",") || i18n.selection
  330. }}</text>
  331. </view>
  332. </view>
  333. <view class="" style="position: absolute; top: 48rpx; right: 28rpx" @click="close">
  334. <u-icon name="close" color="#000" size="28"></u-icon>
  335. </view>
  336. <view class="" v-for="(item, index) in goodinfo.sku">
  337. <view v-if="language == 'zh-CN'" class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
  338. {{ item.name }}
  339. </view>
  340. <view v-if="language == 'en-US'" class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
  341. {{ item.name_en }}
  342. </view>
  343. <view v-if="language == 'es-ES'" class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
  344. {{ item.name_es }}
  345. </view>
  346. <view v-if="language == 'it-IT'" class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
  347. {{ item.name_ita }}
  348. </view>
  349. <view class="u-flex" style="flex-wrap: wrap">
  350. <view style="margin-right: 18rpx; margin-bottom: 18rpx" class=""
  351. :class="selectArr[index] == child.name || selectArr[index] == child.name_en || selectArr[index] == child.name_es ||selectArr[index] == child.name_ita? 'acttab' : 'tabs'"
  352. v-for="(child, idx) in item.values" :key="idx" @click="actabs(index, child, item)">
  353. <text v-if="language == 'zh-CN'">{{child.name}}</text>
  354. <text v-if="language == 'en-US'">{{child.name_en}}</text>
  355. <text v-if="language == 'es-ES'">{{child.name_es}}</text>
  356. <text v-if="language == 'it-IT'">{{child.name_ita}}</text>
  357. </view>
  358. </view>
  359. </view>
  360. <view class="u-flex u-row-between" style="margin-top: 30rpx">
  361. <text class="title1">{{ i18n.number }}</text>
  362. <u-number-box v-model="value" @change="valChange"></u-number-box>
  363. </view>
  364. <view class="" style="height: 200rpx"></view>
  365. <view class="bottoma">
  366. <view v-if="shopcar == 0" class="btn" @click="joincart">
  367. {{ i18n.Addtocart }}
  368. </view>
  369. <view v-if="shopcar == 1" class="btn" @click="order">
  370. {{ i18n.Buynow }}
  371. </view>
  372. <view v-if="shopcar == 2" class="btn" @click="close">
  373. {{ i18n.enter }}
  374. </view>
  375. </view>
  376. </view>
  377. </u-popup>
  378. <u-popup :show="serve" :round="20">
  379. <view style="
  380. padding: 48rpx 24rpx;
  381. box-sizing: border-box;
  382. background-color: #fff3e7;
  383. position: relative;
  384. border-radius: 20rpx 20rpx 0 0;
  385. ">
  386. <view class="u-flex" style="flex-direction: column; justify-content: center">
  387. <image src="../static/images/index/serve.png" style="width: 138rpx; height: 34rpx" mode=""></image>
  388. <text class="info"> {{ i18n.sales }} </text>
  389. </view>
  390. <view class="" style="position: absolute; top: 48rpx; right: 24rpx" @click="close()">
  391. <u-icon name="close" style="width: 22rpx; height: 22rpx"></u-icon>
  392. </view>
  393. <view class="contenta">
  394. <view class="" v-if="language == 'zh-CN'">
  395. <u-parse :content="content.content_cn"></u-parse>
  396. </view>
  397. <view class="" v-if="language == 'en-US'">
  398. <u-parse :content="content.content_en"></u-parse>
  399. </view>
  400. <view class="" v-if="language == 'es-ES'">
  401. <u-parse :content="content.content_es"></u-parse>
  402. </view>
  403. <view class="" v-if="language == 'it-IT'">
  404. <u-parse :content="content.content_ita"></u-parse>
  405. </view>
  406. </view>
  407. <view class="button" @click="close()">
  408. {{ i18n.know }}
  409. </view>
  410. </view>
  411. </u-popup>
  412. <u-popup :round="10" :show="share" bgColor=" rgba(244, 244, 244, 1);">
  413. <view style="
  414. padding: 48rpx 24rpx;
  415. box-sizing: border-box;
  416. background-color: rgba(244, 244, 244, 1);
  417. border-radius: 10px 10px 0 0;
  418. ">
  419. <view class="u-flex u-row-between" style="">
  420. <view class="" style="width: 28px; height: 28px"></view>
  421. <text class="info" style="font-size: 32rpx">
  422. {{ i18n.shar }}
  423. </text>
  424. <image @click="toxieyi" src="../static/images/index/bottom2.png"
  425. style="width: 40rpx; height: 40rpx">
  426. </image>
  427. </view>
  428. <!-- <view class="" style="position: absolute;top: 48rpx;right:24rpx;">
  429. </view> -->
  430. <view class="u-flex" style="margin-top: 82rpx; padding: 0 140rpx; justify-content: center">
  431. <!-- <view class="" @click="copylink">
  432. <image src="../static/images/index/link.png" style="width: 108rpx; height: 108rpx" mode="">
  433. </image>
  434. <view class="link">{{ i18n.Copylink }}</view>
  435. </view> -->
  436. <view class="u-row-center" style="display: flex; flex-direction: column; align-items: center"
  437. @click="builder">
  438. <image src="../static/images/index/image.png" style="width: 108rpx; height: 108rpx" mode="">
  439. </image>
  440. <view class="link">{{ i18n.Generatepicture }}</view>
  441. </view>
  442. </view>
  443. <view class="button" @click="close" style="background: #fff; color: #555555; margin-top: 58rpx">
  444. {{ i18n.Cancel }}
  445. </view>
  446. </view>
  447. </u-popup>
  448. <u-popup :show="imagea" bgColor=" rgba(244, 244, 244, 0);" mode="center"
  449. :customStyle="{ alignItems: 'center' }">
  450. <view class="u-fle" style="display: flex; justify-content: flex-end; width: 100%">
  451. <u-icon name="close" @click="close()" color="#fff" size="28"></u-icon>
  452. </view>
  453. <image :src="picture2" mode="widthFix"></image>
  454. <view class="button" style="width: 658rpx" @click="saveImage">{{
  455. i18n.album
  456. }}</view>
  457. </u-popup>
  458. <l-painter custom-style="position: fixed; left: 200%" ref="poster"
  459. css="width: 538rpx; height:900rpx; background: #fff;padding:24rpx">
  460. <l-painter-image :src="goodinfo.image" css="width: 490rpx; height: 490rpx" />
  461. <l-painter-text text="¥" css=" padding-top: 20rpx;color:#F83224;" />
  462. <l-painter-text :text="goodinfoyuan"
  463. css="text-align:center; padding-top: 20rpx;color:#F83224; font-size: 26rpx" />
  464. <l-painter-text :text="goodinfoname" css=" padding-top: 20rpx;display:block" />
  465. <l-painter-qrcode :text="'https://cbec.hdlkeji.com/cbec?id=' + id + '&userid=' + userid"
  466. css="width: 132rpx; height: 132rpx;margin-top:44rpx;margin-left:174rpx" />
  467. <l-painter-text :text="i18n.identify"
  468. css=" padding-top: 20rpx;text-align:center;display:block;color:#777777" />
  469. </l-painter>
  470. </view>
  471. </template>
  472. <script>
  473. import WebIM from "@/newSDK/Easemob-chat-4.1.7.js";
  474. import {
  475. conn
  476. } from "@/utils/WebIM";
  477. import list from "../uview-ui/libs/config/props/list";
  478. export default {
  479. data() {
  480. return {
  481. share_merchant_id: "",
  482. toView: "",
  483. imagea: false,
  484. goodinfoname: "",
  485. goodinfoyuan: "",
  486. current: 0,
  487. // 购物车
  488. show: false,
  489. //服务
  490. serve: false,
  491. //分享
  492. share: false,
  493. value: 1, //步进器的值
  494. swiptlist: [], //推荐列表
  495. actab: 0,
  496. id: "", //商品id
  497. language: "zh-CN",
  498. goodinfo: {}, //商品详情
  499. duration: 0, //tabs选项
  500. actidx: 0,
  501. subIndex: [],
  502. selectArr: [],
  503. shopcar: "",
  504. sku_info: {},
  505. commentlist: [],
  506. total: "",
  507. rate: 5,
  508. content: {},
  509. bao: "",
  510. picture2: "",
  511. userid: "",
  512. fu: "",
  513. name_c: "",
  514. childA: ''
  515. };
  516. },
  517. computed: {
  518. i18n() {
  519. return this.$t("index");
  520. },
  521. list1() {
  522. var List = [{
  523. name: this.i18n.mineCommodity,
  524. },
  525. {
  526. name: this.i18n.evaluate,
  527. },
  528. {
  529. name: this.i18n.particulars,
  530. },
  531. ];
  532. return List;
  533. },
  534. },
  535. onLoad(options) {
  536. console.log(options);
  537. if (options.q && options.q != "undefined") {
  538. // 获取到二维码原始链接内容
  539. const qrUrl = decodeURIComponent(options.q);
  540. //此处就是我们要获取的参数 json,通过方法解析
  541. let jsonUrl = this.GetwxUrlParam(qrUrl);
  542. //比如我要得到id的值,直接取值即可
  543. console.log("jsonUrl", jsonUrl);
  544. let id = jsonUrl.id;
  545. this.share_merchant_id = jsonUrl.userid;
  546. this.id = id;
  547. this.comment();
  548. this.detail(this.id);
  549. } else {
  550. if (uni.getStorageSync("user_info")) {
  551. var user_info = uni.getStorageSync("user_info");
  552. this.userid = user_info.id;
  553. console.log(this.userid);
  554. }
  555. this.id = options.id;
  556. this.comment();
  557. this.detail(this.id);
  558. }
  559. },
  560. onShow() {
  561. if (uni.getStorageSync("language") != "") {
  562. this.language = uni.getStorageSync("language");
  563. }
  564. this.recommend();
  565. this.guarantee();
  566. },
  567. mounted() {
  568. this.$refs.poster.canvasToTempFilePathSync({
  569. fileType: "jpg",
  570. quality: 1,
  571. success: (res) => {
  572. // console.log(`mounted`, res.tempFilePath)
  573. this.picture2 = res.tempFilePath;
  574. },
  575. });
  576. },
  577. methods: {
  578. //返佣规则
  579. toxieyi() {
  580. uni.navigateTo({
  581. url: "/pageB/xieyi?code=" + "rebate_proportion",
  582. });
  583. },
  584. //解析链接地址
  585. GetwxUrlParam(url) {
  586. let theRequest = {};
  587. if (url.indexOf("#") != -1) {
  588. const str = url.split("#")[1];
  589. const strs = str.split("&");
  590. for (let i = 0; i < strs.length; i++) {
  591. theRequest[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
  592. }
  593. } else if (url.indexOf("?") != -1) {
  594. const str = url.split("?")[1];
  595. const strs = str.split("&");
  596. for (let i = 0; i < strs.length; i++) {
  597. theRequest[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
  598. }
  599. }
  600. return theRequest;
  601. },
  602. //分享
  603. onShareAppMessage(res) {
  604. if (res.from === "button") {
  605. // 来自页面内分享按钮
  606. console.log(res.target);
  607. }
  608. return {
  609. title: "自定义分享标题",
  610. path: "/pageA/productdetails?id=" + this.id,
  611. };
  612. },
  613. //保存到手机相册
  614. saveImage() {
  615. var that = this;
  616. var fileManager = uni.getFileSystemManager();
  617. fileManager.writeFile({
  618. filePath: wx.env.USER_DATA_PATH + "/img.jpg", // 指定图片的临时路径
  619. data: this.picture2.slice(23), // 要写入的文本或二进制数据
  620. encoding: "base64", // 指定写入文件的字符编码
  621. success: (res) => {
  622. console.log(wx.env.USER_DATA_PATH + "/img.jpg");
  623. uni.saveImageToPhotosAlbum({
  624. // 保存图片到相册
  625. filePath: wx.env.USER_DATA_PATH + "/img.jpg",
  626. success: function(res) {
  627. uni.showToast({
  628. title: this.i18n.savesuccessfully,
  629. });
  630. that.imagea = false;
  631. },
  632. fail: function(err) {
  633. console.log("保存失败", err);
  634. that.imagea = false;
  635. },
  636. });
  637. },
  638. file: (err) => {
  639. console.log("写入文件失败", err);
  640. },
  641. });
  642. },
  643. // 将页面转换成图片的方法
  644. copylink() {
  645. this.$u.toast(this.i18n.window);
  646. },
  647. openfu() {
  648. this.serve = true;
  649. },
  650. returnindex() {
  651. // uni.switchTab({
  652. // url: '/pages/index/index'
  653. // })
  654. uni.navigateBack();
  655. },
  656. chat() {
  657. let useinfo = uni.getStorageSync("user_info");
  658. let that = this;
  659. let id = conn.getUniqueId(); // 生成本地消息id
  660. let msg = new WebIM.message("txt", id); // 创建文本消息
  661. msg.set({
  662. type: "txt",
  663. msg: this.i18n.merchandiseNews,
  664. to: this.goodinfo.merchant.member.easemob_username,
  665. chatType: "singleChat",
  666. ext: {
  667. type: "shopinfo",
  668. order: {
  669. name: that.name_c,
  670. image: that.goodinfo.image,
  671. discount_price: that.goodinfo.discount_price,
  672. fu: that.fu,
  673. id: that.id,
  674. },
  675. user_other: that.goodinfo.merchant,
  676. user: useinfo,
  677. },
  678. success: function(id, serverMsgId) {
  679. uni.navigateTo({
  680. url: "/pageA/chat/chat?user_other=" +
  681. encodeURIComponent(JSON.stringify(that.goodinfo.merchant)) +
  682. "&user_other_no=" +
  683. that.goodinfo.merchant.member.easemob_username,
  684. });
  685. },
  686. fail: function(e) {
  687. console.log("发送消息失败");
  688. },
  689. });
  690. conn.send(msg.body);
  691. },
  692. sharea() {
  693. this.share = true;
  694. },
  695. close() {
  696. this.show = false;
  697. this.share = false;
  698. this.serve = false;
  699. this.imagea = false;
  700. },
  701. //评论页面
  702. tocomment() {
  703. uni.navigateTo({
  704. url: "/pageA/comment?id=" + this.goodinfo.merchant_goods_id,
  705. });
  706. },
  707. //关注
  708. fllow() {
  709. uni.$u.http
  710. .post("/api/interest/follow", {
  711. interest_type: 0,
  712. interest_id: this.goodinfo.merchant_goods_id,
  713. })
  714. .then((res) => {
  715. if (res == "ok1") {
  716. this.$u.toast(this.i18n.shutdown);
  717. this.detail(this.id);
  718. } else {
  719. this.$u.toast(this.i18n.Focus);
  720. this.detail(this.id);
  721. }
  722. })
  723. .catch(() => {});
  724. },
  725. sele() {
  726. this.shopcar = 2;
  727. this.show = true;
  728. },
  729. //跳转到购物车
  730. shopping() {
  731. uni.switchTab({
  732. url: "/pages/cart/cart",
  733. });
  734. },
  735. //评论接口
  736. comment() {
  737. uni.$u.http
  738. .post("/api/goods/goods_comment", {
  739. merchant_goods_id: this.goodinfo.merchant_goods_id,
  740. page: 1,
  741. limit: 2,
  742. })
  743. .then((res) => {
  744. this.commentlist = res.data;
  745. this.total = res.total;
  746. })
  747. .catch(() => {});
  748. },
  749. //商品推荐
  750. recommend() {
  751. uni.$u.http
  752. .post("/api/goods/recommend", {
  753. keyword: "",
  754. })
  755. .then((res) => {
  756. this.swiptlist = res.reduce(
  757. (a, b) => {
  758. let lastIndex = a.length - 1;
  759. if (a[lastIndex].length < 3) {
  760. a[lastIndex].push(b);
  761. } else {
  762. a.push([b]);
  763. }
  764. return a;
  765. },
  766. [
  767. []
  768. ]
  769. );
  770. })
  771. .catch(() => {});
  772. },
  773. scrollToPosition(e) {
  774. console.log(e);
  775. var that = this;
  776. this.current = e.index;
  777. console.log(this.current);
  778. this.$nextTick(() => {
  779. that.toView = "scroll" + e.index;
  780. console.log("view", that.toView);
  781. });
  782. if (!e.index) {
  783. uni.pageScrollTo({
  784. scrollTop: 0,
  785. duration: 300,
  786. });
  787. } else if (e.index == 1 || e.index == 2) {
  788. uni
  789. .createSelectorQuery()
  790. .select(e.index == 1 ? "#scroll1" : "#scroll2")
  791. .boundingClientRect((data) => {
  792. uni
  793. .createSelectorQuery()
  794. .select(".page")
  795. .boundingClientRect((res) => {
  796. uni.pageScrollTo({
  797. duration: 100,
  798. scrollTop: data.top - res.top - 66,
  799. });
  800. })
  801. .exec();
  802. })
  803. .exec();
  804. }
  805. },
  806. //逛逛
  807. goshop(id) {
  808. uni.navigateTo({
  809. url: "/pageD/homepage/homepage?user_other=" +
  810. encodeURIComponent(JSON.stringify(this.goodinfo.merchant)) +
  811. "&user_other_no=" +
  812. this.goodinfo.merchant.member.easemob_username +
  813. "&merchant_id=" +
  814. id +
  815. "&show=" +
  816. true,
  817. });
  818. },
  819. detail(id) {
  820. uni.$u.http
  821. .get("/api/goods/detail/" + id)
  822. .then((res) => {
  823. console.log(res);
  824. this.goodinfo = res;
  825. if (this.language == "en-US") {
  826. this.name_c = this.goodinfo.name_en;
  827. }
  828. if (this.language == "es-ES") {
  829. this.name_c = this.goodinfo.name_es;
  830. }
  831. if (this.language == "it-IT") {
  832. this.name_c = this.goodinfo.name_ita;
  833. }
  834. if (this.language == "zh-CN") {
  835. this.name_c = this.goodinfo.name_cn;
  836. }
  837. this.goodinfoname = this.goodinfo.name_cn;
  838. this.goodinfoyuan = this.goodinfo.discount_price;
  839. this.comment();
  840. this.rate = res.merchant.score;
  841. })
  842. .catch(() => {});
  843. },
  844. //保障服务
  845. guarantee() {
  846. uni.$u.http
  847. .get("/api/agreement?code=guarantee_service")
  848. .then((res) => {
  849. console.log(res);
  850. this.content = res;
  851. if (this.language == "en-US") {
  852. this.fu = this.content.name_en;
  853. }
  854. if (this.language == "es-ES") {
  855. this.fu = this.content.name_es;
  856. }
  857. if (this.language == "it-IT") {
  858. this.fu = this.content.name_ita;
  859. }
  860. if (this.language == "zh-CN") {
  861. this.fu = this.content.name_cn;
  862. }
  863. })
  864. .catch(() => {});
  865. },
  866. // scrollToPosition() {
  867. // console.log(111);
  868. // // 使用$refs获取目标位置的DOM元素
  869. // const targetElement = this.$refs.targetPosition;
  870. // // 调用scrollToView方法滚动到目标位置
  871. // this.$refs.scrollView.scrollToView('targetPosition');
  872. // },
  873. actabs(index, child, idx) {
  874. console.log('index', index);
  875. console.log('child', child);
  876. console.log('idx', idx);
  877. if (this.language == "en-US") {
  878. this.childA = child.name_en
  879. }
  880. if (this.language == "es-ES") {
  881. this.childA = child.name_es
  882. }
  883. if (this.language == "it-IT") {
  884. this.childA = child.name_ita
  885. }
  886. if (this.language == "zh-CN") {
  887. this.childA = child.name
  888. }
  889. if (this.selectArr[index] != this.childA) {
  890. this.$set(this.selectArr, index, this.childA);
  891. this.$set(this.subIndex, index, idx);
  892. } else {
  893. this.$set(this.selectArr, index, "");
  894. this.$set(this.subIndex, index, -1); //去掉选中颜色
  895. }
  896. console.log('select', this.selectArr);
  897. console.log('this.selectArrindex', this.selectArr[index]);
  898. console.log('this.childA', this.childA);
  899. this.goodinfo.sku_item.forEach((ite) => {
  900. console.log('ite', ite);
  901. console.log('this.selectArr.join(",")', this.selectArr.join(","));
  902. var active = ''
  903. if (this.language == "en-US") {
  904. active = ite.item_en
  905. }
  906. if (this.language == "es-ES") {
  907. active = ite.item_es
  908. }
  909. if (this.language == "it-IT") {
  910. active = ite.item_ita
  911. }
  912. if (this.language == "zh-CN") {
  913. active = ite.item
  914. }
  915. if (active == this.selectArr.join(",")) {
  916. this.sku_info = ite;
  917. this.goodinfo.discount_price = (
  918. (Number(this.sku_info.discount_price * 100) *
  919. Number(this.value * 100)) /
  920. 10000
  921. ).toFixed(2);
  922. this.goodinfo.price = this.sku_info.price;
  923. }
  924. });
  925. console.log('2222', this.sku_info);
  926. },
  927. order() {
  928. if (JSON.stringify(this.sku_info) != "{}") {
  929. if (this.sku_info.stock_total != 0) {
  930. uni.navigateTo({
  931. url: "/pageA/order?sku=" +
  932. encodeURIComponent(JSON.stringify(this.sku_info)) +
  933. "&value=" +
  934. this.value +
  935. "&goodinfo=" +
  936. encodeURIComponent(JSON.stringify(this.goodinfo)) +
  937. "&share_merchant_id=" +
  938. this.share_merchant_id,
  939. });
  940. } else {
  941. this.$u.toast(this.i18n.understock);
  942. this.show = false;
  943. }
  944. } else {
  945. this.$u.toast(this.i18n.selection + this.i18n.specification);
  946. } // console.log(JSON.stringify(this.sku_info));
  947. },
  948. //生成图片弹窗
  949. builder() {
  950. this.imagea = true;
  951. this.share = false;
  952. },
  953. //加入购物车
  954. joincart() {
  955. if (JSON.stringify(this.sku_info) != "{}") {
  956. if (this.sku_info.stock_total == 0) {
  957. this.$u.toast(this.i18n.understock);
  958. } else {
  959. uni.$u.http
  960. .post("/api/cart/save", {
  961. goods_id: this.id, //63 是 String 商品id
  962. goods_num: this.value, //1 是 String 商品数量
  963. sku_item_id: this.sku_info.id, //38 是 String 规格详情id
  964. merchant_goods_id: this.goodinfo.merchant_goods_id, //38 是 String 团长商品id
  965. belong: this.goodinfo.source, //是 String 商品归属 0 团长 1 平台自营 2 团长发布或者分享的平台自营商品、 供应链商品
  966. share_member_id: this.share_merchant_id, //是 String 分享团长id
  967. })
  968. .then((res) => {
  969. this.$u.toast(this.i18n.successfullyAdded);
  970. this.show = false;
  971. })
  972. .catch(() => {});
  973. }
  974. } else {
  975. this.$u.toast(this.i18n.selection + this.i18n.specification);
  976. }
  977. },
  978. valChange(e) {
  979. this.goodinfo.discount_price = (
  980. (Number(this.sku_info.discount_price * 100) * Number(e.value * 100)) /
  981. 10000
  982. ).toFixed(2);
  983. return e.value;
  984. },
  985. navigateBack() {
  986. uni.navigateBack();
  987. },
  988. join(index) {
  989. this.show = true;
  990. this.shopcar = index;
  991. },
  992. //通知
  993. inform() {
  994. uni.showToast({
  995. title: this.i18n.shelves,
  996. icon: "none",
  997. duration: 2000,
  998. });
  999. },
  1000. //复制
  1001. onLongPress(e) {
  1002. // 获取长按的文本内容
  1003. let text = e.target.innerText;
  1004. console.log(e);
  1005. // 执行复制操作
  1006. uni.setClipboardData({
  1007. data: text,
  1008. success: () => {
  1009. uni.showToast({
  1010. title: this.i18n.Copiedpaste,
  1011. duration: 2000,
  1012. });
  1013. },
  1014. fail: () => {
  1015. uni.showToast({
  1016. title: this.i18n.Replicationfailure,
  1017. icon: "none",
  1018. duration: 2000,
  1019. });
  1020. },
  1021. });
  1022. },
  1023. },
  1024. };
  1025. </script>
  1026. <style lang="scss" scoped>
  1027. .over {
  1028. font-family: PingFangSC, PingFang SC;
  1029. font-weight: 400;
  1030. font-size: 26rpx;
  1031. color: #222222;
  1032. line-height: 36rpx;
  1033. text-align: left;
  1034. font-style: normal;
  1035. text-overflow: ellipsis;
  1036. overflow: hidden;
  1037. -webkit-line-clamp: 2;
  1038. height: 70rpx;
  1039. display: -webkit-box;
  1040. -webkit-box-orient: vertical;
  1041. word-break: break-all;
  1042. }
  1043. .redback {
  1044. background: rgba(255, 27, 0, 0.07);
  1045. border-radius: 12rpx;
  1046. padding: 6rpx 12rpx;
  1047. box-sizing: border-box;
  1048. font-family: HarmonyOS_Sans_Medium;
  1049. font-size: 16rpx;
  1050. color: #ff1515;
  1051. line-height: 22rpx;
  1052. text-align: left;
  1053. font-style: normal;
  1054. width: 150rpx;
  1055. }
  1056. .sku {
  1057. font-family: PingFangSC, PingFang SC;
  1058. font-weight: 400;
  1059. font-size: 20rpx;
  1060. color: #888888;
  1061. line-height: 28rpx;
  1062. text-align: left;
  1063. font-style: normal;
  1064. }
  1065. .acttab {
  1066. height: 68rpx;
  1067. padding: 14rpx 30rpx;
  1068. text-align: center;
  1069. box-sizing: border-box;
  1070. display: inline;
  1071. background: rgba(248, 50, 36, 0.06);
  1072. border-radius: 6rpx;
  1073. border: 2rpx solid #f83224;
  1074. font-family: PingFangSC, PingFang SC;
  1075. font-weight: 400;
  1076. font-size: 28rpx;
  1077. color: #f83224;
  1078. line-height: 40rpx;
  1079. }
  1080. .read {
  1081. font-family: HarmonyOS_Sans_Medium;
  1082. font-size: 26rpx;
  1083. color: #f83224;
  1084. line-height: 36rpx;
  1085. text-align: left;
  1086. font-style: normal;
  1087. }
  1088. // ::v-deep .u-popup__content{
  1089. // background-color: rgba(0,0,0,0) !important;
  1090. // }
  1091. .money {
  1092. font-family: HarmonyOS_Sans_Medium;
  1093. font-size: 20rpx;
  1094. color: #f83224;
  1095. line-height: 26rpx;
  1096. text-align: left;
  1097. font-style: normal;
  1098. }
  1099. .title {
  1100. font-family: PingFangSC, PingFang SC;
  1101. font-weight: 400;
  1102. font-size: 28rpx;
  1103. color: #222222;
  1104. line-height: 40rpx;
  1105. text-align: left;
  1106. font-style: normal;
  1107. margin-top: 16rpx;
  1108. width: 100%;
  1109. overflow: hidden;
  1110. text-overflow: ellipsis;
  1111. word-break: break-all;
  1112. -webkit-line-clamp: 2;
  1113. display: -webkit-box;
  1114. -webkit-box-orient: vertical;
  1115. }
  1116. .view {
  1117. font-family: PingFangSC, PingFang SC;
  1118. font-weight: 400;
  1119. font-size: 20rpx;
  1120. color: #777777;
  1121. line-height: 28rpx;
  1122. text-align: left;
  1123. font-style: normal;
  1124. margin-top: 12rpx;
  1125. }
  1126. .actabs {
  1127. width: 116rpx;
  1128. height: 68rpx;
  1129. background: rgba(248, 50, 36, 0.06);
  1130. border-radius: 6rpx;
  1131. border: 2rpx solid #f83224;
  1132. }
  1133. .bottoma {
  1134. width: 750rpx;
  1135. height: 166rpx;
  1136. background: #ffffff;
  1137. padding: 16rpx 44rpx 0;
  1138. position: fixed;
  1139. bottom: 0;
  1140. left: 0;
  1141. .btn {
  1142. width: 662rpx;
  1143. height: 84rpx;
  1144. background: #f83224;
  1145. border-radius: 44rpx;
  1146. font-family: PingFangSC, PingFang SC;
  1147. font-weight: 500;
  1148. font-size: 32rpx;
  1149. color: #ffffff;
  1150. line-height: 84rpx;
  1151. text-align: center;
  1152. font-style: normal;
  1153. }
  1154. }
  1155. .title1 {
  1156. font-family: PingFangSC, PingFang SC;
  1157. font-weight: 550;
  1158. font-size: 32rpx;
  1159. color: #222222;
  1160. line-height: 44rpx;
  1161. text-align: left;
  1162. font-style: normal;
  1163. }
  1164. .tabs {
  1165. // width: 276rpx;
  1166. height: 68rpx;
  1167. padding: 14rpx 30rpx;
  1168. text-align: center;
  1169. background: #f4f4f4;
  1170. border-radius: 6rpx;
  1171. box-sizing: border-box;
  1172. display: inline;
  1173. font-size: 28rpx;
  1174. border: 2rpx solid rgba(151, 151, 151, 0);
  1175. line-height: 40rpx;
  1176. // line-height: 68rpx;
  1177. }
  1178. .link {
  1179. font-family: PingFangSC, PingFang SC;
  1180. font-weight: 400;
  1181. font-size: 28rpx;
  1182. color: #555555;
  1183. line-height: 40rpx;
  1184. text-align: left;
  1185. font-style: normal;
  1186. margin-top: 16rpx;
  1187. }
  1188. .tongzhi {
  1189. width: 422rpx;
  1190. height: 76rpx;
  1191. background: #ffb515;
  1192. border-radius: 40rpx;
  1193. font-family: PingFangSC, PingFang SC;
  1194. font-weight: 500;
  1195. font-size: 28rpx;
  1196. color: #ffffff;
  1197. line-height: 76rpx;
  1198. text-align: center;
  1199. font-style: normal;
  1200. }
  1201. .info {
  1202. font-family: PingFangSC, PingFang SC;
  1203. font-weight: 400;
  1204. font-size: 20rpx;
  1205. color: #222222;
  1206. line-height: 28rpx;
  1207. text-align: left;
  1208. font-style: normal;
  1209. margin-top: 18rpx;
  1210. }
  1211. .button {
  1212. // width: 662rpx;
  1213. height: 88rpx;
  1214. background: #f83224;
  1215. border-radius: 44rpx;
  1216. margin-top: 24rpx;
  1217. font-family: PingFangSC, PingFang SC;
  1218. font-weight: 500;
  1219. font-size: 32rpx;
  1220. color: #ffffff;
  1221. line-height: 88rpx;
  1222. text-align: center;
  1223. font-style: normal;
  1224. }
  1225. .contenta {
  1226. width: 702rpx;
  1227. // height: 590rpx;
  1228. background: #ffffff;
  1229. border-radius: 20rpx;
  1230. margin-top: 26rpx;
  1231. padding: 28rpx 24rpx;
  1232. box-sizing: border-box;
  1233. .title {
  1234. font-family: PingFangSC, PingFang SC;
  1235. font-weight: 500;
  1236. font-size: 30rpx;
  1237. color: #222222;
  1238. line-height: 42rpx;
  1239. text-align: left;
  1240. font-style: normal;
  1241. }
  1242. .content {
  1243. font-family: PingFangSC, PingFang SC;
  1244. font-weight: 400;
  1245. font-size: 26rpx;
  1246. color: rgba(34, 34, 34, 0.5);
  1247. line-height: 36rpx;
  1248. text-align: left;
  1249. font-style: normal;
  1250. margin-top: 20rpx;
  1251. }
  1252. }
  1253. .back {
  1254. background-color: #f4f4f4;
  1255. padding: 20rpx;
  1256. box-sizing: border-box;
  1257. .guige {}
  1258. .fix {
  1259. width: 750rpx;
  1260. height: 158rpx;
  1261. background: #ffffff;
  1262. padding: 14rpx 28rpx;
  1263. box-sizing: border-box;
  1264. position: fixed;
  1265. bottom: 0;
  1266. left: 0;
  1267. .ke {
  1268. font-family: PingFangSC, PingFang SC;
  1269. font-weight: 400;
  1270. font-size: 20rpx;
  1271. color: #333333;
  1272. line-height: 28rpx;
  1273. text-align: left;
  1274. font-style: normal;
  1275. }
  1276. .join {
  1277. width: 208rpx;
  1278. height: 76rpx;
  1279. border-radius: 40rpx;
  1280. border: 1rpx solid #ff1515;
  1281. font-family: PingFangSC, PingFang SC;
  1282. font-weight: 500;
  1283. font-size: 28rpx;
  1284. color: #f83224;
  1285. line-height: 76rpx;
  1286. text-align: left;
  1287. font-style: normal;
  1288. text-align: center;
  1289. }
  1290. .pin {
  1291. width: 208rpx;
  1292. height: 76rpx;
  1293. background: #f83224;
  1294. border-radius: 40rpx;
  1295. font-family: PingFangSC, PingFang SC;
  1296. font-weight: 500;
  1297. font-size: 28rpx;
  1298. color: #ffffff;
  1299. line-height: 76rpx;
  1300. text-align: center;
  1301. font-style: normal;
  1302. }
  1303. }
  1304. // 规格
  1305. .specification {
  1306. width: 670rpx;
  1307. // height: 280rpx;
  1308. background: #f4f4f4;
  1309. padding: 24rpx 22rpx;
  1310. box-sizing: border-box;
  1311. view:last-of-type {
  1312. margin-bottom: 0rpx !important;
  1313. }
  1314. .item {
  1315. font-family: PingFangSC, PingFang SC;
  1316. font-weight: 400;
  1317. font-size: 26rpx;
  1318. color: #333333;
  1319. line-height: 36rpx;
  1320. text-align: left;
  1321. font-style: normal;
  1322. }
  1323. }
  1324. // 推荐
  1325. .recommend {
  1326. width: 710rpx;
  1327. // height: 476rpx;
  1328. background: #ffffff;
  1329. border-radius: 16rpx;
  1330. padding: 24rpx 20rpx;
  1331. margin-top: 20rpx;
  1332. box-sizing: border-box;
  1333. .title {
  1334. font-family: PingFangSC, PingFang SC;
  1335. font-weight: 550;
  1336. font-size: 28rpx;
  1337. color: #222222;
  1338. line-height: 40rpx;
  1339. text-align: left;
  1340. font-style: normal;
  1341. }
  1342. }
  1343. //店铺
  1344. .store {
  1345. width: 710rpx;
  1346. height: 160rpx;
  1347. background: #ffffff;
  1348. border-radius: 16rpx;
  1349. padding: 24rpx 20rpx;
  1350. box-sizing: border-box;
  1351. margin-top: 20rpx;
  1352. .line {
  1353. background: rgba(151, 151, 151, 1);
  1354. width: 4rpx;
  1355. height: 20rpx;
  1356. margin: 0 18rpx;
  1357. }
  1358. .num {
  1359. font-family: SFPro, SFPro;
  1360. font-weight: 400;
  1361. font-size: 20rpx;
  1362. color: #777777;
  1363. line-height: 24rpx;
  1364. text-align: left;
  1365. font-style: normal;
  1366. }
  1367. .goshop {
  1368. // width: 108rpx;
  1369. height: 52rpx;
  1370. border-radius: 26rpx;
  1371. border: 1rpx solid #ff1515;
  1372. font-family: PingFangSC, PingFang SC;
  1373. font-weight: 400;
  1374. font-size: 24rpx;
  1375. color: #f83224;
  1376. line-height: 52rpx;
  1377. text-align: center;
  1378. font-style: normal;
  1379. padding: 0 20rpx;
  1380. box-sizing: border-box;
  1381. }
  1382. }
  1383. // 评论
  1384. .comment {
  1385. width: 710rpx;
  1386. // height: 356rpx;
  1387. background: #ffffff;
  1388. border-radius: 16rpx;
  1389. margin-top: 20rpx;
  1390. padding: 24rpx 20rpx;
  1391. box-sizing: border-box;
  1392. .content {
  1393. margin-top: 20rpx;
  1394. font-family: PingFangSC, PingFang SC;
  1395. font-weight: 400;
  1396. font-size: 26rpx;
  1397. color: #444444;
  1398. line-height: 36rpx;
  1399. text-align: left;
  1400. font-style: normal;
  1401. max-height: 112rpx;
  1402. overflow: hidden;
  1403. text-overflow: ellipsis;
  1404. white-space: wrap;
  1405. -webkit-line-clamp: 3;
  1406. word-break: break-all;
  1407. }
  1408. .name {
  1409. font-family: PingFangSC, PingFang SC;
  1410. font-weight: 400;
  1411. font-size: 24rpx;
  1412. color: #222222;
  1413. line-height: 34rpx;
  1414. text-align: left;
  1415. font-style: normal;
  1416. margin-left: 16rpx;
  1417. }
  1418. .ping {
  1419. font-family: PingFangSC, PingFang SC;
  1420. font-weight: 500;
  1421. font-size: 28rpx;
  1422. color: #222222;
  1423. line-height: 40rpx;
  1424. text-align: left;
  1425. font-style: normal;
  1426. }
  1427. .strip {
  1428. font-family: PingFangSC, PingFang SC;
  1429. font-weight: 400;
  1430. font-size: 24rpx;
  1431. color: #444444;
  1432. line-height: 34rpx;
  1433. text-align: left;
  1434. font-style: normal;
  1435. }
  1436. }
  1437. //服务
  1438. .serve {
  1439. width: 710rpx;
  1440. // height: 180rpx;
  1441. background: #ffffff;
  1442. border-radius: 16rpx;
  1443. padding: 32rpx 20rpx;
  1444. box-sizing: border-box;
  1445. .top {
  1446. .change {
  1447. font-family: PingFangSC, PingFang SC;
  1448. font-weight: 400;
  1449. font-size: 28rpx;
  1450. color: #666666;
  1451. line-height: 40rpx;
  1452. text-align: left;
  1453. font-style: normal;
  1454. }
  1455. }
  1456. }
  1457. //折扣
  1458. .discount {
  1459. position: relative;
  1460. height: 312rpx;
  1461. .top {
  1462. width: 710rpx;
  1463. height: 124rpx;
  1464. background: linear-gradient(295deg, #fb6662 0%, #fd403b 100%);
  1465. border-radius: 16rpx 16rpx 0 0;
  1466. padding: 20rpx;
  1467. box-sizing: border-box;
  1468. line-height: 98rpx;
  1469. .count {
  1470. font-family: PingFangSC, PingFang SC;
  1471. font-weight: 400;
  1472. font-size: 20rpx;
  1473. color: #ffffff;
  1474. text-align: left;
  1475. font-style: normal;
  1476. }
  1477. .money {
  1478. font-size: 20rpx;
  1479. font-family: HarmonyOS_Sans_Medium;
  1480. font-size: 20rpx;
  1481. color: #ffffff;
  1482. text-align: left;
  1483. font-style: normal;
  1484. margin-left: 8rpx;
  1485. }
  1486. .right {
  1487. font-family: HarmonyOS_Sans;
  1488. font-size: 24rpx;
  1489. color: #ffffff;
  1490. text-align: left;
  1491. font-style: normal;
  1492. text-decoration-line: line-through;
  1493. margin-left: 16rpx;
  1494. }
  1495. }
  1496. .bottom {
  1497. width: 710rpx;
  1498. height: 208rpx;
  1499. background: #ffffff;
  1500. border-radius: 16rpx;
  1501. position: absolute;
  1502. top: 104rpx;
  1503. z-index: 2;
  1504. padding: 28rpx 20rpx;
  1505. box-sizing: border-box;
  1506. .title {
  1507. margin-top: 24rpx;
  1508. font-family: PingFangSC, PingFang SC;
  1509. font-weight: 550;
  1510. font-size: 32rpx;
  1511. color: #222222;
  1512. line-height: 44rpx;
  1513. text-align: left;
  1514. font-style: normal;
  1515. }
  1516. }
  1517. .tabs {
  1518. // width: 104rpx;
  1519. height: 40rpx;
  1520. background: rgba(255, 21, 21, 0.1);
  1521. border-radius: 4rpx;
  1522. padding: 4rpx 8rpx;
  1523. font-family: PingFangSC, PingFang SC;
  1524. font-weight: 400;
  1525. font-size: 22rpx;
  1526. color: #ff1515;
  1527. line-height: 40rpx;
  1528. text-align: center;
  1529. font-style: normal;
  1530. }
  1531. }
  1532. }
  1533. // 轮播图
  1534. .uni-margin-wrap {
  1535. width: 750rpx;
  1536. width: 100%;
  1537. .swiper {
  1538. height: 750rpx;
  1539. }
  1540. .swiper-item {
  1541. display: block;
  1542. height: 300rpx;
  1543. line-height: 300rpx;
  1544. text-align: center;
  1545. }
  1546. .swiper-list {
  1547. margin-top: 40rpx;
  1548. margin-bottom: 0;
  1549. }
  1550. .uni-common-mt {
  1551. margin-top: 60rpx;
  1552. position: relative;
  1553. }
  1554. .info {
  1555. position: absolute;
  1556. right: 20rpx;
  1557. }
  1558. .uni-padding-wrap {
  1559. width: 550rpx;
  1560. padding: 0 100rpx;
  1561. }
  1562. }
  1563. ::v-deep .u-popup__content data-v-17becaea {
  1564. align-items: center !important;
  1565. }
  1566. </style>