index.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <template>
  2. <view class="content">
  3. <nav-bar :navIndex="1"></nav-bar>
  4. <view @click="navTaps">
  5. <wyb-noticeBar :text=array bgColor="#fff" color="#666" icons="1"/>
  6. </view>
  7. <view class="shop-top">
  8. <view class="content-s">
  9. <scroll-view class="uni-swiper-tab" scroll-x>
  10. <view class="shop-lists" v-for="(item,index) in navList" :key="index" @click="notMoreTap(index,item.id)">
  11. <view class="name" :class="index==indexs?'nameStyle':''">{{item.title}}</view>
  12. <view class="icons" v-if="index==indexs">
  13. <img src="/static/index/shopIcons.png" alt="">
  14. </view>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. </view>
  19. <view class="goods-content">
  20. <view class="goods-lists" @click="goodsTap(item.id)" v-for="(item,index) in goodsList" :key="index">
  21. <view class="goods-img">
  22. <image :src="item.cover"></image>
  23. </view>
  24. <view class="goods-name overflow2">
  25. {{item.name}}
  26. </view>
  27. <view class="money">
  28. ¥<span>{{item.low_price}}</span>
  29. </view>
  30. </view>
  31. <view v-if="goodsList.length>=4" style="height: 200rpx;width: 100%;"></view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import api from 'utils/api'
  37. import wybNoticeBar from '@/components/wyb-noticeBar/wyb-noticeBar.vue'
  38. import navBar from '@/components/nav-bar/nav-bar.vue'
  39. export default {
  40. components:{wybNoticeBar,navBar},
  41. data() {
  42. return {
  43. clickName:false,
  44. loadmore:true,
  45. sortId:'',
  46. pages:{
  47. page:1,
  48. pageNum:10
  49. },
  50. array:['测试11'],
  51. navList:["回力","PRADA","耐克","耐克1","耐克2","耐克3","耐克4","耐克5"],
  52. indexs:0,
  53. goodsList:[
  54. ],
  55. }
  56. },
  57. onLoad() {
  58. this.getShopSort()
  59. this.sysConfig()
  60. },
  61. onShow() {
  62. // this.goodsList=[]
  63. },
  64. onReachBottom() {
  65. if (this.loadmore) {
  66. this.pages.page = this.pages.page + 1;
  67. this.getGoodsList(this.sortId);
  68. }
  69. },
  70. notMoreTap(id) {
  71. this.loadmore=true;
  72. // means是点击后需要执行的方法
  73. // clickName是一个变量的名字控制是否是第一次点击
  74. if (!this.clickName) {
  75. // 第一次点击
  76. // means()
  77. this.getGoodsList()
  78. this.clickName = true;
  79. setTimeout(()=>{
  80. this.clickName = false;
  81. },1000)
  82. } else {
  83. }
  84. },
  85. methods: {
  86. notMoreTap(index,id) {
  87. // means是点击后需要执行的方法
  88. // clickName是一个变量的名字控制是否是第一次点击
  89. if (!this.clickName) {
  90. // 第一次点击
  91. // means()
  92. this.pages.page=1;
  93. this.goodsList=[]
  94. this.indexs=index;
  95. this.getShopSort(id)
  96. uni.showLoading({
  97. title:"正在加载"
  98. })
  99. this.clickName = true;
  100. setTimeout(()=>{
  101. this.clickName = false;
  102. },1000)
  103. }
  104. },
  105. navTaps(){
  106. uni.navigateTo({
  107. url:"/pages/shopNotice/index"
  108. })
  109. },
  110. sysConfig(){
  111. api.getSysConfig({"search_name":"notice_title"}).then((res)=>{
  112. if(res.code==1){
  113. this.array[0]=res.data.notice_title
  114. }
  115. })
  116. },
  117. goodsTap(id){
  118. uni.navigateTo({
  119. url:"/pages/goodsDetail/index?id="+id
  120. })
  121. },
  122. //获取商品分类
  123. getShopSort(id){
  124. api.getGoodsCate().then((res)=>{
  125. if(res.code==1){
  126. this.navList=res.data.list
  127. this.getGoodsList(id?id:res.data.list[0].id)
  128. this.sortId=res.data.list[0].id
  129. }
  130. })
  131. },
  132. //根据分类ID获取商品列表
  133. getGoodsList(id){
  134. let data={
  135. page:this.pages.page,
  136. page_num:this.pages.pageNum,
  137. first_classify:id,
  138. sort_type: "1",
  139. }
  140. api.getGoodsList(data).then((res)=>{
  141. if(res.code==1){
  142. uni.hideLoading()
  143. let goodsList=res.data.list
  144. this.goodsList = [...this.goodsList, ...goodsList];
  145. console.error(res.data.list)
  146. if (res.data.list=='') {
  147. this.loadmore = false;
  148. }
  149. }
  150. })
  151. }
  152. }
  153. }
  154. </script>
  155. <style lang="scss">
  156. .class-s{
  157. padding-bottom: 200rpx;
  158. }
  159. .uni-swiper-tab{
  160. white-space: nowrap;
  161. }
  162. .content{
  163. .goods-content{
  164. background-color: #FFFFFF;
  165. display: flex;
  166. flex-wrap: wrap;
  167. padding: 30rpx;
  168. margin-bottom: 200rpx;
  169. .goods-lists:nth-child(even){
  170. margin-left: 25rpx;
  171. }
  172. .goods-lists{
  173. width: 332rpx;
  174. padding-bottom: 20rpx;
  175. background: #FFFFFF;
  176. box-shadow: 0px 4rpx 20rpx 0px rgba(142,142,142,0.13);
  177. border-radius: 16rpx;
  178. margin-bottom: 20rpx;
  179. .goods-name{
  180. width: 300rpx;
  181. color: #222;
  182. font-size: 24rpx;
  183. margin-left: 12rpx;
  184. }
  185. .money{
  186. color: #222;
  187. font-size: 20rpx;
  188. margin: 10rpx 0 0 10rpx;
  189. span{
  190. font-weight: 600;
  191. font-size: 32rpx;
  192. }
  193. }
  194. .goods-img{
  195. image{
  196. width: 330rpx;
  197. height: 330rpx;
  198. border-radius: 16rpx 16rpx 0 0;
  199. }
  200. }
  201. }
  202. }
  203. .shop-top{
  204. width: 100%;
  205. height: 80rpx;
  206. background: #FFFFFF;
  207. box-shadow: 0px 4rpx 12rpx 0px rgba(231,231,231,0.41);
  208. margin: 25rpx 0;
  209. line-height: 80rpx;
  210. display: flex;
  211. .content-s{
  212. display: flex;
  213. width: 750rpx;
  214. overflow-x: auto;
  215. margin-left: 30rpx;
  216. margin-right: 30rpx;
  217. .shop-lists{
  218. position: relative;
  219. margin-left: 25rpx;
  220. // width: 150rpx;
  221. display: inline-block;
  222. padding: 0;
  223. .name{
  224. color: #999;
  225. font-size: 28rpx;
  226. }
  227. .nameStyle{
  228. color: #222;
  229. font-size: 28rpx;
  230. font-weight: 600;
  231. }
  232. .icons{
  233. margin-top: 20rpx;
  234. text-align: center;
  235. position: absolute;
  236. top: 0rpx;
  237. left: 50%;
  238. margin-left:-15rpx;
  239. img{
  240. width: 20rpx;
  241. height: 8rpx;
  242. }
  243. }
  244. }
  245. }
  246. }
  247. }
  248. </style>