good-detail.vue 8.1 KB

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