good-detail.vue 8.4 KB

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