index.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. <template>
  2. <view class="content">
  3. <view class="swiper">
  4. <swiper
  5. indicator-dots
  6. indicator-active-color="#FFFFFF"
  7. circular
  8. autoplay
  9. >
  10. <swiper-item
  11. v-for="item in goodsInfo.content_arr"
  12. :key="item.id"
  13. >
  14. <image class="swiper-img" :src ="item"></image>
  15. </swiper-item>
  16. </swiper>
  17. </view>
  18. <view class="goods-content">
  19. <view class="goods-list" v-for="(item,index) in goodsInfo.image_arr" v-if="index<5">
  20. <image :src="item"></image>
  21. </view>
  22. </view>
  23. <view class="goods-detail">
  24. <view class="money">
  25. <text class="moneys">¥{{goodsInfo.low_price}}</text>
  26. <text class="texts">(优惠价)</text>
  27. <text class="price">¥{{goodsInfo.low_original}}</text>
  28. </view>
  29. <view class="goods-names">
  30. {{goodsInfo.name}}
  31. {{goodsInfo.desc}}
  32. </view>
  33. </view>
  34. <view class="goods-desc">
  35. <view class="title">商品详情</view>
  36. <view style="margin-top: 20rpx;">
  37. <mp-html class="style-s" :content="contenet" />
  38. </view>
  39. </view>
  40. <view class="pay-bottom">
  41. <view class="bottomStyle" @click="show1 = true">
  42. <view class="shoes-icon">
  43. <image src="/static/index/shoes-icon.png"></image>
  44. </view>
  45. <view class="texts" >线下试穿</view>
  46. </view>
  47. <view class="button" @click="show = true">立即购买</view>
  48. </view>
  49. <u-popup :show="show1" @close="close1">
  50. <view class="goods-bottoms">
  51. <view class="goods">
  52. <view class="goods-img">
  53. <image :src="goodsInfo.cover"></image>
  54. </view>
  55. <view class="goods-name overflow2">{{goodsInfo.name}} {{goodsInfo.desc}}</view>
  56. </view>
  57. <view class="texts">尺码</view>
  58. <view class="goods-rule">
  59. <view class="rule-list" @click="ruleTap(index)" :class="ruleIndex==index?'classStyle':''" v-for="(item,index) in goodsInfo.item_list" :key="index">
  60. {{item.goods_spec}}
  61. </view>
  62. </view>
  63. <view class="rule-bottom">
  64. <view class="button" @click="fitting()" style="width: 520rpx;margin-left: 50rpx;">
  65. 预约试穿
  66. </view>
  67. </view>
  68. </view>
  69. </u-popup>
  70. <u-popup :show="show" @close="close">
  71. <view class="goods-bottoms">
  72. <view class="goods">
  73. <view class="goods-img">
  74. <image :src="goodsInfo.cover"></image>
  75. </view>
  76. <view class="goods-name overflow2">{{goodsInfo.name}} {{goodsInfo.desc}}</view>
  77. </view>
  78. <view class="texts">尺码</view>
  79. <view class="goods-rule">
  80. <view class="rule-list" @click="ruleTaps(index)" :class="ruleIndexs==index?'classStyle':''" v-for="(item,index) in goodsInfo.item_list" :key="index">
  81. {{item.goods_spec}}
  82. </view>
  83. </view>
  84. <view class="rule-bottom">
  85. <view class="rule-left">
  86. <view class="moneys">¥{{goodsInfo.item_list[ruleIndexs].original_price}}</view>
  87. <view class="price">¥<span>{{goodsInfo.item_list[ruleIndexs].sell_price}}</span></view>
  88. </view>
  89. <view class="button" @click="submit">
  90. 立即购买
  91. </view>
  92. </view>
  93. </view>
  94. </u-popup>
  95. </view>
  96. </template>
  97. <script>
  98. import mpHtml from 'mp-html/dist/uni-app/components/mp-html/mp-html'
  99. import api from 'utils/api'
  100. import wybNoticeBar from '@/components/wyb-noticeBar/wyb-noticeBar.vue'
  101. import navBar from '@/components/nav-bar/nav-bar.vue'
  102. export default {
  103. components:{wybNoticeBar,navBar,mpHtml},
  104. data() {
  105. return {
  106. contenet:'',
  107. html:'<div>Hello World!</div>',
  108. show: false,
  109. show1:false,
  110. ruleIndex:0,
  111. ruleIndexs:0,
  112. list: [{
  113. iconPath: "home",
  114. selectedIconPath: "home-fill",
  115. text: '首页',
  116. count: 2,
  117. isDot: true,
  118. customIcon: false,
  119. },
  120. {
  121. iconPath: "account",
  122. selectedIconPath: "account-fill",
  123. text: '我的',
  124. count: 23,
  125. isDot: false,
  126. customIcon: false,
  127. },
  128. ],
  129. current: 0,
  130. texts:{
  131. },
  132. array:['测试11', '测试11', '测试11', '测试11'],
  133. title: 'Hello',
  134. rotation: [
  135. {
  136. id: 1,
  137. url: 'https://imgcps.jd.com/ling4/100035927374/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa42/60f03300/cr/s/q.jpg'
  138. },
  139. {
  140. id: 2,
  141. url: 'https://img12.360buyimg.com/pop/s1180x940_jfs/t1/217650/27/18929/95548/627b69e5E7f4c1ff2/1a6be6e037e34e5c.jpg.webp'
  142. },
  143. {
  144. id: 3,
  145. url: 'https://imgcps.jd.com/ling4/100012043978/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa09/00d13111/cr/s/q.jpg'
  146. },
  147. {
  148. id: 4,
  149. url: 'https://imgcps.jd.com/ling4/100014348458/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa7f/aa5a1911/cr/s/q.jpg'
  150. }
  151. ],
  152. goodsInfo:'',//商品详情
  153. }
  154. },
  155. onLoad(options) {
  156. this.getGoodsDetails(options.id)
  157. },
  158. methods: {
  159. //立即购买
  160. submit(){
  161. let index=this.ruleIndexs
  162. let _goods=this.goodsInfo.item_list[index]
  163. uni.setStorageSync("goods",_goods);
  164. uni.setStorageSync("goodsInfo",this.goodsInfo);
  165. uni.setStorageSync("status",1);
  166. uni.navigateTo({
  167. url:"/pages/orderPay/index"
  168. })
  169. },
  170. //预约试穿
  171. fitting(){
  172. let index=this.ruleIndex
  173. let _goods=this.goodsInfo.item_list[index]
  174. uni.setStorageSync("goods",_goods);
  175. uni.setStorageSync("goodsInfo",this.goodsInfo);
  176. uni.setStorageSync("status",0);
  177. uni.navigateTo({
  178. url:"/pages/orderPay/index"
  179. })
  180. },
  181. close(){
  182. this.show=false
  183. },
  184. close1(){
  185. this.show1=false
  186. },
  187. ruleTap(index){
  188. this.ruleIndex=index;
  189. },
  190. ruleTaps(index){
  191. this.ruleIndexs=index;
  192. },
  193. getGoodsDetails(id){
  194. let that=this;
  195. api.getGoodsDetail({"goods_id":id}).then((res)=>{
  196. if(res.code==1){
  197. this.goodsInfo=res.data.goods_info;
  198. that.contenet=res.data.goods_info.detail;
  199. }
  200. })
  201. },
  202. }
  203. }
  204. </script>
  205. <style lang="scss">
  206. .style-s{
  207. font-size: 24rpx;
  208. }
  209. .u-popup__content{
  210. background: none !important;
  211. }
  212. .rule-bottom{
  213. display: flex;
  214. justify-content: space-between;
  215. padding: 0 40rpx;
  216. height: 150rpx;
  217. margin-top: 100rpx;
  218. .button{
  219. text-align: center;
  220. color: #fff;
  221. font-size: 32rpx;
  222. line-height: 80rpx;
  223. width: 400rpx;
  224. height: 80rpx;
  225. background: #222222;
  226. margin-left: 20rpx;
  227. margin-top: 20rpx;
  228. }
  229. .rule-left{
  230. .moneys{
  231. color: #999;
  232. font-size: 24rpx;
  233. text-decoration: line-through;
  234. }
  235. .price{
  236. color: #222;
  237. font-size: 28rpx;
  238. margin-top: 10rpx;
  239. span{
  240. font-weight: 600;
  241. font-size: 40rpx;
  242. }
  243. }
  244. }
  245. }
  246. .goods-bottoms{
  247. width: 710rpx;
  248. // height: 620rpx;
  249. background: #FFFFFF;
  250. border-radius: 16rpx 16rpx 0px 0px;
  251. padding: 20rpx;
  252. .goods-rule{
  253. display: flex;
  254. flex-wrap: wrap;
  255. margin-left: -50rpx;
  256. .classStyle{
  257. border: 2rpx solid #222222;
  258. }
  259. .rule-list{
  260. box-sizing: border-box;
  261. // width: 88rpx;
  262. padding: 0 10rpx;
  263. height: 48rpx;
  264. background: #F4F4F4;
  265. border-radius: 8rpx;
  266. color: #222;
  267. font-size: 24rpx;
  268. margin-left: 60rpx;
  269. text-align: center;
  270. line-height: 48rpx;
  271. margin-bottom: 10rpx;
  272. }
  273. }
  274. .texts{
  275. font-size: 28rpx;
  276. color: #222;
  277. margin: 20rpx 0;
  278. }
  279. .goods{
  280. display: flex;
  281. .goods-name{
  282. margin: 20rpx 0 0 20rpx;
  283. padding: 0 20rpx;
  284. width: 500rpx;
  285. height: 40px;
  286. }
  287. .goods-img{
  288. image{
  289. width: 120rpx;
  290. height:120rpx;
  291. }
  292. }
  293. }
  294. }
  295. .pay-bottom{
  296. width: 100%;
  297. height: 130rpx;
  298. background: #FFFFFF;
  299. position: fixed;
  300. bottom: 0;
  301. display: flex;
  302. padding-top: 25rpx;
  303. .bottomStyle{
  304. width: 150rpx;
  305. text-align: center;
  306. margin-left: 40rpx;
  307. .texts{
  308. font-size: 24rpx;
  309. color: #222;
  310. font-weight: 600;
  311. }
  312. .shoes-icon{
  313. image{
  314. width: 48rpx;
  315. height: 48rpx;
  316. }
  317. }
  318. }
  319. .button{
  320. text-align: center;
  321. color: #fff;
  322. font-size: 32rpx;
  323. line-height: 80rpx;
  324. width: 500rpx;
  325. height: 80rpx;
  326. background: #222222;
  327. margin-left: 20rpx;
  328. }
  329. }
  330. .goods-desc{
  331. background-color: #fff;
  332. padding: 30rpx;
  333. width: 610rpx;
  334. margin: 0 auto;
  335. margin-bottom: 200rpx;
  336. border-radius: 16rpx;
  337. .title{
  338. color: #222;
  339. font-size: 28rpx;
  340. }
  341. }
  342. .goods-detail{
  343. background: #FFFFFF;
  344. box-shadow: 0px 4rpx 12rpx 0px rgba(231,231,231,0.41);
  345. border-radius: 16rpx;
  346. margin: 30rpx auto;
  347. width: 630rpx;
  348. padding: 25rpx;
  349. .goods-names{
  350. width: 650rpx;
  351. color: #222;
  352. font-size: 28rpx;
  353. margin-top: 10rpx;
  354. }
  355. .money{
  356. .moneys{
  357. color: #222;
  358. font-size: 40rpx;
  359. }
  360. .texts{
  361. color: #222;
  362. font-size: 20rpx;
  363. margin-left: 10rpx;
  364. }
  365. .price{
  366. font-size: 24rpx;
  367. color: #999;
  368. margin-left: 10rpx;
  369. text-decoration:line-through
  370. }
  371. }
  372. }
  373. .goods-content{
  374. padding: 0 16rpx 0 4rpx;
  375. display: flex;
  376. justify-content: left;
  377. margin-left: 30rpx;
  378. .goods-list{
  379. // flex: 1;
  380. margin-left: 12rpx;
  381. text-align: center;
  382. image{
  383. width: 104rpx;
  384. height: 104rpx;
  385. }
  386. }
  387. }
  388. swiper{
  389. height: 750rpx;
  390. }
  391. .swiper{
  392. margin: 12rpx auto;
  393. text-align: center;
  394. }
  395. .swiper-img{
  396. width: 100%;
  397. height: 750rpx;
  398. text-align: center;
  399. // border-radius: 16rpx;
  400. }
  401. </style>