|
|
|
<template>
|
|
|
|
<view :class="['page', {oh: !per}]">
|
|
|
|
<uni-search-bar class="search" radius="30" placeholder="请输入" v-model="keyword" clearButton="auto" cancelButton="none" />
|
|
|
|
|
|
|
|
<view class="banner">
|
|
|
|
<image class="img" src="@/static/image/workbench/index1.png" mode="widthFix"></image>
|
|
|
|
<view class="info">
|
|
|
|
<view class="title">城市合伙人招募中</view>
|
|
|
|
<view class="text">携手共创教育信息化新未来,合伙共享产业互联领域新红利</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="block">
|
|
|
|
<view class="title-wrap">
|
|
|
|
<view class="title">热门标签</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<ul class="tags">
|
|
|
|
<li v-for="(tag, i) in tags" :key="i" @click="$util.to('/order/productDetail/productDetail?id=' + item.mallId)">
|
|
|
|
<image class="icon" :src="require('@/static/image/index/' + (i + 1) + '.png')"></image>
|
|
|
|
<view class="text ell">{{ tag.tagsName }}</view>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="block">
|
|
|
|
<view class="title-wrap">
|
|
|
|
<view class="title">热销产品</view>
|
|
|
|
<view class="all">全部产品</view>
|
|
|
|
</view>
|
|
|
|
<view class="list">
|
|
|
|
<view v-for="(item, i) in hotProducts" :key="i" class="item" @click="toDetail(item)">
|
|
|
|
<image class="pic" :src="item.appletIcon"></image>
|
|
|
|
<view class="texts">
|
|
|
|
<view class="name ell">{{ item.productName }}</view>
|
|
|
|
<view class="des ell" v-html="item.productIntroduction"></view>
|
|
|
|
<view class="meta">
|
|
|
|
<image class="icon" src="@/static/image/index/9.png"></image>
|
|
|
|
适用专业:
|
|
|
|
<text class="ell">{{ item.professionalName }}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="block">
|
|
|
|
<view class="title-wrap">
|
|
|
|
<view class="title">官方推荐</view>
|
|
|
|
<view class="all">全部产品</view>
|
|
|
|
</view>
|
|
|
|
<view class="list">
|
|
|
|
<view v-for="(item, i) in offcialProducts" :key="i" class="item" @click="toDetail(item)">
|
|
|
|
<image class="pic" :src="item.appletIcon || require('@/static/image/product.png')"></image>
|
|
|
|
<view class="texts">
|
|
|
|
<view class="name ell">{{ item.productName }}</view>
|
|
|
|
<view class="des ell" v-html="item.productIntroduction"></view>
|
|
|
|
<view class="meta">
|
|
|
|
<image class="icon" src="@/static/image/index/9.png"></image>
|
|
|
|
适用专业:
|
|
|
|
<text class="ell">{{ item.professionalName }}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view v-if="!per" class="per-mask">功能升级中,敬请期待...</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { tagsList, listOfGoods } from '@/apis/modules/product.js'
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
per: true, // 是否有权限
|
|
|
|
teamId: uni.getStorageSync('teamId') || '',
|
|
|
|
keyword: '',
|
|
|
|
tags: [],
|
|
|
|
hotProducts: [],
|
|
|
|
offcialProducts: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
keyword () {
|
|
|
|
clearTimeout(this.searchTimer)
|
|
|
|
this.searchTimer = setTimeout(() => {
|
|
|
|
this.initList()
|
|
|
|
}, 500)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
this.per = true
|
|
|
|
this.getTags()
|
|
|
|
this.getProducts()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 初始化权限
|
|
|
|
initRole() {
|
|
|
|
if (!uni.getStorageSync('auth').includes('首页')) {
|
|
|
|
this.per = false
|
|
|
|
}
|
|
|
|
this.getStudy()
|
|
|
|
this.getSell()
|
|
|
|
this.getAnalysis()
|
|
|
|
},
|
|
|
|
// 热门标签
|
|
|
|
getTags() {
|
|
|
|
tagsList().then(res => {
|
|
|
|
this.tags = res.tagsList.slice(0, 8)
|
|
|
|
}).catch(e => {})
|
|
|
|
},
|
|
|
|
// 产品
|
|
|
|
getProducts() {
|
|
|
|
// 热销产品
|
|
|
|
listOfGoods({
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 5,
|
|
|
|
sort: 1,
|
|
|
|
isShelves: 0,
|
|
|
|
hotTag: 1
|
|
|
|
}).then(({ page }) => {
|
|
|
|
this.hotProducts = page.records
|
|
|
|
}).catch(e => {})
|
|
|
|
|
|
|
|
// 官方推荐
|
|
|
|
listOfGoods({
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 5,
|
|
|
|
sort: 0,
|
|
|
|
isShelves: 0,
|
|
|
|
hotTag: 1,
|
|
|
|
selection: 1
|
|
|
|
}).then(({ page }) => {
|
|
|
|
this.offcialProducts = page.records
|
|
|
|
}).catch(e => {})
|
|
|
|
},
|
|
|
|
// 跳转学习
|
|
|
|
toStudy() {
|
|
|
|
uni.switchTab({
|
|
|
|
url: '/pages/study/study'
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 跳转学习详情
|
|
|
|
toDetail(item) {
|
|
|
|
this.$util.to('/order/productDetail/productDetail?id=' + item.mallId)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.page {
|
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
|
|
|
padding: 30rpx 22rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.banner {
|
|
|
|
position: relative;
|
|
|
|
.img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
position: absolute;
|
|
|
|
top: 80rpx;
|
|
|
|
left: 46rpx;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
margin-bottom: 15rpx;
|
|
|
|
font-size: 36rpx;
|
|
|
|
font-weight: 600;
|
|
|
|
color: #001D67;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
font-size: 20rpx;
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
color: #001D67;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.block {
|
|
|
|
margin: 40rpx 0;
|
|
|
|
.title-wrap {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 34rpx;
|
|
|
|
.all {
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #333;
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
width: 10rpx;
|
|
|
|
height: 26rpx;
|
|
|
|
margin-right: 14rpx;
|
|
|
|
background: #007FFF;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.tags {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
li {
|
|
|
|
width: 25%;
|
|
|
|
margin-bottom: 24rpx;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
width: 64rpx;
|
|
|
|
height: 64rpx;
|
|
|
|
margin-bottom: 18rpx;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
width: 110rpx;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.list {
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 28rpx;
|
|
|
|
}
|
|
|
|
.pic {
|
|
|
|
width: 136rpx;
|
|
|
|
height: 136rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.texts {
|
|
|
|
width: calc(100% - 156rpx);
|
|
|
|
}
|
|
|
|
.name {
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.des {
|
|
|
|
margin: 17rpx 0;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
.meta {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #2E2D31;
|
|
|
|
.icon {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
margin-right: 12rpx;
|
|
|
|
}
|
|
|
|
text {
|
|
|
|
width: 330rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|