|
@@ -99,8 +99,7 @@
|
|
|
<u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
|
|
|
</view>
|
|
|
<!-- 商品列表 -->
|
|
|
- <goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail"
|
|
|
- :currentId="currentId"
|
|
|
+ <goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
|
|
|
:isSortType="isSortType"></goodListMall>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -109,7 +108,7 @@
|
|
|
<script>
|
|
|
import headerSerch from './components/headerSerch';
|
|
|
import goodListMall from './components/goodListMall';
|
|
|
-import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage } from '../../../api/home.js'
|
|
|
+import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
|
|
|
import {
|
|
|
goShopDetail
|
|
|
} from '@/libs/order.js';
|
|
@@ -123,7 +122,7 @@ export default {
|
|
|
currentId: '',
|
|
|
noticeShow: false,
|
|
|
noticeContent: '',
|
|
|
- tempArr:[],
|
|
|
+ tempArr: [],
|
|
|
tempArrBao: [
|
|
|
{
|
|
|
"id": 72,
|
|
@@ -654,15 +653,18 @@ export default {
|
|
|
this.getCategoryOne()
|
|
|
this.getAdsList()
|
|
|
this.getNoticeList()
|
|
|
- this.getGoodsPage()
|
|
|
+ this.getIndexData()
|
|
|
+ this.getGoodsInfo()
|
|
|
},
|
|
|
onLoad() {
|
|
|
},
|
|
|
methods: {
|
|
|
- getGoodsPage(){
|
|
|
- getGoodsPage({
|
|
|
- type: 2
|
|
|
- }).then(res =>{
|
|
|
+ getGoodsInfo() {
|
|
|
+ getGoodsInfo({
|
|
|
+ current: 1,
|
|
|
+ size: 50,
|
|
|
+ isRecom: 1
|
|
|
+ }).then(res => {
|
|
|
this.tempArr = res.data
|
|
|
})
|
|
|
},
|
|
@@ -788,7 +790,7 @@ export default {
|
|
|
},
|
|
|
clickNav(e) {
|
|
|
this.current = e.index
|
|
|
- if(e.index > 0){
|
|
|
+ if (e.index > 0) {
|
|
|
this.currentId = e.id
|
|
|
}
|
|
|
}
|