|
@@ -4,7 +4,7 @@
|
|
|
<view class="header-group">
|
|
|
<view class="tabs">
|
|
|
<u-tabs :list="navigationList" @click="clickNav" lineColor="#FFD373" :inactiveStyle="{ color: '#FFF' }"
|
|
|
- :activeStyle="{ color: '#FFD373', fontWeight: 'bold' }"></u-tabs>
|
|
|
+ :activeStyle="{ color: '#FFD373', fontWeight: 'bold' }" keyName="title"></u-tabs>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 内容切换 -->
|
|
@@ -33,11 +33,13 @@
|
|
|
<text>创客专区</text>
|
|
|
</view>
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/城市合伙人.png" mode="aspectFit" @click="menusTap('城市合伙人')"></image>
|
|
|
+ <image src="../../../static/menus/城市合伙人.png" mode="aspectFit" @click="menusTap('城市合伙人')">
|
|
|
+ </image>
|
|
|
<text>城市合伙人</text>
|
|
|
</view>
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/积分抵扣专区.png" mode="aspectFit" @click="menusTap('积分抵扣专区')"></image>
|
|
|
+ <image src="../../../static/menus/积分抵扣专区.png" mode="aspectFit" @click="menusTap('积分抵扣专区')">
|
|
|
+ </image>
|
|
|
<text>抵扣专区</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -104,6 +106,7 @@
|
|
|
</view>
|
|
|
<!-- 商品列表 -->
|
|
|
<goodListMall @changeTab="changeTab" :tempArr="tempArr" :iSshowH="true" @detail="goDetail"
|
|
|
+ :currentId="currentId"
|
|
|
:isSortType="isSortType"></goodListMall>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -112,7 +115,7 @@
|
|
|
<script>
|
|
|
import headerSerch from './components/headerSerch';
|
|
|
import goodListMall from './components/goodListMall';
|
|
|
-import { getAdsList, getNoticeList } from '../../../api/home.js'
|
|
|
+import { getAdsList, getNoticeList, getCategoryOne } from '../../../api/home.js'
|
|
|
import {
|
|
|
goShopDetail
|
|
|
} from '@/libs/order.js';
|
|
@@ -123,6 +126,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ currentId: '',
|
|
|
noticeShow: false,
|
|
|
noticeContent: '',
|
|
|
tempArr: [
|
|
@@ -646,39 +650,38 @@ export default {
|
|
|
'https://cdn.uviewui.com/uview/swiper/swiper1.png',
|
|
|
],
|
|
|
navigationList: [{
|
|
|
- name: '推荐',
|
|
|
- }, {
|
|
|
- name: '箱包皮具'
|
|
|
- }, {
|
|
|
- name: '家具家私'
|
|
|
- }, {
|
|
|
- name: '美妆护肤'
|
|
|
- }, {
|
|
|
- name: '日用百货'
|
|
|
- }, {
|
|
|
- name: '运动户外'
|
|
|
- }, {
|
|
|
- name: '珠宝首饰'
|
|
|
- }, {
|
|
|
- name: '家纺家饰'
|
|
|
+ title: '推荐',
|
|
|
+ id: '0'
|
|
|
}]
|
|
|
}
|
|
|
},
|
|
|
- mounted() {
|
|
|
- uni.showTabBar()
|
|
|
- this.getAdsList(),
|
|
|
- this.getNoticeList()
|
|
|
+ created() {
|
|
|
+ this.getCategoryOne()
|
|
|
+ this.getAdsList()
|
|
|
+ this.getNoticeList()
|
|
|
},
|
|
|
onLoad() {
|
|
|
},
|
|
|
methods: {
|
|
|
+ getCategoryOne() {
|
|
|
+ getCategoryOne().then(res => {
|
|
|
+ console.log(res.data);
|
|
|
+ this.navigationList = []
|
|
|
+ let tuiJian = {
|
|
|
+ title: '推荐',
|
|
|
+ id: '0'
|
|
|
+ }
|
|
|
+ this.navigationList = res.data
|
|
|
+ this.navigationList.unshift(tuiJian)
|
|
|
+ })
|
|
|
+ },
|
|
|
menusTap(url) {
|
|
|
// #ifdef H5
|
|
|
location.href = url
|
|
|
// #endif
|
|
|
// #ifdef MP || APP-PLUS
|
|
|
uni.navigateTo({
|
|
|
- url: "/pages/goods/goods_list_mall/index?sid="+1+"&title="+url
|
|
|
+ url: "/pages/goods/goods_list_mall/index?sid=" + 1 + "&title=" + url
|
|
|
});
|
|
|
// #endif
|
|
|
},
|
|
@@ -782,8 +785,8 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
clickNav(e) {
|
|
|
- console.log(e)
|
|
|
this.current = e.index
|
|
|
+ this.currentId = e.id
|
|
|
}
|
|
|
}
|
|
|
}
|