detail.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <view class="content">
  3. <u-navbar title=" " @leftClick="leftClick" height="44px" bgColor="#F5F5F5" :placeholder="true">
  4. <view class="hflex acenter" slot="center">
  5. <view class="nav_item" @click="changeNav(1)" :class="nav_active == 1?'nav_active': '' ">商品</view>
  6. <view class="nav_item" @click="changeNav(2)" :class="nav_active == 2?'nav_active': '' ">详情</view>
  7. </view>
  8. </u-navbar>
  9. <view class="swiper">
  10. <u-swiper :list="pageData.imgList" height="300" @change="e => currentNum = e.current" :autoplay="false" indicatorStyle="right: 20px">
  11. <view slot="indicator" class="indicator-num">
  12. <text class="indicator-num__text">{{ currentNum + 1 }}/{{ pageData.imgList.length }}</text>
  13. </view>
  14. </u-swiper>
  15. </view>
  16. <view class="box">
  17. <view class="hflex acenter jbetween">
  18. <view class="price">¥{{pageData.price}}</view>
  19. <view class="hflex acenter">
  20. <view class="vflex acenter" @click="collect">
  21. <u-icon name="star" color="#444444" size="20" v-if="pageData.is_collect == 0"></u-icon>
  22. <u-icon name="star-fill" color="#506DFF" size="20" v-else></u-icon>
  23. <view class="text_style1">收藏</view>
  24. </view>
  25. <view class="vflex acenter" style="margin-left: 42rpx;">
  26. <image src="/static/images/comment/share.png" class="bottom_img"></image>
  27. <view class="text_style1">分享</view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="name">{{pageData.name}}</view>
  32. </view>
  33. <view class="box">
  34. <view class="hflex acenter jbetween" @click="openNorm">
  35. <view class="hflex acenter">
  36. <view class="label">选择</view>
  37. <view class="text_style2">{{normStr?normStr:'选择规格'}}</view>
  38. </view>
  39. <u-icon name="arrow-right" color="#000" size="14"></u-icon>
  40. </view>
  41. <view class="hflex acenter jbetween pad-20" @click="openAddr">
  42. <view class="hflex acenter">
  43. <view class="label">配送</view>
  44. <view class="text_style2">{{delivery?delivery:'选择配送地址'}}</view>
  45. </view>
  46. <u-icon name="arrow-right" color="#000" size="14"></u-icon>
  47. </view>
  48. </view>
  49. <view class="box1">
  50. <view class="title">商品图文详情</view>
  51. <block v-for="(item,index) in pageData.detail" :key="index">
  52. <image :src="item" mode="widthFix" class="detail_img"></image>
  53. </block>
  54. </view>
  55. <view class="bottom hflex acenter jbetween">
  56. <view class="vflex acenter" @click="toShop">
  57. <image src="/static/images/shop/shop_icon.png" class="bottom_img"></image>
  58. <view class="text_style1">店铺</view>
  59. </view>
  60. <view class="vflex acenter">
  61. <image src="/static/images/shop/customer_icon.png" class="bottom_img"></image>
  62. <view class="text_style1">客服</view>
  63. </view>
  64. <view class="vflex acenter" @click="toCart">
  65. <image src="/static/images/shop/cart_icon.png" class="bottom_img"></image>
  66. <view class="text_style1">购物车</view>
  67. </view>
  68. <view class="hflex acenter">
  69. <view class="btn1" @click="addCart">加入购物车</view>
  70. <view class="btn2" @click="buy">立即购买</view>
  71. </view>
  72. </view>
  73. <u-popup :show="norm_show" @close="close" mode="bottom" :round="20" :closeable="true">
  74. <view class="popu">
  75. <view class="hflex acenter">
  76. <image :src="pageData.imgList[0]" class="popu_img" mode="aspectFill"></image>
  77. <view class="vflex jbetween popu_right">
  78. <view class="popu_price">¥{{pageData.price}}</view>
  79. <view class="popu_norm">{{normStr?normStr:'选择规格'}}</view>
  80. </view>
  81. </view>
  82. <view class="popu_title">规格</view>
  83. <view class="hflex acenter fwrap">
  84. <block v-for="(item,index) in pageData.norm.normList" :key="index">
  85. <view class="popu_box" @click="selectNorm(item.index)" :class="norm_active == item.index?'sele_active':''">{{item.name}}</view>
  86. </block>
  87. </view>
  88. <view class="popu_title">颜色</view>
  89. <view class="hflex acenter fwrap">
  90. <block v-for="(item,index) in pageData.norm.colorList" :key="index">
  91. <view class="popu_box" @click="selectColor(item.index)" :class="color_active == item.index?'sele_active':''">{{item.name}}</view>
  92. </block>
  93. </view>
  94. <view class="hflex acenter jbetween">
  95. <view class="popu_title">数量</view>
  96. <u-number-box v-model="pageData.norm.num" @change="changeNum"></u-number-box>
  97. </view>
  98. <view class="sure_btn" @click="sure">确定</view>
  99. </view>
  100. </u-popup>
  101. <u-popup :show="addr_show" @close="close" mode="bottom" :round="20" :closeable="true">
  102. <view class="popu">
  103. <view class="hflex acenter jcenter popu_title">配送地址</view>
  104. <view>
  105. <block v-for="(item,index) in pageData.delivery" :key="index">
  106. <view class="box_bg hflex acenter" @click="selectAddr(item.index)">
  107. <image v-if="item.checked == 1" src="/static/images/shop/checked.png" class="check_img"></image>
  108. <u-icon v-else name="map-fill" color="#b2b2b2" size="12"></u-icon>
  109. <view class="popu_right2">
  110. <view class="hflex acenter">
  111. <view class="popu_name">{{item.name}}</view>
  112. <view class="popu_phone">{{item.phone}}</view>
  113. </view>
  114. <view class="popu_addr">{{item.address}}</view>
  115. </view>
  116. </view>
  117. </block>
  118. </view>
  119. <view class="sure_btn" @click="select">选择其他收货地址</view>
  120. </view>
  121. </u-popup>
  122. </view>
  123. </template>
  124. <script>
  125. import $api from '@/static/js/api.js'
  126. var that = ''
  127. export default {
  128. data() {
  129. return {
  130. nav_active: 1,
  131. currentNum: 0,
  132. pageData: {
  133. imgList: [
  134. '/static/images/index/class_img1.png',
  135. '/static/images/index/class_img1.png',
  136. '/static/images/index/class_img1.png',
  137. ],
  138. price: '699.33',
  139. name: 'TCL 电视 55英寸 4K超清护眼防蓝光超薄金属全面屏 远程语音',
  140. norm: {
  141. normList: [
  142. {
  143. index: 0,
  144. name: '3kw单相手启动'
  145. },
  146. {
  147. index: 1,
  148. name: '3kw单相手启动'
  149. },
  150. {
  151. index: 2,
  152. name: '3kw单相手启动'
  153. },
  154. {
  155. index: 3,
  156. name: '3kw单相手启动'
  157. },
  158. {
  159. index: 4,
  160. name: '3kw单相手启动'
  161. },
  162. {
  163. index: 5,
  164. name: '3kw单相手启动'
  165. }
  166. ],
  167. colorList: [
  168. {
  169. index: 0,
  170. name: '褐色'
  171. },
  172. {
  173. index: 1,
  174. name: '白色'
  175. },
  176. {
  177. index: 2,
  178. name: '黑色'
  179. },
  180. {
  181. index: 3,
  182. name: '粉色'
  183. },
  184. {
  185. index: 4,
  186. name: '午夜色'
  187. },
  188. {
  189. index: 5,
  190. name: '红色'
  191. }
  192. ],
  193. num: 1
  194. },
  195. delivery: [
  196. {
  197. index: 0,
  198. name: '张大成',
  199. phone: '198****2345',
  200. address: '河北省 保定市 莲池区 未来石4号楼20221室',
  201. delivery: '河北省 保定市 莲池区',
  202. is_default: 1
  203. },
  204. {
  205. index: 1,
  206. name: '张大成',
  207. phone: '198****2345',
  208. address: '河北省 保定市 莲池区 未来石4号楼20221室',
  209. delivery: '河北省 保定市 莲池区',
  210. is_default: 0
  211. },
  212. {
  213. index: 2,
  214. name: '张大成',
  215. phone: '198****2345',
  216. address: '河北省 保定市 莲池区 未来石4号楼20221室',
  217. delivery: '河北省 保定市 莲池区',
  218. is_default: 0
  219. }
  220. ],
  221. detail: ['/static/images/index/class_img1.png','/static/images/index/class_img2.png','/static/images/index/class_img1.png','/static/images/index/class_img2.png',],
  222. is_collect: 0,
  223. },
  224. normStr: '',
  225. norm: '',
  226. color: '',
  227. delivery: '',
  228. norm_show: false,
  229. addr_show: false,
  230. norm_active: -1,
  231. color_active:-1,
  232. is_buy: 0,
  233. }
  234. },
  235. onLoad() {
  236. that = this
  237. that.delivery = that.pageData.delivery[0].delivery
  238. that.pageData.delivery[0].checked = true
  239. },
  240. onPageScroll(e) {
  241. if(e.scrollTop < 530) {
  242. that.nav_active = 1
  243. } else {
  244. that.nav_active = 2
  245. }
  246. },
  247. methods: {
  248. // 返回
  249. leftClick() {
  250. $api.jump(-1)
  251. },
  252. // 切换导航栏
  253. changeNav(index) {
  254. that.nav_active = index
  255. if(index == 1) {
  256. uni.pageScrollTo({
  257. scrollTop: 0,
  258. duration: 300
  259. });
  260. } else {
  261. uni.pageScrollTo({
  262. scrollTop: 530,
  263. duration: 300
  264. });
  265. }
  266. },
  267. // 收藏
  268. collect() {
  269. if(that.pageData.is_collect == 0) {
  270. that.pageData.is_collect = 1
  271. $api.req({
  272. url: '/data/api.Goods/collection',
  273. data: {
  274. goods_id: '4',
  275. }
  276. }, function(res) {
  277. if(res.code == 1) {
  278. console.log(res);
  279. }
  280. })
  281. // $api.info('收藏成功')
  282. } else {
  283. that.pageData.is_collect = 0
  284. $api.info('取消收藏')
  285. }
  286. },
  287. // 打开规格
  288. openNorm() {
  289. that.norm_show = true
  290. },
  291. // 打开配送
  292. openAddr() {
  293. that.addr_show = true
  294. },
  295. // 选择规格
  296. selectNorm(index) {
  297. that.norm_active = index
  298. that.norm = that.pageData.norm.normList[index].name
  299. that.normStr = that.norm + ' ' + that.color + ' ' + 'X' + that.pageData.norm.num
  300. },
  301. // 选择颜色
  302. selectColor(index) {
  303. that.color_active = index
  304. that.color = that.pageData.norm.colorList[index].name
  305. that.normStr = that.norm + ' ' + that.color + ' ' + 'X' + that.pageData.norm.num
  306. },
  307. // 选择数量
  308. changeNum(e) {
  309. that.pageData.norm.num = e.value
  310. that.normStr = that.norm + ' ' + that.color + ' ' + 'X' + that.pageData.norm.num
  311. },
  312. // 选择地址
  313. selectAddr(index) {
  314. for(var i=0;i<that.pageData.delivery.length;i++) {
  315. if(i == index) {
  316. console.log(i);
  317. that.$set(that.pageData.delivery[i],'checked',1)
  318. that.delivery = that.pageData.delivery[i].delivery
  319. } else {
  320. that.$set(that.pageData.delivery[i],'checked',0)
  321. }
  322. }
  323. },
  324. // 加入购物车
  325. addCart() {
  326. if(that.norm == '' && that.color == '') {
  327. that.openNorm()
  328. } else {
  329. $api.info('加入购物车成功')
  330. that.close()
  331. }
  332. },
  333. // 立即购买
  334. buy() {
  335. if(that.norm == '' && that.color == '') {
  336. that.is_buy = 1
  337. that.openNorm()
  338. } else {
  339. $api.jump('/page_shop/pages/good/submit')
  340. that.close()
  341. }
  342. },
  343. // 确定选择规格
  344. sure() {
  345. console.log(that.norm);
  346. console.log(that.color);
  347. if(that.norm == '' || that.color == '') {
  348. $api.info('请选择规格')
  349. return
  350. }
  351. if(that.is_buy == 1) {
  352. that.buy()
  353. } else {
  354. that.addCart()
  355. }
  356. },
  357. // 关闭弹窗
  358. close() {
  359. that.norm_show = false
  360. that.addr_show = false
  361. },
  362. // 选择其他收货地址
  363. select() {
  364. $api.jump('/page_shop/pages/address/list')
  365. that.close()
  366. },
  367. // 店铺
  368. toShop() {
  369. $api.jump('/page_shop/pages/good/shop')
  370. },
  371. // 购物车
  372. toCart() {
  373. $api.jump('/page_shop/pages/mine/cart')
  374. }
  375. },
  376. }
  377. </script>
  378. <style lang="scss" scoped>
  379. .content::v-deep {
  380. background: #F5F5F5;
  381. .nav_item {
  382. font-size: 32rpx;
  383. font-weight: 500;
  384. color: #999999;
  385. line-height: 50rpx;
  386. margin-right: 88rpx;
  387. }
  388. .nav_active {
  389. color: #222222;
  390. position: relative;
  391. }
  392. .nav_active::after {
  393. content: "";
  394. position: absolute;
  395. bottom: -8rpx;
  396. left: 11rpx;
  397. width: 40rpx;
  398. height: 8rpx;
  399. background: #506DFF;
  400. border-radius: 6rpx;
  401. }
  402. .swiper {
  403. width: 100%;
  404. margin: 0 0 10rpx;
  405. .indicator {
  406. @include flex(row);
  407. justify-content: center;
  408. }
  409. .indicator-num {
  410. padding: 4rpx 0;
  411. background-color: rgba(0, 0, 0, 0.6);
  412. border-radius: 20rpx;
  413. width: 72rpx;
  414. @include flex;
  415. justify-content: center;
  416. &__text {
  417. color: #FFFFFF;
  418. font-size: 24rpx;
  419. font-weight: 400;
  420. line-height: 30rpx;
  421. }
  422. }
  423. }
  424. .box {
  425. margin: 10rpx auto;
  426. width: 690rpx;
  427. background: #FFFFFF;
  428. border-radius: 16rpx;
  429. box-sizing: border-box;
  430. padding: 26rpx 20rpx;
  431. .price {
  432. font-size: 32rpx;
  433. font-weight: bold;
  434. color: #FF5959;
  435. line-height: 38rpx;
  436. }
  437. .name {
  438. margin-top: 20rpx;
  439. font-size: 36rpx;
  440. font-weight: 500;
  441. color: #222222;
  442. line-height: 50rpx;
  443. }
  444. .bottom_img {
  445. width: 40rpx;
  446. height: 40rpx;
  447. }
  448. .pad-20 {
  449. padding: 40rpx 0 0;
  450. }
  451. .label {
  452. font-size: 26rpx;
  453. font-weight: 400;
  454. color: #979797;
  455. line-height: 36rpx;
  456. padding-right: 32rpx;
  457. }
  458. .text_style2 {
  459. font-size: 26rpx;
  460. font-weight: 400;
  461. color: #333333;
  462. line-height: 36rpx;
  463. }
  464. }
  465. .box1 {
  466. width: 690rpx;
  467. background: #FFFFFF; border-radius: 16rpx;
  468. margin: 10rpx auto 186rpx;
  469. box-sizing: border-box;
  470. padding: 26rpx 0;
  471. .title {
  472. font-size: 30rpx;
  473. font-weight: 400;
  474. color: #222222;
  475. line-height: 42rpx;
  476. width: 100%;
  477. text-align: center;
  478. padding: 30rpx 0;
  479. }
  480. .detail_img {
  481. width: 100%;
  482. padding-bottom: 20rpx;
  483. }
  484. }
  485. .text_style1 {
  486. font-size: 20rpx;
  487. font-weight: 400;
  488. color: #444444;
  489. margin-top: 6rpx;
  490. }
  491. .bottom {
  492. width: 100%;
  493. z-index: 9;
  494. position: fixed;
  495. bottom: 0;
  496. height: 166rpx;
  497. background: #FFFFFF;
  498. box-sizing: border-box;
  499. padding: 8rpx 30rpx 74rpx;
  500. .btn1 {
  501. width: 220rpx;
  502. height: 72rpx;
  503. background: #FFCA43;
  504. border-radius: 38rpx 0px 0px 38rpx;
  505. font-size: 28rpx;
  506. font-weight: 500;
  507. color: #FFFFFF;
  508. text-align: center;
  509. line-height: 72rpx;
  510. }
  511. .btn2 {
  512. width: 220rpx;
  513. height: 72rpx;
  514. background: #506DFF;
  515. border-radius: 0px 38rpx 38rpx 0px;
  516. font-size: 28rpx;
  517. font-weight: 500;
  518. color: #FFFFFF;
  519. text-align: center;
  520. line-height: 72rpx;
  521. }
  522. .bottom_img {
  523. width: 40rpx;
  524. height: 40rpx;
  525. }
  526. }
  527. .popu {
  528. background: #FFFFFF;
  529. box-sizing: border-box;
  530. padding: 48rpx 30rpx;
  531. .popu_img {
  532. width: 160rpx;
  533. height: 160rpx;
  534. border-radius: 12rpx;
  535. margin-right: 20rpx;
  536. }
  537. .popu_right {
  538. height: 124rpx;
  539. margin: 20rpx 0 16rpx;
  540. .popu_price {
  541. font-size: 28rpx;
  542. font-weight: 400;
  543. color: #FF4747;
  544. line-height: 34rpx;
  545. }
  546. .popu_norm {
  547. font-size: 24rpx;
  548. font-weight: 400;
  549. color: #A7A7A7;
  550. line-height: 34rpx;
  551. }
  552. }
  553. .popu_title {
  554. font-size: 28rpx;
  555. font-weight: 500;
  556. color: #222222;
  557. line-height: 40rpx;
  558. padding: 20rpx 0;
  559. }
  560. .box_bg {
  561. background: #F5F5F5;
  562. border-radius: 16rpx;
  563. box-sizing: border-box;
  564. padding: 24rpx 20rpx;
  565. margin: 10rpx 0;
  566. .check_img {
  567. width: 24rpx;
  568. height: 24rpx;
  569. }
  570. .popu_right2 {
  571. padding-left: 30rpx;
  572. .popu_name {
  573. font-size: 28rpx;
  574. font-weight: 500;
  575. color: #222222;
  576. line-height: 40rpx;
  577. }
  578. .popu_phone {
  579. padding-left: 16rpx;
  580. font-size: 22rpx;
  581. font-weight: 400;
  582. color: #999999;
  583. line-height: 16px;
  584. }
  585. .popu_addr {
  586. padding: 16rpx 0 0;
  587. font-size: 24rpx;
  588. font-weight: 400;
  589. color: #444444;
  590. line-height: 34rpx;
  591. }
  592. }
  593. }
  594. .popu_box {
  595. background: #F4F4F4;
  596. border-radius: 8rpx;
  597. font-size: 26rpx;
  598. font-weight: 400;
  599. color: #222222;
  600. line-height: 36rpx;
  601. padding: 14rpx 36rpx;
  602. margin: 0 22rpx 28rpx 0;
  603. }
  604. // .popu_box:nth-child(4n+4) {
  605. // margin: 0 0 28rpx 0;
  606. // }
  607. .sele_active {
  608. background: #F1F4FF;
  609. border: 1px solid #5471FF;
  610. color: #506DFF;
  611. }
  612. .sure_btn {
  613. width: 100%;
  614. height: 84rpx;
  615. background: #506DFF;
  616. border-radius: 42rpx;
  617. font-size: 36rpx;
  618. font-weight: 500;
  619. color: #FFFFFF;
  620. line-height: 84rpx;
  621. text-align: center;
  622. margin-top: 94rpx;
  623. }
  624. }
  625. }
  626. </style>