|
|
|
<template>
|
|
|
|
<view :class="[{oh: !per}]">
|
|
|
|
<view class="page">
|
|
|
|
<view class="search-wrap">
|
|
|
|
<uni-search-bar class="search" radius="30" placeholder="请输入" v-model="keyword" clearButton="auto" cancelButton="none" @confirm="initList" @clear="clearKeyword" />
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<image class="banner" src="https://occupationlab.com/images/preschoolEdu/supplier-banner.jpg" mode="widthFix"></image>
|
|
|
|
|
|
|
|
<view class="wrap">
|
|
|
|
<sideSelect :menus="menus" @menuClick="menuClick" />
|
|
|
|
<view class="list">
|
|
|
|
<view class="item" v-for="(item, i) in list" :key="i" @click="toDetail(item)">
|
|
|
|
<view class="pro-name">
|
|
|
|
<image class="icon" :src="item.logoUrl ? item.logoUrl : 'https://occupationlab.com/images/preschoolEdu/preSchool-icon.png'"></image>
|
|
|
|
{{ item.companyName }}
|
|
|
|
</view>
|
|
|
|
<view class="info">
|
|
|
|
<view class="meta">{{ item.briefIntroduction }}</view>
|
|
|
|
<view class="meta">{{ item.province }}-{{ item.city }}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view v-if="!per" class="per-mask">功能升级中,敬请期待...</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { selectEnterpriseCertificationList } from '@/apis/modules/supplier.js'
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
per: true, // 是否有权限
|
|
|
|
teamId: uni.getStorageSync('teamId') || '',
|
|
|
|
menus: [
|
|
|
|
{
|
|
|
|
id: '',
|
|
|
|
name: '全部'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: '服装'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
name: '教具'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
name: '课程'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
name: '家具'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
name: '设备'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 6,
|
|
|
|
name: '服务'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 7,
|
|
|
|
name: '其它'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
list: [],
|
|
|
|
reachBottom: 0, // 是否是上拉加载。0->否,1->是,-1->加载完所有数据
|
|
|
|
status: 'more', // 上拉加载状态 more|loading|noMore
|
|
|
|
keyword: '',
|
|
|
|
tags: [],
|
|
|
|
hotProducts: [],
|
|
|
|
offcialProducts: [],
|
|
|
|
page: 1,
|
|
|
|
pageSize: 5,
|
|
|
|
total: 0,
|
|
|
|
curTab: 0,
|
|
|
|
tabs: [
|
|
|
|
{
|
|
|
|
name: '全部',
|
|
|
|
id: 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: '论坛',
|
|
|
|
id: 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 下拉刷新
|
|
|
|
onPullDownRefresh() {
|
|
|
|
this.initList()
|
|
|
|
setTimeout(() => {
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
}, 1500)
|
|
|
|
},
|
|
|
|
// 上拉加载
|
|
|
|
onReachBottom() {
|
|
|
|
if (this.reachBottom >= 0) {
|
|
|
|
this.reachBottom = 1
|
|
|
|
this.status = 'loading'
|
|
|
|
this.getList()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
this.keyword = ''
|
|
|
|
this.per = true
|
|
|
|
this.initList()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initList() {
|
|
|
|
this.page = 1
|
|
|
|
this.reachBottom = 0
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
// 列表
|
|
|
|
getList() {
|
|
|
|
uni.showLoading({
|
|
|
|
title: '加载中'
|
|
|
|
})
|
|
|
|
selectEnterpriseCertificationList({
|
|
|
|
auditStatus: null,
|
|
|
|
authenticationStatus: 2,
|
|
|
|
pageNum: this.page,
|
|
|
|
pageSize: this.pageSize,
|
|
|
|
platformSource: 6,
|
|
|
|
keyWord: this.keyword,
|
|
|
|
}).then(async ({ data }) => {
|
|
|
|
this.list = this.reachBottom > 0 ? [...this.list, ...data.records] : data.records
|
|
|
|
this.page++ // 每次获取了数据后page+1
|
|
|
|
const noMore = this.list.length === data.total // 是否加载完所有数据
|
|
|
|
this.status = noMore ? 'noMore' : 'more' // 加载完了则设置为noMore
|
|
|
|
this.reachBottom = noMore ? -1 : 0 // 加载完了则设置为-1
|
|
|
|
uni.hideLoading()
|
|
|
|
}).catch(e => {
|
|
|
|
uni.hideLoading()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// keyword清除回调
|
|
|
|
clearKeyword() {
|
|
|
|
this.keyword = ''
|
|
|
|
this.initList()
|
|
|
|
},
|
|
|
|
// 跳转学习详情
|
|
|
|
toDetail(item) {
|
|
|
|
this.$util.to('/other/supplierDetail/supplierDetail?teamId=' + item.teamId)
|
|
|
|
},
|
|
|
|
// tab切换
|
|
|
|
tabChange(tab) {
|
|
|
|
this.curTab = tab.id
|
|
|
|
// this.initList()
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.banner {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.wrap {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
.list {
|
|
|
|
flex: 1;
|
|
|
|
.item {
|
|
|
|
padding: 24rpx;
|
|
|
|
margin: 16rpx 24rpx;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 16rpx;
|
|
|
|
}
|
|
|
|
.pro-name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 18rpx 0;
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: 600;
|
|
|
|
color: #333;
|
|
|
|
border-bottom: 1px solid #E6E8ED;
|
|
|
|
.icon {
|
|
|
|
width: 58rpx;
|
|
|
|
min-width: 58rpx;
|
|
|
|
height: 58rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
padding: 12rpx 0;
|
|
|
|
}
|
|
|
|
.line {
|
|
|
|
display: flex;
|
|
|
|
padding: 12rpx 0;
|
|
|
|
}
|
|
|
|
.name {
|
|
|
|
margin-right: 10rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.meta {
|
|
|
|
margin: 10rpx 0;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.ell-wrap {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.ell {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.toggle {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #0e92ef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|