index.vue 6.0 KB

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