productInfo.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. <template>
  2. <view class="">
  3. <u-loading-page :loading="isLoading" ></u-loading-page>
  4. <view class="" v-if="!isLoading">
  5. <u-swiper @change='swiperChange' @click="swiperClick" :list="info.images_arr" indicator indicatorMode="dot" circular height="338" imgMode="scaleToFill"></u-swiper>
  6. <view class="baseInfo">
  7. <view class="titleBox">
  8. <view class="wechat">
  9. 客服微信:{{kefu}}
  10. </view>
  11. <view class="takeImg" @click="takephotos" >
  12. 生成斑马简图
  13. </view>
  14. </view>
  15. <view class="attributeBox">
  16. <view class="attributeItem">
  17. <view class="labelItem">
  18. 编号:<text class="fontWeight">{{info.code}}</text>
  19. </view>
  20. <view class="labelItem">
  21. 区服:<text class="fontWeight">{{info.server}}</text>
  22. </view>
  23. </view>
  24. <view class="attributeItem">
  25. <view class="labelItem">
  26. 金伙伴:<text class="fontWeight">{{info.partner}}</text>
  27. </view>
  28. <view class="labelItem">
  29. vip:<text class="fontWeight">{{info.level}}</text>
  30. </view>
  31. </view>
  32. <view class="attributeItem">
  33. <view class="labelItem">
  34. 战力:<text class="fontWeight">{{info.force}}亿</text>
  35. </view>
  36. <view class="labelItem">
  37. 速度:<text class="fontWeight">{{info.speed}}万</text>
  38. </view>
  39. </view>
  40. <view class="attributeItem">
  41. <view class="labelItem">
  42. 法伤:<text class="fontWeight">{{info.atk}}万</text>
  43. </view>
  44. <view class="labelItem">
  45. 冰冻:<text class="fontWeight">{{info.property}}万</text>
  46. </view>
  47. </view>
  48. <view class="attributeItem">
  49. <view class="labelItem">
  50. 渡劫:<text class="fontWeight">{{info.dj_level}}</text>
  51. </view>
  52. <view class="labelItem">
  53. 小号数量:<text class="fontWeight">{{info.children}}</text>
  54. </view>
  55. </view>
  56. <view class="attributeItem">
  57. <view class="labelItem">
  58. 是否榜一:<text class="fontWeight">{{info.top_one==1?'是':'否'}}</text>
  59. </view>
  60. <view class="labelItem">
  61. 账号类型:<text class="fontWeight">{{info.account_type_text}}</text>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <view class="labelBox" >
  67. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.top_bg.value+')'}" v-if="info.is_top==1">
  68. 置顶
  69. </view>
  70. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.discount_bg.value+')'}" v-if="info.discount==1">
  71. 特价
  72. </view>
  73. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.recommend_bg.value+')'}" v-if="info.recommend==1">
  74. 斑马推荐
  75. </view>
  76. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.stage_bg.value+')'}" v-if="info.stage==1">
  77. 可分期
  78. </view>
  79. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.recommend_bg.value+')'}" v-if="info.is_hot==1">
  80. 热门
  81. </view>
  82. <!-- <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.level_bg.value+')'}" v-if="info.level>=1">
  83. VIP
  84. </view> -->
  85. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.new_bg.value+')'}" v-if="info.is_new==1">
  86. 新品
  87. </view>
  88. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby1_bg.value+')'}" v-if="info.standby1==1">
  89. {{info.standby1_title}}
  90. </view>
  91. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby2_bg.value+')'}" v-if="info.standby2==1">
  92. {{info.standby2_title}}
  93. </view>
  94. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby3_bg.value+')'}" v-if="info.standby3==1">
  95. {{info.standby3_title}}
  96. </view>
  97. <!-- <u-tag v-if="item.discount==1" text="特价" type="error" shape="circle" size="mini"></u-tag>
  98. <u-tag v-if="item.recommend==1" text="斑马推荐" shape="circle" size="mini"></u-tag>
  99. <u-tag v-if="item.stage==1" text="可分期" type="success" shape="circle" size="mini"></u-tag> -->
  100. </view>
  101. <view class="productInfo">
  102. <view class="infoTitle">
  103. 商品详情
  104. </view>
  105. <view class="">
  106. <u-parse :content="info.detail"></u-parse>
  107. </view>
  108. <view class="" v-if="info.content_switch==1">
  109. <u-parse :content="info.detail2"></u-parse>
  110. </view>
  111. </view>
  112. <view class="productInfo">
  113. <view class="infoTitle">
  114. 免责声明
  115. </view>
  116. <view class="statement">
  117. <u-parse :content="disclaimer"></u-parse>
  118. </view>
  119. </view>
  120. <view class="tabbar">
  121. <view class="back" @click="goBack">
  122. <u-icon name="home-fill" color="#fff"></u-icon>
  123. <span style="font-size: 16px;">返回</span>
  124. </view>
  125. <view class="price">
  126. jià格:<text class="bold">{{info.money}}</text><text>米</text>
  127. </view>
  128. <view class="back purchase" @click="showPopup=true">
  129. 流程规则
  130. </view>
  131. </view>
  132. <view class="swiper-item swiper-itemcopy" id="copyswiperItem">
  133. <view class="titleBox" :style="{background: 'url('+BASE_URL+jt_bg1+')'}">
  134. <!-- <image :src="BASE_URL+item.qrimage" mode=""></image> -->
  135. <limeQrcodeVue ref="qrcodeRef" :value="BASE_URL1+`/h5/#/pages/deal/productInfo?id=${id}`+(rand_num?`&rand_num=${rand_num}`:'')" size="112rpx" ></limeQrcodeVue>
  136. <view class="title">
  137. <p>{{item.title1}}</p>
  138. <p>{{item.title2}}</p>
  139. <p class="warn">{{item.title3}}</p>
  140. </view>
  141. </view>
  142. <view class="content" :style="{background: 'url('+BASE_URL+jt_bg2+')'}">
  143. <view class="" id="copycontent">
  144. </view>
  145. <view class="watermark" v-if="item.watermark_info&&item.watermark_info.type==1||item.watermark_info&&item.watermark_info.type==3">
  146. <view v-for="it in 100" class="" :style="{transform: 'rotate('+item.watermark_info.angle+'deg)',opacity:(100-item.watermark_info.opacity*1)*0.01,color:item.watermark_info.color,marginTop:item.watermark_info.hh+'px',marginBottom:item.watermark_info.hh+'px',marginLeft:item.watermark_info.ww+'px',marginRight:item.watermark_info.ww+'px',fontSize:item.watermark_info.text_font+'px',fontWeight:item.watermark_info.bold==1?'bold':'',fontFamily:item.watermark_info.typeface==1?'typeface1':item.watermark_info.typeface==2?'typeface2':item.watermark_info.typeface==3?'typeface3':item.watermark_info.typeface==4?'typeface4':item.watermark_info.typeface==5?'typeface5':item.watermark_info.typeface==6?'typeface6':''}">
  147. <image :src="BASE_URL+item.watermark_info.image" mode="" v-if="item.watermark_info.image&&item.watermark_info.type==1"></image>
  148. <text v-if="item.watermark_info.water_text&&item.watermark_info.type==3">{{item.watermark_info.water_text}}</text>
  149. </view>
  150. </view>
  151. <view class="watermark1"
  152. :style="{left:item.watermark_info.waterPos==0?0+item.watermark_info.xx+'px':item.watermark_info.waterPos==1?0+item.watermark_info.xx+'px':item.watermark_info.waterPos==4?0+item.watermark_info.voffset+'px':item.watermark_info.waterPos==7?0+item.watermark_info.xx+'px':item.watermark_info.waterPos==2?'calc( 40%'+' + '+item.watermark_info.xx+'px )':item.watermark_info.waterPos==5?'calc( 40%'+' + '+item.watermark_info.voffset+'px )':item.watermark_info.waterPos==8?'calc( 40%'+' + '+item.watermark_info.xx+'px )':'',top:item.watermark_info.waterPos==0?0+item.watermark_info.yy+'px':item.watermark_info.waterPos==1?0+item.watermark_info.yy+'px':item.watermark_info.waterPos==2?0+item.watermark_info.yy+'px':item.watermark_info.waterPos==3?0+item.watermark_info.yy+'px':item.watermark_info.waterPos==4?'40%':item.watermark_info.waterPos==5?'40%':item.watermark_info.waterPos==6?'40%':'',right:item.watermark_info.waterPos==3?0+item.watermark_info.xx+'px':item.watermark_info.waterPos==6?0+item.watermark_info.waterPos+'px':item.watermark_info.waterPos==9?0+item.watermark_info.xx+'px':'',bottom:item.watermark_info.waterPos==7?0+item.watermark_info.xx+'px':item.watermark_info.waterPos==8?0+item.watermark_info.ww+'px':item.watermark_info.waterPos==9?0+item.watermark_info.xx+'px':'',fontWeight:item.watermark_info.bold==1?'bold':'',fontFamily:item.watermark_info.typeface==1?'typeface1':item.watermark_info.typeface==2?'typeface2':item.watermark_info.typeface==3?'typeface3':item.watermark_info.typeface==4?'typeface4':item.watermark_info.typeface==5?'typeface5':item.watermark_info.typeface==6?'typeface6':''}"
  153. v-if="item.watermark_info&&item.watermark_info.type==2||item.watermark_info&&item.watermark_info.type==4">
  154. <view class="" :style="{transform: 'rotate('+item.watermark_info.angle+'deg)',color:`rgba(${hexToRgb(item.watermark_info.color).rgb},${(100-item.watermark_info.opacity*1)*0.01})`,fontSize:item.watermark_info.text_font+'px'}">
  155. <image :src="BASE_URL+item.watermark_info.image" mode="" v-if="item.watermark_info.image&&item.watermark_info.type==2"></image>
  156. <text v-if="item.watermark_info.water_text&&item.watermark_info.type==4">{{item.watermark_info.water_text}}</text>
  157. </view>
  158. </view>
  159. </view>
  160. </view>
  161. <view class="swiper-item" id="swiperItem">
  162. <view class="titleBox" :style="{background: 'url('+BASE_URL+jt_bg1+')'}">
  163. <limeQrcodeVue v-if="item.id" ref="qrcodeRef" :value="BASE_URL1+'/h5/#/pages/deal/productInfo?id='+id" size="112rpx" ></limeQrcodeVue>
  164. <!-- <image :src="BASE_URL+item.qrimage" mode=""></image> -->
  165. <view class="title">
  166. <p>{{item.title1}}</p>
  167. <p>{{item.title2}}</p>
  168. <p class="warn">{{item.title3}}</p>
  169. </view>
  170. </view>
  171. <view class="content" v-if="item.detail" :style="{background: 'url('+BASE_URL+jt_bg2+')'}">
  172. <view class="" id="content1">
  173. <u-parse :content="item.detail"></u-parse>
  174. </view>
  175. <view class="watermark" v-if="item.watermark_info&&item.watermark_info.type==1||item.watermark_info&&item.watermark_info.type==3">
  176. <view v-for="it in 100" class="" :style="{transform: 'rotate('+item.watermark_info.angle+'deg)',opacity:(100-item.watermark_info.opacity*1)*0.01,color:item.watermark_info.color,marginTop:item.watermark_info.hh+'px',marginBottom:item.watermark_info.hh+'px',marginLeft:item.watermark_info.ww+'px',marginRight:item.watermark_info.ww+'px',fontSize:item.watermark_info.text_font+'px',fontWeight:item.watermark_info.bold==1?'bold':'',fontFamily:item.watermark_info.typeface==1?'typeface1':item.watermark_info.typeface==2?'typeface2':item.watermark_info.typeface==3?'typeface3':item.watermark_info.typeface==4?'typeface4':item.watermark_info.typeface==5?'typeface5':item.watermark_info.typeface==6?'typeface6':''}">
  177. <image :src="BASE_URL+item.watermark_info.image" mode="" v-if="item.watermark_info.image&&item.watermark_info.type==1"></image>
  178. <text v-if="item.watermark_info.water_text&&item.watermark_info.type==3">{{item.watermark_info.water_text}}</text>
  179. </view>
  180. </view>
  181. <view class="watermark1" :style="{left:item.watermark_info.waterPos==0?0:item.watermark_info.waterPos==1?0:item.watermark_info.waterPos==4?0:item.watermark_info.waterPos==7?0:item.watermark_info.waterPos==2?'40%':item.watermark_info.waterPos==5?'40%':item.watermark_info.waterPos==8?'40%':'',top:item.watermark_info.waterPos==0?0:item.watermark_info.waterPos==1?0:item.watermark_info.waterPos==2?0:item.watermark_info.waterPos==3?0:item.watermark_info.waterPos==4?'40%':item.watermark_info.waterPos==5?'40%':item.watermark_info.waterPos==6?'40%':'',right:item.watermark_info.waterPos==3?0:item.watermark_info.waterPos==6?0:item.watermark_info.waterPos==9?0:'',bottom:item.watermark_info.waterPos==7?0:item.watermark_info.waterPos==8?0:item.watermark_info.waterPos==9?0:'',fontWeight:item.watermark_info.bold==1?'bold':'',fontFamily:item.watermark_info.typeface==1?'typeface1':item.watermark_info.typeface==2?'typeface2':item.watermark_info.typeface==3?'typeface3':item.watermark_info.typeface==4?'typeface4':item.watermark_info.typeface==5?'typeface5':item.watermark_info.typeface==6?'typeface6':''}" v-if="item.watermark_info&&item.watermark_info.type==2||item.watermark_info&&item.watermark_info.type==4">
  182. <view class="" :style="{transform: 'rotate('+item.watermark_info.angle+'deg)',color:`rgba(${hexToRgb(item.watermark_info.color).rgb},${(100-item.watermark_info.opacity*1)*0.01})`,fontSize:item.watermark_info.text_font+'px'}">
  183. <image :src="BASE_URL+item.watermark_info.image" mode="" v-if="item.watermark_info.image&&item.watermark_info.type==2"></image>
  184. <text v-if="item.watermark_info.water_text&&item.watermark_info.type==4">{{item.watermark_info.water_text}}</text>
  185. </view>
  186. </view>
  187. </view>
  188. </view>
  189. <u-overlay :show="show" @click="show = false">
  190. <view class="warp">
  191. <view class="rect" @tap.stop>
  192. <image :src="url" mode="widthFix"></image>
  193. <p>长按保存到本地</p>
  194. </view>
  195. </view>
  196. </u-overlay>
  197. <u-popup :show="showPopup" :round="10" mode="bottom" @close="showPopup=false">
  198. <view class="popup">
  199. <view class="popupTop">
  200. <view class="contactInfo">
  201. <p>{{notice_text}}</p>
  202. </view>
  203. <image :src="BASE_URL+noticeimage" mode=""></image>
  204. </view>
  205. <view class="notice">
  206. <!-- <view class="noticeTitle">
  207. 购买须知
  208. </view> -->
  209. <view class="noticeInfo">
  210. <u-parse :content="buy_notes"></u-parse>
  211. </view>
  212. <view class="popupBottom">
  213. <view class="back" @click="showPopup=false">
  214. <u-icon name="home-fill" color="#fff"></u-icon>
  215. 返回
  216. </view>
  217. </view>
  218. </view>
  219. </view>
  220. </u-popup>
  221. <u-overlay :show="show10" @click="show10 = false">
  222. <view class="warp">
  223. <view class="rect1" @tap.stop>
  224. <image src="../../static/tishi.png" mode=""></image>
  225. <p>该商品已出售或下架</p>
  226. <u-button color="#A5CF49" type="success" shape="circle" size="large" text="看看其他斑马账号" @click="goBack"></u-button>
  227. </view>
  228. </view>
  229. </u-overlay>
  230. </view>
  231. </view>
  232. </template>
  233. <script setup>
  234. import limeQrcodeVue from '../../uni_modules/lime-qrcode/components/l-qrcode/l-qrcode.vue';
  235. import html2canvas from 'html2canvas';
  236. import {BASE_URL,BASE_URL1} from '../../utils/http.js'
  237. import {
  238. onLoad,
  239. onShow,
  240. onPullDownRefresh,onReady
  241. } from "@dcloudio/uni-app";
  242. import {
  243. ref
  244. } from "vue"
  245. import {getGoodsDetail,getsimpleimages,getplatformeditor,getsimpleimagesdetail,getplatformmeun} from '@/utils/api.js'
  246. let show10=ref(false)
  247. let disclaimer=ref()
  248. let buy_notes=ref()
  249. let notice_text=ref()
  250. let kefu=ref()
  251. let title=ref()
  252. let bg_list=ref({})
  253. let current=ref(0)
  254. let noticeimage=ref()
  255. let jt_bg1=ref('')
  256. let jt_bg2=ref('')
  257. onReady(()=>{
  258. getplatformmeun().then(res=>{
  259. uni.setNavigationBarTitle({
  260. title: res.data.name
  261. });
  262. jt_bg1.value=res.data.jt_bg1
  263. jt_bg2.value=res.data.jt_bg2
  264. })
  265. })
  266. let swiperChange=(e)=>{
  267. current.value=e.current
  268. }
  269. let swiperClick=(e)=>{
  270. uni.previewImage({
  271. // 预览时,默认显示图片的索引
  272. current:current.value,
  273. // 所有图片 url 地址的数组
  274. urls:info.value.images_arr
  275. })
  276. }
  277. let isLoading=ref(true)
  278. onLoad((option) => {
  279. getplatformeditor().then(res=>{
  280. disclaimer.value=res.data.disclaimer
  281. notice_text.value=res.data.notice_text
  282. noticeimage.value=res.data.noticeimage
  283. buy_notes.value=res.data.buy_notes
  284. kefu.value=res.data.kfwx
  285. kefu.value=res.data.kfwx
  286. })
  287. id.value=option.id;
  288. rand_num.value=option.rand_num;
  289. let images_arr=[]
  290. let index = new Date().getTime()
  291. getGoodsDetail({goods_id:id.value,rand_num:rand_num.value}).then(res=>{
  292. if(res.code==1){
  293. bg_list.value=res.data.bg_list
  294. if(res.data.detail.status==0){
  295. show10.value=true
  296. // return
  297. }
  298. }else{
  299. show10.value=true
  300. isLoading.value=false
  301. }
  302. res.data.detail.images_arr.forEach(item=>{
  303. // images_arr.push(BASE_URL+item+"?res="+index)
  304. images_arr.push(BASE_URL+item)
  305. })
  306. info.value=res.data.detail
  307. info.value.images_arr=images_arr
  308. getsimpleimagesdetail({goods_id:info.value.id}).then(res=>{
  309. isLoading.value=false
  310. item.value=res.data
  311. // item.value.detail=getspan(item.value.detail)
  312. })
  313. // getsimpleimages().then(res=>{
  314. // let arr=res.data
  315. // arr.forEach(it=>{
  316. // if(info.value.simple_id==it.id){
  317. // item.value=it
  318. // }
  319. // })
  320. // })
  321. })
  322. })
  323. function getspan(str) {
  324. var list1 = str.split('</span>')
  325. var list2 = []
  326. list1.forEach(val => {
  327. if (val.indexOf("<span") > -1) {
  328. list2.push({
  329. isspan: true,
  330. arr: val.split("<span")
  331. })
  332. } else {
  333. list2.push({
  334. isspan: false,
  335. arr: val
  336. })
  337. }
  338. })
  339. var list3 = []
  340. list2.forEach(val => {
  341. if (val.isspan) {
  342. list3.push({
  343. ...val,
  344. style: val.arr[1].split('>')[0],
  345. span: val.arr[1].split('>')[1]
  346. })
  347. } else {
  348. list3.push({
  349. ...val
  350. })
  351. }
  352. })
  353. var html = ''
  354. list3.forEach(val => {
  355. if (val.isspan) {
  356. html = html + val.arr[0]
  357. var span = ''
  358. for (var a = 0; a < val.span.length; a++) {
  359. span = span + `<span${val.style}>${val.span[a]}</span>`
  360. }
  361. html = html + span
  362. } else {
  363. html = html + val.arr
  364. }
  365. })
  366. return html
  367. }
  368. onShow(() => {
  369. })
  370. let item=ref({})
  371. let info=ref({})
  372. let id=ref('')
  373. let rand_num=ref('')
  374. let showPopup = ref(false)
  375. let swiperHeight =ref(67)
  376. let goBack = () => {
  377. let page=getCurrentPages()
  378. if(page.length==1){
  379. uni.switchTab({
  380. url:'/pages/deal/deal'
  381. })
  382. }else{
  383. uni.navigateBack()
  384. }
  385. // console.log('page',page)
  386. }
  387. let show = ref(false)
  388. let takephotos = () => {
  389. // var dom = document.getElementById('swiperItem'); // 获取dom元素
  390. // if(dom&&dom.children[1]){
  391. // swiperHeight.value=67+dom.children[1].clientHeight
  392. // }else{
  393. // swiperHeight.value=67
  394. // }
  395. // html2canvas(dom).then((canvas) => {
  396. // url.value = canvas.toDataURL("image/png");
  397. // show.value = true
  398. // });
  399. var swiper = document.getElementById('copyswiperItem'); // 获取dom元素
  400. var dom = document.getElementById('content1'); // 获取dom元素
  401. var dom1 = document.getElementById('copycontent'); // 获取dom元素
  402. dom1.innerHTML=dom.innerHTML
  403. let res = domTrans(dom1)
  404. // console.log(1223,res)
  405. let html = forFn(res)
  406. dom1.innerHTML=html
  407. html2canvas(swiper,{
  408. allowTaint: true,
  409. useCORS: true
  410. }).then((canvas) => {
  411. url.value = canvas.toDataURL("image/png").replace('image/png', 'image/octet-stream');
  412. show.value=true
  413. });
  414. }
  415. let url = ref()
  416. let content = `
  417. <p>露从今夜白,月是故乡明</p>
  418. <img src="https://cdn.uviewui.com/uview/swiper/2.jpg" />
  419. `
  420. let list3 = ref([
  421. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  422. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  423. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  424. ])
  425. onPullDownRefresh(() => {
  426. setTimeout(function() {
  427. uni.stopPullDownRefresh();
  428. }, 1000);
  429. })
  430. function domTrans(dom) {
  431. // 总dom树
  432. let tree = [];
  433. // 递归, node = 当前的节点,dataNode = 数据插入的节点
  434. const loop = (node, dataNode) => {
  435. // 当前节点的模板
  436. let temp = {
  437. type: node.nodeType,
  438. };
  439. // 如果是文本节点 或 单标签节点
  440. if (temp.type == 3 && node.nodeValue.match(/\S/)) {
  441. temp["content"] = node.nodeValue;
  442. temp["tag"] = node.nodeName;
  443. dataNode.push(temp);
  444. }
  445. // 元素节点
  446. if (temp.type == 1) {
  447. let attributes = getAttribute(node);
  448. // 如果没有属性,不添加 attributes
  449. if (attributes) temp["attributes"] = attributes;
  450. var newNode = node.childNodes
  451. var newNode2
  452. if (newNode[0] && newNode.length <= 1) {
  453. newNode2 = newNode[0].childNodes.length
  454. }
  455. // 当前节点下还有子节点
  456. if (node.childNodes.length > 1 || newNode2 > 0) {
  457. temp["children"] = [];
  458. temp["tag"] = node.nodeName.toLowerCase();
  459. for (let i = 0; i < node.childNodes.length; i++) {
  460. loop(node.childNodes[i], temp.children);
  461. }
  462. }
  463. // 当前节点下只有文本 或 单标签节点
  464. if (node.childNodes.length <= 1 && newNode2 == 0) {
  465. temp["content"] = node.innerHTML;
  466. temp["tag"] = node.nodeName.toLowerCase();
  467. }
  468. dataNode.push(temp);
  469. }
  470. };
  471. loop(dom, tree);
  472. return tree[0].children;
  473. }
  474. function forFn(arr) {
  475. let html = ``
  476. for (let i = 0; i < arr.length; i++) {
  477. let tArr = []
  478. if (arr[i].content) {
  479. tArr = arr[i].content.split("")
  480. }
  481. if (arr[i].type === 1) {
  482. if (arr[i].attributes) {
  483. if (arr[i].attributes.src) {
  484. html +=
  485. `<img class="${arr[i].attributes.class}" src="${arr[i].attributes.src}" style="${arr[i].attributes.style}">`
  486. } else {
  487. html += `<${arr[i].tag} class="${arr[i].attributes.class}" style="${arr[i].attributes.style}">`
  488. }
  489. } else {
  490. if (arr[i].tag == "img") {
  491. html += `<${arr[i].tag} style="${arr[i].attributes.style}">`
  492. } else {
  493. html += `<${arr[i].tag}>`
  494. }
  495. }
  496. if (arr[i].children) {
  497. html += forFn(arr[i].children)
  498. }
  499. html += `</${arr[i].tag}>`
  500. }
  501. tArr.forEach(el => {
  502. if (arr[i].tag === "#text") {
  503. html += `${el}`
  504. } else {
  505. if (arr[i].attributes) {
  506. if (arr[i].tag == "img") {
  507. html +=
  508. `<${arr[i].tag} class="${arr[i].attributes.class}" src="${arr[i].attributes.src}" style="${arr[i].attributes.style}">${el}</${arr[i].tag}>`
  509. } else {
  510. html +=
  511. `<${arr[i].tag} class="${arr[i].attributes.class}" style="${arr[i].attributes.style}">${el}</${arr[i].tag}>`
  512. }
  513. } else {
  514. if (arr[i].tag == "img") {
  515. html += `<${arr[i].tag} src="${arr[i].attributes.src}">${el}</${arr[i].tag}>`
  516. } else {
  517. html += `<${arr[i].tag}>${el}</${arr[i].tag}>`
  518. }
  519. }
  520. }
  521. });
  522. }
  523. // console.log(html,'====')
  524. return html
  525. }
  526. // 提取元素属性
  527. function getAttribute(dom) {
  528. let attributes = {};
  529. // let empty = true;
  530. Array.from(dom.attributes).map((item) => {
  531. attributes[item.nodeName] = item.nodeValue;
  532. // empty = false;
  533. });
  534. return attributes;
  535. }
  536. function hexToRgb (val) { //HEX十六进制颜色值转换为RGB(A)颜色值
  537. // 16进制颜色值的正则
  538. var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
  539. // 把颜色值变成小写
  540. var color = val.toLowerCase();
  541. var result = '';
  542. if (reg.test(color)) {
  543. // 如果只有三位的值,需变成六位,如:#fff => #ffffff
  544. if (color.length === 4) {
  545. var colorNew = "#";
  546. for (var i = 1; i < 4; i += 1) {
  547. colorNew += color.slice(i, i + 1).concat(color.slice(i, i + 1));
  548. }
  549. color = colorNew;
  550. }
  551. // 处理六位的颜色值,转为RGB
  552. var colorChange = [];
  553. for (var i = 1; i < 7; i += 2) {
  554. colorChange.push(parseInt("0x" + color.slice(i, i + 2)));
  555. }
  556. result = colorChange.join(",")
  557. return { rgb: result, r: colorChange[0], g: colorChange[1], b: colorChange[2] };
  558. } else {
  559. result = '无效';
  560. return { rgb: result };
  561. }
  562. }
  563. </script>
  564. <style lang="scss">
  565. .fontWeight{
  566. font-weight: bold;
  567. color: #000;
  568. font-size: 30rpx;
  569. }
  570. .warp {
  571. padding: 0 28rpx;
  572. display: flex;
  573. align-items: center;
  574. justify-content: center;
  575. height: 100%;
  576. }
  577. .rect1 {
  578. padding: 60rpx 120rpx;
  579. display: flex;
  580. flex-direction: column;
  581. align-items: center;
  582. width: 558rpx;
  583. height: 438rpx;
  584. background: #FFFFFF;
  585. border-radius: 20rpx;
  586. image {
  587. width: 96rpx;
  588. height: 96rpx;
  589. }
  590. p {
  591. font-size: 30rpx;
  592. margin: 62rpx 0 40rpx;
  593. }
  594. // background-color: #fff;
  595. }
  596. .labelBox{
  597. padding: 0 15px;
  598. margin: 10rpx 0;
  599. display: flex;
  600. flex-wrap: wrap;
  601. .labelItem{
  602. margin-right: 20rpx;
  603. margin-bottom: 5rpx;
  604. font-size: 20rpx;
  605. color: #fff;
  606. border-radius: 30rpx;
  607. padding: 7rpx 16rpx;
  608. background-position: center center;
  609. background-repeat: no-repeat;
  610. background-size: cover;
  611. // background-color: #A5CF49;
  612. }
  613. }
  614. .content{
  615. padding-left: 10rpx;
  616. padding-right: 10rpx;
  617. overflow: hidden;
  618. position: relative;
  619. word-break: break-all;
  620. word-wrap: break-word;
  621. overflow: hidden;
  622. position: relative;
  623. .watermark{
  624. display: flex;
  625. flex-wrap: wrap;
  626. position: absolute;
  627. top: 0;
  628. left: 0;
  629. right: 0;
  630. // bottom: 0;
  631. image{
  632. width: 100rpx;
  633. height: 100rpx;
  634. }
  635. }
  636. .watermark1{
  637. position: absolute;
  638. image{
  639. width: 100rpx;
  640. height: 100rpx;
  641. }
  642. }
  643. }
  644. .popup {
  645. overflow: hidden;
  646. .notice{
  647. padding: 24rpx 28rpx;
  648. font-size: 28rpx;
  649. .noticeTitle{
  650. font-weight: bold;
  651. text-align: center;
  652. }
  653. .noticeInfo{
  654. height:500rpx;
  655. overflow: scroll;
  656. }
  657. }
  658. .popupBottom{
  659. display: flex;
  660. justify-content: right;
  661. padding: 20rpx 28rpx;
  662. height: 160rpx;
  663. .back{
  664. display: flex;
  665. justify-content: center;
  666. text-align: center;
  667. font-size: 28rpx;
  668. color: #fff;
  669. width: 162rpx;
  670. height: 80rpx;
  671. line-height: 80rpx;
  672. background: #A5CF49;
  673. border-radius: 40rpx;
  674. }
  675. }
  676. .popupTop {
  677. border-radius: 20rpx 20rpx 0rpx 0rpx;
  678. display: flex;
  679. justify-content: space-between;
  680. align-items: center;
  681. padding: 26rpx;
  682. background: linear-gradient(135deg, #F9FFE9 0%, #DDFFDA 100%);
  683. .contactInfo {
  684. flex: 1;
  685. font-size: 36rpx;
  686. }
  687. image{
  688. width: 160rpx;
  689. height: 160rpx;
  690. }
  691. }
  692. }
  693. .warp {
  694. padding: 0 28rpx;
  695. display: flex;
  696. align-items: center;
  697. justify-content: center;
  698. height: 100%;
  699. }
  700. .rect {
  701. display: flex;
  702. flex-direction: column;
  703. align-items: center;
  704. width: 694px;
  705. height: auto;
  706. image {
  707. width: 100%;
  708. }
  709. p {
  710. font-size: 48rpx;
  711. color: #fff;
  712. margin-top: 12rpx;
  713. }
  714. // background-color: #fff;
  715. }
  716. .swiper-item {
  717. position: fixed;
  718. top: 9999px;
  719. .titleBox {
  720. font-size: 28rpx;
  721. color: #666666;
  722. padding: 6rpx;
  723. background: #FFF5E5;
  724. display: flex;
  725. align-items: flex-end;
  726. image {
  727. margin-right: 4rpx;
  728. width: 112rpx;
  729. height: 112rpx;
  730. }
  731. .warn {
  732. font-size: 32rpx;
  733. color: #FF2828;
  734. }
  735. .title{
  736. margin-left: 4rpx;
  737. }
  738. }
  739. }
  740. .tabbar {
  741. bottom: 0;
  742. padding: 20rpx 28rpx;
  743. position: fixed;
  744. width: 750rpx;
  745. height: 160rpx;
  746. background: #FFFFFF;
  747. display: flex;
  748. justify-content: space-between;
  749. .back {
  750. display: flex;
  751. justify-content: center;
  752. font-size: 28rpx;
  753. color: #Fff;
  754. width: 162rpx;
  755. height: 80rpx;
  756. text-align: center;
  757. line-height: 80rpx;
  758. background: #A5CF49;
  759. border-radius: 40rpx;
  760. }
  761. .price {
  762. line-height: 80rpx;
  763. font-size: 24rpx;
  764. color: #333333;
  765. text {
  766. color: #FF2828;
  767. }
  768. .bold {
  769. font-weight: bold;
  770. font-size: 40rpx;
  771. }
  772. }
  773. }
  774. .productInfo {
  775. margin-bottom: 10rpx;
  776. background-color: #fff;
  777. padding: 20rpx 32rpx;
  778. .infoTitle {
  779. margin-bottom: 10rpx;
  780. font-size: 28rpx;
  781. font-weight: bold;
  782. }
  783. .statement {
  784. font-size: 24rpx;
  785. }
  786. }
  787. .label {
  788. padding: 24rpx 32rpx;
  789. background-color: #fff;
  790. margin: 10rpx 0;
  791. .u-fade-enter-active {
  792. margin-right: 20rpx;
  793. }
  794. }
  795. page {
  796. padding-bottom: 170rpx;
  797. .attributeBox {
  798. font-size: 28rpx;
  799. color: #666666;
  800. .attributeItem {
  801. margin-top: 20rpx;
  802. display: flex;
  803. .labelItem {
  804. flex: 1;
  805. }
  806. }
  807. }
  808. .baseInfo {
  809. background-color: #fff;
  810. padding: 22rpx 30rpx;
  811. .titleBox {
  812. display: flex;
  813. justify-content: space-between;
  814. .wechat {
  815. font-size: 40rpx;
  816. color: #1677FF;
  817. font-weight: bold;
  818. }
  819. .takeImg {
  820. width: 206rpx;
  821. height: 52rpx;
  822. line-height: 52rpx;
  823. background: #A5CF49;
  824. border-radius: 40rpx;
  825. font-size: 28rpx;
  826. color: #ffff;
  827. font-weight: bold;
  828. text-align: center;
  829. }
  830. }
  831. }
  832. }
  833. </style>