index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <template>
  2. <view class="shop-index">
  3. <u-navbar title=" " bgColor="#00B0B0" :autoBack="false" :placeholder="true" :fixed="true" height="44">
  4. <view class="search" slot="left">
  5. <u-search placeholder="" v-model="search" :showAction="false" @search="tosearch"></u-search>
  6. </view>
  7. <view class="search-right hflex acenter" slot="right">
  8. <!-- <image src="@/static/images/menu.png" mode="aspectFill"></image> -->
  9. <image src="@/static/images/order.png" mode="aspectFill" @click="tolist"></image>
  10. </view>
  11. </u-navbar>
  12. <swiper-list type="integral_shop"></swiper-list>
  13. <view class="hflex acenter jbetween tabs">
  14. <view class="hflex acenter jcenter tabs-item" @click="totaobao">
  15. <image src="../../static/images/shop_icon1.png" mode="aspectFill"></image>
  16. <text>商城</text>
  17. </view>
  18. <view class="hflex acenter jcenter tabs-item" @click="toyuyue">
  19. <image src="../../static/images/shop_icon2.png" mode="aspectFill"></image>
  20. <text>预约拍摄</text>
  21. </view>
  22. <view class="hflex acenter jcenter tabs-item" @click="tozulin">
  23. <image src="../../static/images/shop_icon3.png" mode="aspectFill"></image>
  24. <text>设备租赁</text>
  25. </view>
  26. </view>
  27. <view class="list hflex acenter fwrap">
  28. <view class="list-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  29. <image :src="item.image" mode="aspectFill"></image>
  30. <view class="name text_hide2">{{item.name}}</view>
  31. <view class="bottom hflex acenter jbetween">
  32. <view class="price">{{item.price}}<text>积分</text></view>
  33. <view class="btn hflex acenter jcenter">兑换</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import swiperList from '@/components/swiper-list/index.vue'
  41. import $api from '@/static/js/api.js'
  42. export default {
  43. components: {
  44. swiperList
  45. },
  46. data() {
  47. return {
  48. search: '',
  49. swiper_list: [],
  50. swiper_current: 0,
  51. list: [],
  52. page: 1,
  53. last_page: 1,
  54. }
  55. },
  56. onLoad() {
  57. this.getswiper()
  58. this.getlist()
  59. },
  60. methods: {
  61. getswiper() {
  62. var _this = this
  63. $api.req({
  64. url: 'banner',
  65. data: {
  66. type: 'integral_shop',
  67. limit: 5
  68. }
  69. }, function(res) {
  70. if(res.code == 10000) {
  71. _this.swiper_list = res.data
  72. }
  73. })
  74. },
  75. /* 设备租赁 */
  76. tozulin() {
  77. uni.navigateTo({
  78. url: '/pageB/zulin'
  79. })
  80. },
  81. /* 兑换记录 */
  82. tolist() {
  83. uni.navigateTo({
  84. url: '/pageB/order-list'
  85. })
  86. },
  87. /* 预约拍摄 */
  88. toyuyue() {
  89. uni.navigateTo({
  90. url: '/pageB/yuyue-capture'
  91. })
  92. },
  93. /* 跳转商城 */
  94. totaobao() {
  95. uni.navigateTo({
  96. url: '/pageB/totaobao'
  97. })
  98. },
  99. /* 进入商品详情 */
  100. toinfo(item) {
  101. uni.navigateTo({
  102. url: '/pageB/good-detail?id=' + item.id
  103. })
  104. },
  105. /* 获取商品列表 */
  106. getlist() {
  107. var _this = this
  108. $api.req({
  109. url: 'integral/goods',
  110. method: 'GET',
  111. data: {
  112. is_page: 1,
  113. page: _this.page,
  114. limit: 10
  115. }
  116. }, function(res) {
  117. if(res.code == 10000) {
  118. _this.list = _this.list.concat(res.data.list)
  119. _this.last_page = res.data.last_page
  120. }
  121. })
  122. },
  123. /* 轮播图点击事件 */
  124. swiperclick() {},
  125. /* 搜索 */
  126. tosearch() {},
  127. },
  128. onReachBottom() {
  129. if(this.last_page > this.page) {
  130. this.page++;
  131. this.getlist()
  132. } else {
  133. uni.$u.toast('已经到底了')
  134. }
  135. }
  136. }
  137. </script>
  138. <style lang="scss">
  139. .shop-index::v-deep {
  140. min-height: 100vh;
  141. padding: 20rpx 28rpx;
  142. box-sizing: border-box;
  143. background: #F5F5F5;
  144. .list {
  145. .list-item {
  146. background: #FFFFFF;
  147. border-radius: 8rpx;
  148. width: 340rpx;
  149. margin: 0 14rpx 16rpx 0;
  150. image {
  151. width: 100%;
  152. height: 340rpx;
  153. }
  154. .name {
  155. font-size: 26rpx;
  156. font-family: SFPro, SFPro;
  157. font-weight: 400;
  158. color: #222222;
  159. padding: 20rpx;
  160. box-sizing: border-box;
  161. }
  162. .bottom {
  163. box-sizing: border-box;
  164. padding: 0 20rpx 22rpx;
  165. .price {
  166. font-size: 36rpx;
  167. font-family: SFPro, SFPro;
  168. font-weight: 600;
  169. color: #FF4954;
  170. text {
  171. font-weight: 500;
  172. font-size: 24rpx;
  173. }
  174. }
  175. .btn {
  176. width: 108rpx;
  177. height: 52rpx;
  178. background: #00B0B0;
  179. border-radius: 26rpx;
  180. font-size: 26rpx;
  181. font-family: PingFangSC, PingFang SC;
  182. font-weight: 400;
  183. color: #FFFFFF;
  184. }
  185. }
  186. }
  187. .list-item:nth-child(2n+2) {
  188. margin: 0 0 16rpx;
  189. }
  190. }
  191. .tabs {
  192. padding: 20rpx 0 28rpx;
  193. .tabs-item {
  194. width: 218rpx;
  195. height: 72rpx;
  196. background: #00B0B0;
  197. border-radius: 8rpx;
  198. image {
  199. width: 32rpx;
  200. height: 32rpx;
  201. margin: 0 10rpx 0 0;
  202. }
  203. text {
  204. font-size: 28rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 400;
  207. color: #FFFFFF;
  208. }
  209. }
  210. }
  211. .search {
  212. width: 572rpx;
  213. background: rgba(255,255,255,.3);
  214. border-radius: 32rpx;
  215. .u-search__content {
  216. background: rgba(255,255,255,.3)!important;
  217. }
  218. .u-search__content__input {
  219. background-color: unset !important;
  220. }
  221. .u-search__content__icon {
  222. background-color: unset !important;
  223. .u-icon__icon {
  224. color: #fff !important;
  225. }
  226. }
  227. input {
  228. background: rgba(255,255,255,.3)
  229. }
  230. }
  231. .search-right {
  232. // padding: 0 32rpx 0 0;
  233. .img {
  234. position: relative;
  235. }
  236. image {
  237. width: 40rpx;
  238. height: 40rpx;
  239. margin-left: 20rpx;
  240. }
  241. .add-show {
  242. position: absolute;
  243. right: 30rpx;
  244. top: 88rpx;
  245. background: #FFFFFF;
  246. box-shadow: 0rpx 4rpx 20rpx 0rpx rgba(0,0,0,0.1);
  247. padding: 42rpx 32rpx 0;
  248. .show-item {
  249. margin-bottom: 40rpx;
  250. image {
  251. width: 36rpx;
  252. height: 36rpx;
  253. margin: 0;
  254. }
  255. text {
  256. white-space: nowrap;
  257. font-size: 26rpx;
  258. font-family: PingFangSC, PingFang SC;
  259. font-weight: 400;
  260. color: #333333;
  261. padding: 0 0 0 24rpx;
  262. }
  263. }
  264. }
  265. }
  266. }
  267. </style>