good-detail.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <template>
  2. <view class="good-detail">
  3. <u-swiper :list="detail.imgs" @change="e => currentNum = e.current" height="375" :autoplay="false" indicatorStyle="right: 20px">
  4. <view slot="indicator" class="indicator-num">
  5. <text class="indicator-num__text hflex acenter jcenter">{{ currentNum + 1 }}/{{ detail.imgs.length }}</text>
  6. </view>
  7. </u-swiper>
  8. <view class="detail">
  9. <view class="box">
  10. <view class="price">{{detail.price}}<text>积分</text></view>
  11. </view>
  12. <view class="box hflex acenter jbetween" @click="spec_show = true">
  13. <view class="label">选择</view>
  14. <view class="text" v-if="active != -1">已选:{{detail.speclist[active].name}}</view>
  15. <view class="text" v-else>请先选择规格</view>
  16. <u-icon name="arrow-right" color="#000" size="20"></u-icon>
  17. </view>
  18. <u-parse :content="detail.content"></u-parse>
  19. </view>
  20. <view class="bottom hflex acenter jbetween">
  21. <view class="vflex acenter jcenter collect">
  22. <u-icon name="star" color="#000" size="22" v-if="!detail.is_collect"></u-icon>
  23. <u-icon name="star-fill" color="#00B0B0" size="22" v-if="detail.is_collect"></u-icon>
  24. <text>收藏</text>
  25. </view>
  26. <view class="btn" @click="toconfirm">立即兑换</view>
  27. </view>
  28. <u-popup :show="spec_show" mode="bottom" :round="10" @close="toclose">
  29. <view class="spec-popu">
  30. <view class="spec-top hflex jbetween">
  31. <image :src="detail.cover" mode="aspectFill"></image>
  32. <view class="vflex jbetween top-center">
  33. <view class="spec-price">{{detail.price}}<text>积分</text></view>
  34. <view class="spec-text" v-if="active != -1">已选择:“{{detail.speclist[active].name}}”</view>
  35. <view class="spec-text" v-else>请选择规格</view>
  36. </view>
  37. <image src="static/close.png" mode="aspectFill" @click="toclose"></image>
  38. </view>
  39. <view class="spec-list hflex acenter fwrap">
  40. <view class="spec-title">类型</view>
  41. <view class="spec-item" :class="active == index ? 'item-active' : ''" v-for="(item,index) in detail.speclist" :key="index" @click="select(index)">
  42. <text>{{item.name}}</text>
  43. </view>
  44. </view>
  45. <view class="spec-num hflex acenter jbetween">
  46. <view class="spec-title">数量</view>
  47. <u-number-box v-model="detail.num" :integer="true">
  48. <view slot="minus" class="minus" :class="detail.num == 1 ? 'minus2' : ''">
  49. <u-icon name="minus" size="12" color="#FFFFFF"></u-icon>
  50. </view>
  51. <input slot="input" class="input" v-model="detail.num"></input>
  52. <view slot="plus" class="minus">
  53. <u-icon name="plus" color="#FFFFFF" size="12"></u-icon>
  54. </view>
  55. </u-number-box>
  56. </view>
  57. <view class="spec-btn hflex acenter jcenter" @click="sure">确定</view>
  58. </view>
  59. </u-popup>
  60. </view>
  61. </template>
  62. <script>
  63. import $api from '@/static/js/api.js'
  64. export default {
  65. data() {
  66. return {
  67. id: '',
  68. detail: {},
  69. currentNum: 0,
  70. active: -1,
  71. spec_show: false
  72. }
  73. },
  74. onLoad(options) {
  75. this.id = options.id
  76. this.getdata()
  77. },
  78. methods: {
  79. toconfirm() {
  80. if(this.active == -1) {
  81. $api.info('请先选择规格')
  82. return
  83. }
  84. uni.navigateTo({
  85. url: '/pageB/order-confirm'
  86. })
  87. },
  88. /* 点击确定 */
  89. sure() {
  90. this.spec_show = false
  91. },
  92. /* 选择规格 */
  93. select(index) {
  94. this.active = index
  95. },
  96. /* 关闭规格 */
  97. toclose() {
  98. this.spec_show = false
  99. },
  100. /* 获取详情 */
  101. getdata() {
  102. this.detail = {
  103. imgs: [
  104. 'https://dummyimage.com/750x750/e3e3e3/fff',
  105. 'https://dummyimage.com/750x750/e3e3e3/fff',
  106. 'https://dummyimage.com/750x750/e3e3e3/fff',
  107. ],
  108. cover: 'https://dummyimage.com/750x750/e3e3e3/fff',
  109. price: 13850,
  110. name: 'Apple iPhone 15 Pro Max (A3108) 256GB 原色钛金属 支持移动联通电信5G 双卡双待手机',
  111. is_collect: false,
  112. num: 1,
  113. content: ``,
  114. speclist: [
  115. {
  116. id: 1,
  117. name: '原色钛金属+256GB'
  118. },
  119. {
  120. id: 1,
  121. name: '原色钛金属+256GB'
  122. },
  123. {
  124. id: 1,
  125. name: '原色钛金属+256GB'
  126. },{
  127. id: 1,
  128. name: '原色钛金属+256GB'
  129. },{
  130. id: 1,
  131. name: '原色钛金属+256GB'
  132. },{
  133. id: 1,
  134. name: '原色钛金属+256GB'
  135. },{
  136. id: 1,
  137. name: '原色钛金属+256GB'
  138. },
  139. ],
  140. }
  141. },
  142. }
  143. }
  144. </script>
  145. <style lang="scss">
  146. .good-detail {
  147. min-height: 100vh;
  148. .spec-popu {
  149. background: #FFFFFF;
  150. border-radius: 32rpx 32rpx 0rpx 0rpx;
  151. box-sizing: border-box;
  152. padding: 40rpx 28rpx;
  153. max-height: 65vh;
  154. overflow: auto;
  155. .spec-top {
  156. image:first-child {
  157. width: 180rpx;
  158. height: 180rpx;
  159. }
  160. .top-center {
  161. padding-left: 20rpx;
  162. width: 450rpx;
  163. height: 180rpx;
  164. .spec-price {
  165. font-size: 40rpx;
  166. font-family: SFPro, SFPro;
  167. font-weight: 600;
  168. color: #FF4954;
  169. text {
  170. font-size: 26rpx;
  171. font-weight: 500;
  172. }
  173. }
  174. .spec-text {
  175. font-size: 26rpx;
  176. font-family: PingFangSC, PingFang SC;
  177. font-weight: 400;
  178. color: #222222;
  179. }
  180. }
  181. image:last-child {
  182. width: 36rpx;
  183. height: 36rpx;
  184. }
  185. }
  186. .spec-list {
  187. padding: 28rpx 0 96rpx;
  188. border-bottom: 2rpx solid #F2F2F2;
  189. .spec-title {
  190. width: 100%;
  191. font-size: 28rpx;
  192. font-family: PingFangSC, PingFang SC;
  193. font-weight: 400;
  194. color: #222222;
  195. }
  196. .spec-item {
  197. margin: 24rpx 30rpx 0 0;
  198. background: #F3F3F3;
  199. border-radius: 30rpx;
  200. box-sizing: border-box;
  201. padding: 12rpx 55rpx;
  202. text {
  203. font-size: 24rpx;
  204. font-family: SFPro, SFPro;
  205. font-weight: 400;
  206. color: #222222;
  207. }
  208. }
  209. .item-active {
  210. background: rgba(0,176,176,0.06);
  211. border: 2rpx solid #00B0B0;
  212. text {
  213. color: #00B0B0;
  214. }
  215. }
  216. }
  217. .spec-num {
  218. padding: 38rpx 0;
  219. .spec-title {
  220. font-size: 28rpx;
  221. font-family: PingFangSC, PingFang SC;
  222. font-weight: 400;
  223. color: #222222;
  224. }
  225. .minus {
  226. width: 40rpx;
  227. height: 40rpx;
  228. border-width: 1px;
  229. border-color: #d5d5d5;
  230. background: #d5d5d5;
  231. border-style: solid;
  232. border-radius: 50%;
  233. @include flex;
  234. justify-content: center;
  235. align-items: center;
  236. }
  237. .minus2 {
  238. background: #ebebeb;
  239. border-color: #ebebeb;
  240. }
  241. input {
  242. width: 50rpx;
  243. text-align: center;
  244. padding: 0 10px;
  245. }
  246. }
  247. .spec-btn {
  248. width: 702rpx;
  249. height: 80rpx;
  250. background: #00B0B0;
  251. border-radius: 42rpx;
  252. font-size: 32rpx;
  253. font-family: PingFangSC, PingFang SC;
  254. font-weight: 500;
  255. color: #FFFFFF;
  256. text-align: center;
  257. line-height: 80rpx;
  258. }
  259. }
  260. .bottom {
  261. position: fixed;
  262. bottom: 0;
  263. left: 0;
  264. width: 750rpx;
  265. height: 166rpx;
  266. background: #FFFFFF;
  267. box-sizing: border-box;
  268. padding: 16rpx 24rpx 66rpx;
  269. .collect {
  270. text {
  271. font-size: 20rpx;
  272. font-weight: 400;
  273. color: #222222;
  274. padding: 6rpx 0 0;
  275. }
  276. }
  277. .btn {
  278. width: 620rpx;
  279. height: 84rpx;
  280. background: #00B0B0;
  281. border-radius: 42rpx;
  282. font-size: 32rpx;
  283. font-family: PingFangSC, PingFang SC;
  284. font-weight: 500;
  285. color: #FFFFFF;
  286. line-height: 84rpx;
  287. text-align: center;
  288. }
  289. }
  290. .detail {
  291. min-height: calc(100vh - 750rpx);
  292. background: #F5F5F5;
  293. box-sizing: border-box;
  294. padding: 20rpx 24rpx 0;
  295. .box {
  296. background: #FFFFFF;
  297. border-radius: 20rpx;
  298. margin: 0 0 20rpx;
  299. padding: 24rpx 20rpx;
  300. box-sizing: border-box;
  301. .price {
  302. font-size: 44rpx;
  303. font-family: SFPro, SFPro;
  304. font-weight: 600;
  305. color: #FF4954;
  306. text {
  307. font-size: 28rpx;
  308. font-weight: 500;
  309. }
  310. }
  311. .label {
  312. font-size: 26rpx;
  313. font-family: PingFangSC, PingFang SC;
  314. font-weight: 400;
  315. color: #666666;
  316. padding-right: 20rpx;
  317. }
  318. .text {
  319. font-size: 28rpx;
  320. font-family: SFPro, SFPro;
  321. font-weight: 400;
  322. color: #222222;
  323. width: 550rpx;
  324. }
  325. }
  326. }
  327. .indicator-num__text {
  328. width: 80rpx;
  329. height: 40rpx;
  330. background: rgba(0, 0, 0, 0.1);
  331. border-radius: 20rpx;
  332. font-size: 22rpx;
  333. font-family: SFPro, SFPro;
  334. font-weight: 400;
  335. color: #FFFFFF;
  336. line-height: 40rpx;
  337. letter-spacing: 1px;
  338. }
  339. }
  340. </style>