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.
288 lines
6.2 KiB
288 lines
6.2 KiB
<template> |
|
<view class="page"> |
|
<image class="bg" src="@/static/image/index/index2.png" mode="widthFix"></image> |
|
|
|
<view class="banner"> |
|
<image class="img" src="@/static/image/index/index1.png" mode="widthFix"></image> |
|
<view class="info"> |
|
<view class="title">城市合伙人招募中</view> |
|
<view class="text">携手共创教育信息化新未来,合伙共享产业互联领域新红利</view> |
|
</view> |
|
</view> |
|
|
|
<ul class="entry"> |
|
<li v-if="auth('客户管理')" @click="$util.to('/order/clients/clients')"> |
|
<image class="icon" src="@/static/image/index/index3.png" mode="widthFix"></image> |
|
<view class="text">客户</view> |
|
</li> |
|
<li @click="$util.to('/team/plans/plans')"> |
|
<image class="icon" src="@/static/image/index/index4.png" mode="widthFix"></image> |
|
<view class="text">方案</view> |
|
</li> |
|
<li v-if="auth('订单管理')" @click="$util.to('/order/orders/orders')"> |
|
<image class="icon" src="@/static/image/index/index5.png" mode="widthFix"></image> |
|
<view class="text">订单</view> |
|
</li> |
|
<li @click="$util.to('/order/products/products')"> |
|
<image class="icon" src="@/static/image/index/index6.png" mode="widthFix"></image> |
|
<view class="text">产品</view> |
|
</li> |
|
</ul> |
|
<view class="panel"> |
|
<view class="title" @click="toPanel(1)"> |
|
<view class="left"> |
|
<image class="icon" src="@/static/image/index/index8.png" mode="widthFix"></image> |
|
销售进展 |
|
</view> |
|
<view class="right"> |
|
<image class="date" src="@/static/image/index/index7.png" mode="widthFix"></image> |
|
<text>本月</text> |
|
<image class="arrow" src="@/static/image/index/index10.png" mode="widthFix"></image> |
|
</view> |
|
</view> |
|
<view class="data first"> |
|
<view class="line"> |
|
<view class="item"> |
|
<view class="name">本月新增客户</view> |
|
<view class="val">0</view> |
|
</view> |
|
<view class="item"> |
|
<view class="name">我的客户</view> |
|
<view class="val">0</view> |
|
</view> |
|
</view> |
|
<view class="line"> |
|
<view class="item"> |
|
<view class="name">本月新增产品试用</view> |
|
<view class="val">0</view> |
|
</view> |
|
<view class="item"> |
|
<view class="name">试用客户</view> |
|
<view class="val">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/index/index9.png" mode="widthFix"></image> |
|
年度业绩看板 |
|
</view> |
|
<image class="arrow" src="@/static/image/index/index10.png" mode="widthFix"></image> |
|
</view> |
|
<view class="data second"> |
|
<view class="line"> |
|
<view class="item"> |
|
<view class="val">0</view> |
|
<view class="name">成交总额</view> |
|
</view> |
|
<view class="item"> |
|
<view class="val">0</view> |
|
<view class="name">收益金额</view> |
|
</view> |
|
<view class="item"> |
|
<view class="val">0</view> |
|
<view class="name">已到账</view> |
|
</view> |
|
<view class="item"> |
|
<view class="val">0</view> |
|
<view class="name">未到账</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { getUserRolesPermissionMenu } from '@/apis/modules/user.js' |
|
export default { |
|
data() { |
|
return { |
|
per: true, // 是否有权限 |
|
id: '', |
|
} |
|
}, |
|
onShow() { |
|
this.getAuth() |
|
}, |
|
methods: { |
|
// 查询当前角色权限 |
|
getAuth() { |
|
uni.showLoading({ |
|
title: '加载中' |
|
}) |
|
uni.getStorageSync('token') && getUserRolesPermissionMenu({ |
|
platformId: 3 |
|
}).then(res => { |
|
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(res.permissionMenu[0].children, '') |
|
uni.setStorageSync('dataPermission', res.dataPermissionList) |
|
uni.setStorageSync('auth', auth) |
|
this.$forceUpdate() |
|
}).catch(e => { |
|
uni.hideLoading() |
|
uni.setStorageSync('auth', []) |
|
}) |
|
}, |
|
// 提示暂未开放 |
|
toPanel(i) { |
|
this.$util.errMsg('功能暂未开放!') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.page { |
|
position: relative; |
|
min-height: 100%; |
|
padding: 30rpx 22rpx; |
|
box-sizing: border-box; |
|
} |
|
.bg { |
|
z-index: -1; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.team { |
|
width: 300rpx; |
|
margin-bottom: 30rpx; |
|
} |
|
.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; |
|
} |
|
.text { |
|
font-size: 28rpx; |
|
color: #333; |
|
} |
|
} |
|
.panel { |
|
margin: 20rpx 10rpx; |
|
background-color: #fff; |
|
border-radius: 20rpx; |
|
overflow: hidden; |
|
.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 36rpx; |
|
.line { |
|
justify-content: space-between; |
|
} |
|
.item { |
|
text-align: center; |
|
} |
|
.val { |
|
margin-bottom: 10rpx; |
|
font-size: 30rpx; |
|
color: #333; |
|
} |
|
.name { |
|
font-size: 24rpx; |
|
color: #999; |
|
} |
|
} |
|
} |
|
.oh { |
|
overflow: hidden; |
|
} |
|
</style>
|
|
|