You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
530 lines
13 KiB
530 lines
13 KiB
<template> |
|
<view :class="['page', {oh: !per}]"> |
|
<view class="status-bar"></view> |
|
<image class="bg" src="@/static/image/workbench/index2.png" mode="widthFix"></image> |
|
<view class="team-wrap" :style="{paddingTop: headerTop}"> |
|
<view class="team"> |
|
<uni-data-picker class="picker-input" placeholder="切换团队" popup-title="切换团队" preload :clear-icon="false" :localdata="list" :map="{text: 'partnerClassificationName', value: 'teamId'}" v-model="teamId" @change="teamChange"></uni-data-picker> |
|
</view> |
|
</view> |
|
|
|
<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> |
|
|
|
<ul class="entry"> |
|
<li @click="toModule('client')"> |
|
<image class="icon" src="@/static/image/workbench/index3.png" mode="widthFix"></image> |
|
<view class="text">客户</view> |
|
</li> |
|
<li @click="toModule('plan')"> |
|
<image class="icon" src="@/static/image/workbench/index4.png" mode="widthFix"></image> |
|
<view class="text">方案</view> |
|
</li> |
|
<li @click="toModule('study')"> |
|
<image class="icon" src="@/static/image/workbench/index5.png" mode="widthFix"></image> |
|
<view class="text">学习</view> |
|
</li> |
|
<li @click="toModule('info')"> |
|
<image class="icon" src="@/static/image/workbench/index6.png" mode="widthFix"></image> |
|
<view class="text">资讯</view> |
|
</li> |
|
</ul> |
|
|
|
<view class="panel study-panel"> |
|
<view class="title" @click="toStudy"> |
|
<view class="left"> |
|
<image class="icon" src="@/static/image/workbench/index8.png" mode="widthFix"></image> |
|
学习速递 |
|
</view> |
|
<view class="right"> |
|
<text>全部</text> |
|
<image class="arrow" src="@/static/image/workbench/index10.png" mode="widthFix"></image> |
|
</view> |
|
</view> |
|
<view class="study"> |
|
<scroll-view class="scroll" scroll-x="true"> |
|
<view v-for="(item, i) in studies" :key="i" class="item" @click="toDetail(item)"> |
|
<image class="pic" :src="item.bannerImg"></image> |
|
<view class="text">{{ item.title }}</view> |
|
</view> |
|
</scroll-view> |
|
</view> |
|
</view> |
|
|
|
<view class="panel"> |
|
<view class="title" @click="toPanel(1)"> |
|
<view class="left"> |
|
<image class="icon" src="@/static/image/workbench/index8.png" mode="widthFix"></image> |
|
销售进展 |
|
</view> |
|
<view class="right"> |
|
<image class="date" src="@/static/image/workbench/index7.png" mode="widthFix"></image> |
|
<text>本月</text> |
|
<image class="arrow" src="@/static/image/workbench/index10.png" mode="widthFix"></image> |
|
</view> |
|
</view> |
|
<view class="data first"> |
|
<view class="line"> |
|
<view class="item"> |
|
<view class="name">本月新增试用客户</view> |
|
<view class="val">{{ sell.trialUser || 0 }}</view> |
|
</view> |
|
<view class="item"> |
|
<view class="name">本月成单客户</view> |
|
<view class="val">{{ sell.regularUser || 0 }}</view> |
|
</view> |
|
</view> |
|
<view class="line"> |
|
<view class="item"> |
|
<view class="name">本月新增产品试用</view> |
|
<view class="val">{{ sell.trialProduct || 0 }}</view> |
|
</view> |
|
<view class="item"> |
|
<view class="name">本月成交订单产品</view> |
|
<view class="val">{{ sell.officialProduct || 0 }}</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
|
|
<view class="panel"> |
|
<view class="title y-title" @click="toPanel(1)"> |
|
<view class="left"> |
|
<image class="icon" src="@/static/image/workbench/index9.png" mode="widthFix"></image> |
|
年度经营分析 |
|
</view> |
|
<image class="arrow" src="@/static/image/workbench/index10.png" mode="widthFix"></image> |
|
</view> |
|
<view class="data second"> |
|
<view class="line"> |
|
<view class="item item1"> |
|
<view class="val">{{ handleNum(analysis.finalPrice) }}</view> |
|
<view class="name">总成交金额</view> |
|
</view> |
|
<view class="item item2"> |
|
<view class="val">{{ handleNum(analysis.settlementPrice) }}</view> |
|
<view class="name">总结算金额</view> |
|
</view> |
|
<view class="item equal"> |
|
<view class="val">{{ handleNum(analysis.marketingServiceCharge) }}</view> |
|
<view class="name">市场服务费</view> |
|
</view> |
|
<view class="item"> |
|
<view class="val">{{ handleNum(analysis.projectBenefit) }}</view> |
|
<view class="name">项目收益</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view v-if="!per" class="per-mask">功能升级中,敬请期待...</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { getUserRolesPermissionMenu } from '@/apis/modules/user.js' |
|
import { getTeamsByAccountId, getTheBusinessManagerIdsUnderTheTeam } from '@/apis/modules/client.js' |
|
import { treeList, salesProgress, annualOperatingAnalysis } from '@/apis/modules/parner.js' |
|
import { partnerOperatingList } from '@/apis/modules/article.js' |
|
export default { |
|
data() { |
|
return { |
|
per: true, // 是否有权限 |
|
teamId: uni.getStorageSync('teamId') || '', |
|
list: [], |
|
id: '', |
|
teamList: [], |
|
studies: [], |
|
sell: {}, |
|
analysis: { |
|
finalPrice: 0, |
|
settlementPrice: 0, |
|
marketingServiceCharge: 0, |
|
projectBenefit: 0, |
|
}, |
|
headerTop: '8px', |
|
} |
|
}, |
|
onShow() { |
|
// #ifdef MP-WEIXIN |
|
this.headerTop = uni.getMenuButtonBoundingClientRect().top + 8 + 'px' |
|
// #endif |
|
this.per = true |
|
|
|
if (uni.getStorageSync('token')) { |
|
this.getInfo() |
|
} else { |
|
uni.redirectTo({ |
|
url: '/pages/login/login' |
|
}) |
|
} |
|
}, |
|
methods: { |
|
// 初始化权限 |
|
initRole() { |
|
if (!uni.getStorageSync('auth').includes('工作台')) { |
|
this.per = false |
|
} |
|
this.getStudy() |
|
this.getSell() |
|
this.getAnalysis() |
|
uni.hideLoading() |
|
}, |
|
// 查询当前角色权限 |
|
getAuth() { |
|
getUserRolesPermissionMenu({ |
|
teamId: this.list.find(e => e.teamId == this.teamId).partnerClassificationId, |
|
platformId: 4 |
|
}).then(({ permissionMenu }) => { |
|
uni.hideLoading() |
|
const auth = [] |
|
// 生成权限数组 |
|
const generateAuth = (list, parent) => { |
|
list.map(e => { |
|
const name = `${parent ? parent + ':' : ''}${e.name}` |
|
auth.push(name) |
|
generateAuth(e.children, name) |
|
}) |
|
} |
|
generateAuth(permissionMenu[0].children, '') |
|
uni.setStorageSync('auth', auth) |
|
this.$forceUpdate() |
|
this.initRole() |
|
}).catch(e => { |
|
uni.hideLoading() |
|
uni.setStorageSync('auth', []) |
|
this.initRole() |
|
}) |
|
}, |
|
// 获取团队 |
|
getInfo() { |
|
uni.showLoading({ |
|
title: '加载中' |
|
}) |
|
getTeamsByAccountId().then(({ data }) => { |
|
data.map(e => { |
|
const n = e.partnerClassificationList |
|
e.id = n.id |
|
// parnerId是商务经理id,teamId则是下面这个,其他地方要用的话直接uni.getStorageSync('team').partnerId去使用 |
|
e.teamId = e.isTeam == 1 ? +e.partnerClassificationId : n.id |
|
e.partnerClassificationName = n.partnerClassificationName |
|
delete e.partnerClassificationList |
|
}) |
|
if (data.length) { |
|
/** |
|
* @description 如果是第一次进,则默认选中第一个团队,并把该团队的信息存入缓存 |
|
* 或者团队列表里没有该id,则说明超管已经被转让,也需要重新选中团队 |
|
*/ |
|
if (!uni.getStorageSync('team') || !data.find(e => e.teamId == this.teamId)) { |
|
this.teamId = data[0].teamId |
|
uni.setStorageSync('teamId', data[0].teamId) |
|
uni.setStorageSync('team', data[0]) |
|
} |
|
} else { |
|
// 如果没有团队,则退出登录 |
|
uni.hideLoading() |
|
uni.clearStorageSync() |
|
uni.redirectTo({ |
|
url: '../index/index' |
|
}) |
|
} |
|
|
|
this.list = data |
|
this.getAuth() |
|
}).catch(e => { |
|
uni.hideLoading() |
|
}) |
|
}, |
|
// 学习速递 |
|
getStudy() { |
|
partnerOperatingList({ |
|
topSort: 'desc', |
|
pageNum: 1, |
|
pageSize: 5, |
|
querySource: 4, |
|
typeId: 1, |
|
}).then(({ page }) => { |
|
this.studies = page |
|
}).catch(e => {}) |
|
}, |
|
// 跳转学习 |
|
toStudy() { |
|
this.$util.to('/team/study/study') |
|
}, |
|
// 跳转学习详情 |
|
toDetail(item) { |
|
this.$util.to(`/team/article/article?id=` + item.id) |
|
}, |
|
// 获取销售进展 |
|
getSell() { |
|
salesProgress({ |
|
businessManagerId: uni.getStorageSync('team').partnerId, |
|
teamId: this.teamId, |
|
}).then(res => { |
|
this.sell = res |
|
}).catch(e => {}) |
|
}, |
|
// 处理年度经营分析数值 除以10000 + w |
|
handleNum(num) { |
|
// return num ? parseInt(num / 10000) + 'w' : 0 |
|
return num |
|
}, |
|
// 获取年度经营分析 |
|
getAnalysis() { |
|
annualOperatingAnalysis({ |
|
businessManagerId: uni.getStorageSync('team').partnerId, |
|
teamId: this.teamId, |
|
}).then(({ data }) => { |
|
if (data) this.analysis = data |
|
}).catch(e => {}) |
|
}, |
|
// 团队选择回调 |
|
teamChange() { |
|
const { teamId } = this |
|
const e = this.list.find(e => e.teamId == teamId) |
|
uni.setStorageSync('team', e) |
|
uni.setStorageSync('teamId', teamId) |
|
this.getAuth() |
|
}, |
|
// 模块点击 |
|
toModule(i) { |
|
this.$uma.trackEvent(i) // 友盟统计 |
|
let path = '/order/clients/clients' |
|
if (i === 'plan') { |
|
path = '/team/plans/plans' |
|
} else if (i === 'study') { |
|
path = '/team/study/study' |
|
} else if (i === 'info') { |
|
path = '/team/info/info' |
|
} |
|
this.$util.to(path, { type: i }) |
|
}, |
|
// 提示暂未开放 |
|
toPanel(i) { |
|
this.$util.errMsg('功能暂未开放!') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.page { |
|
position: relative; |
|
min-height: 100%; |
|
padding: 0 22rpx 30rpx; |
|
box-sizing: border-box; |
|
} |
|
.status-bar { |
|
width: 100%; |
|
// height: calc(var(--status-bar-height)); |
|
} |
|
.bg { |
|
z-index: -1; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.team { |
|
position: relative; |
|
width: 300rpx; |
|
margin-bottom: 30rpx; |
|
/deep/.selected-item text { |
|
font-size: 30rpx; |
|
font-weight: 600; |
|
color: #5f5f5f; |
|
} |
|
} |
|
.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; |
|
} |
|
} |
|
.entry { |
|
display: flex; |
|
justify-content: space-around; |
|
align-items: center; |
|
margin: 10rpx 0 30rpx; |
|
text-align: center; |
|
.icon { |
|
width: 78rpx; |
|
} |
|
.info-icon { |
|
width: 64rpx; |
|
max-height: 64rpx; |
|
} |
|
.text { |
|
font-size: 28rpx; |
|
color: #333; |
|
} |
|
} |
|
.panel { |
|
margin: 20rpx 10rpx; |
|
background-color: #fff; |
|
border-radius: 20rpx; |
|
overflow: hidden; |
|
&.study-panel { |
|
background-color: transparent; |
|
} |
|
.title { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
padding: 17rpx 20rpx; |
|
background: linear-gradient(90deg, #E5EFFF 0%, #FFFFFF 100%); |
|
} |
|
.y-title { |
|
background: linear-gradient(90deg, #FFF5E5 0%, #FFFFFF 100%); |
|
} |
|
.left { |
|
display: flex; |
|
align-items: center; |
|
font-size: 30rpx; |
|
color: #333; |
|
} |
|
.right { |
|
display: flex; |
|
align-items: center; |
|
font-size: 28rpx; |
|
color: #333; |
|
text { |
|
margin: 0 15rpx 0 8rpx; |
|
} |
|
} |
|
.icon { |
|
width: 36rpx; |
|
margin-right: 10rpx; |
|
} |
|
.date { |
|
width: 26rpx; |
|
} |
|
.arrow { |
|
width: 16rpx; |
|
} |
|
.data { |
|
padding: 33rpx 36rpx; |
|
} |
|
.line { |
|
display: flex; |
|
} |
|
.first { |
|
.item:first-child { |
|
width: 65%; |
|
} |
|
.name { |
|
margin-bottom: 14rpx; |
|
font-size: 24rpx; |
|
color: #999; |
|
} |
|
.val { |
|
font-size: 30rpx; |
|
color: #333; |
|
} |
|
.line:first-child { |
|
margin-bottom: 32rpx; |
|
} |
|
} |
|
.second { |
|
padding: 38rpx 10rpx; |
|
.item { |
|
position: relative; |
|
text-align: center; |
|
&:after { |
|
content: ''; |
|
position: absolute; |
|
bottom: 14rpx; |
|
right: -35rpx; |
|
width: 22rpx; |
|
height: 2px; |
|
background-color: #ccc; |
|
} |
|
&.item1 { |
|
margin-right: 53rpx; |
|
} |
|
&.item2 { |
|
margin-right: 54rpx; |
|
} |
|
&.equal { |
|
margin-right: 50rpx; |
|
&:after { |
|
bottom: 6rpx; |
|
right: -39rpx; |
|
height: 2px; |
|
padding-bottom: 5px; |
|
border-bottom: 2px solid #ccc; |
|
background-clip:content-box; |
|
box-sizing: content-box; |
|
} |
|
} |
|
&:last-child:after { |
|
display: none; |
|
} |
|
} |
|
.val { |
|
margin-bottom: 10rpx; |
|
font-size: 30rpx; |
|
color: #333; |
|
} |
|
.name { |
|
font-size: 24rpx; |
|
color: #999; |
|
} |
|
} |
|
.study { |
|
width: 100%; |
|
margin-top: 15rpx; |
|
overflow: auto; |
|
.item { |
|
display: inline-block; |
|
width: 280rpx; |
|
margin-right: 20rpx; |
|
background-color: #fff; |
|
border-radius: 8px; |
|
overflow: hidden; |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 130rpx; |
|
} |
|
.text { |
|
padding: 15rpx; |
|
font-size: 28rpx; |
|
color: #333; |
|
text-align: center; |
|
white-space: nowrap; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
} |
|
} |
|
.scroll { |
|
width: 100%; |
|
white-space: nowrap; |
|
} |
|
} |
|
.oh { |
|
overflow: hidden; |
|
} |
|
</style>
|
|
|