good-detail.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <template>
  2. <view class="good-detail">
  3. <u-swiper :list="detail.images" @change="e => currentNum = e.current" height="375" :autoplay="false"
  4. indicatorStyle="right: 20px">
  5. <view slot="indicator" class="indicator-num">
  6. <text
  7. class="indicator-num__text hflex acenter jcenter">{{ currentNum + 1 }}/{{ detail.images.length || 0 }}</text>
  8. </view>
  9. </u-swiper>
  10. <view class="detail">
  11. <view class="box">
  12. <view class="price">{{detail.price}}<text>积分</text></view>
  13. <view class="name">
  14. {{detail.name}}
  15. </view>
  16. </view>
  17. <view class="box hflex acenter jbetween" @click="spec_show = true">
  18. <view class="label">选择</view>
  19. <view class="text" v-if="active != -1">已选:{{detail.speclist[active].name}}</view>
  20. <view class="text" v-else>请先选择数量</view>
  21. <u-icon name="arrow-right" color="#000" size="20"></u-icon>
  22. </view>
  23. <u-parse :content="detail.detail"></u-parse>
  24. </view>
  25. <view class="bottom hflex acenter jbetween">
  26. <view class="vflex acenter jcenter collect" @click="tocollect">
  27. <u-icon name="star" color="#000" size="22" v-if="!detail.is_collect"></u-icon>
  28. <u-icon name="star-fill" color="#00B0B0" size="22" v-if="detail.is_collect"></u-icon>
  29. <text>{{detail.is_collect ? '已收藏' : '收藏'}}</text>
  30. </view>
  31. <view class="btn" @click="toconfirm">立即兑换</view>
  32. </view>
  33. <u-popup :show="spec_show" mode="bottom" :round="10" @close="toclose">
  34. <view class="spec-popu">
  35. <view class="spec-top hflex jbetween">
  36. <image :src="detail.image" mode="aspectFill"></image>
  37. <view class="vflex jbetween top-center">
  38. <view class="spec-price">{{detail.price}}<text>积分</text></view>
  39. <!-- <view class="spec-text" v-if="active != -1">已选择:“{{detail.speclist[active].name}}”</view>
  40. <view class="spec-text" v-else>请选择规格</view> -->
  41. </view>
  42. <image src="static/close.png" mode="aspectFill" @click="toclose"></image>
  43. </view>
  44. <!-- <view class="spec-list hflex acenter fwrap">
  45. <view class="spec-title">类型</view>
  46. <view class="spec-item" :class="active == index ? 'item-active' : ''"
  47. v-for="(item,index) in detail.speclist" :key="index" @click="select(index)">
  48. <text>{{item.name}}</text>
  49. </view>
  50. </view> -->
  51. <view class="spec-num hflex acenter jbetween">
  52. <view class="spec-title">数量</view>
  53. <u-number-box v-model="num" :integer="true">
  54. <view slot="minus" class="minus" :class="num == 1 ? 'minus2' : ''">
  55. <u-icon name="minus" size="12" color="#FFFFFF"></u-icon>
  56. </view>
  57. <input slot="input" class="input" v-model="num"></input>
  58. <view slot="plus" class="minus">
  59. <u-icon name="plus" color="#FFFFFF" size="12"></u-icon>
  60. </view>
  61. </u-number-box>
  62. </view>
  63. <view class="spec-btn hflex acenter jcenter" @click="sure">确定</view>
  64. </view>
  65. </u-popup>
  66. </view>
  67. </template>
  68. <script>
  69. import $api from '@/static/js/api.js'
  70. export default {
  71. data() {
  72. return {
  73. id: '',
  74. detail: {
  75. images: []
  76. },
  77. currentNum: 0,
  78. active: -1,
  79. spec_show: false,
  80. num: 1,
  81. }
  82. },
  83. onLoad(options) {
  84. this.id = options.id
  85. this.getdata()
  86. },
  87. methods: {
  88. tocollect() {
  89. var _this = this
  90. $api.req({
  91. url: 'integral/goods/' + _this.id + '/collect',
  92. method: 'POST',
  93. }, function(res) {
  94. if (res.code == 10000) {
  95. uni.$u.toast(res.msg)
  96. _this.detail.is_collect = !_this.detail.is_collect
  97. } else {
  98. uni.$u.toast(res.msg)
  99. }
  100. })
  101. },
  102. toconfirm() {
  103. /* if(this.active == -1) {
  104. $api.info('请先选择规格')
  105. return
  106. } */
  107. uni.navigateTo({
  108. url: '/pageB/order-confirm?good=' + encodeURIComponent(JSON.stringify(this.detail)) +
  109. '&num=' + this.num
  110. })
  111. },
  112. /* 点击确定 */
  113. sure() {
  114. this.spec_show = false
  115. },
  116. /* 选择规格 */
  117. select(index) {
  118. this.active = index
  119. },
  120. /* 关闭规格 */
  121. toclose() {
  122. this.spec_show = false
  123. },
  124. /* 获取详情 */
  125. getdata() {
  126. var _this = this
  127. $api.req({
  128. url: 'integral/goods/' + this.id,
  129. method: 'GET',
  130. }, function(res) {
  131. if (res.code == 10000) {
  132. _this.detail = res.data
  133. for (var i = 0; i < _this.detail.images.length; i++) {
  134. if (_this.detail.images[i].indexOf('http') == -1) {
  135. _this.detail.images[i] = $api.config.baseUrl + _this.detail.images[i]
  136. }
  137. }
  138. console.log(JSON.parse(JSON.stringify(_this.detail)));
  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. .name {
  312. font-size: 32rpx;
  313. font-family: SFPro, SFPro;
  314. font-weight: 500;
  315. color: #222222;
  316. padding: 16rpx 0 0;
  317. }
  318. .label {
  319. font-size: 26rpx;
  320. font-family: PingFangSC, PingFang SC;
  321. font-weight: 400;
  322. color: #666666;
  323. padding-right: 20rpx;
  324. }
  325. .text {
  326. font-size: 28rpx;
  327. font-family: SFPro, SFPro;
  328. font-weight: 400;
  329. color: #222222;
  330. width: 550rpx;
  331. }
  332. }
  333. }
  334. .indicator-num__text {
  335. width: 80rpx;
  336. height: 40rpx;
  337. background: rgba(0, 0, 0, 0.1);
  338. border-radius: 20rpx;
  339. font-size: 22rpx;
  340. font-family: SFPro, SFPro;
  341. font-weight: 400;
  342. color: #FFFFFF;
  343. line-height: 40rpx;
  344. letter-spacing: 1px;
  345. }
  346. }
  347. </style>