OpenAuth.Net/Vue2/src/views/dashboard/admin/index.vue
2025-06-07 23:55:12 +08:00

367 lines
8.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
* @Date: 2021-06-01 14:10:29
* @LastEditTime: 2025-06-07 23:54:30
* @Description:
* @
* @Copyright (c) 2022 by yubaolee | ahfu~ , All Rights Reserved.
-->
<template>
<div class="dashboard-editor-container">
<panel-group></panel-group>
<el-row :gutter="20">
<el-col :span="24">
<el-card class="box-card">
<el-tag type="danger">一些说明</el-tag>
<p></p>
开源版演示地址<a href="http://demo.openauth.net.cn:1803">http://demo.openauth.net.cn:1803</a>
<p></p>
官方网址<a href="http://openauth.net.cn">http://openauth.net.cn</a>
<p></p>
官方博客<a href="http://www.cnblogs.com/yubaolee/">http://www.cnblogs.com/yubaolee/</a>
<p></p>
系统默认System账号登录可以查看所有权限如果用其他账号admin/test可以查看相应的授权情况 数据库密码明文存储不要问为什么不加密因为你要问这些账号的密码我也记不住啊O(_)O
<p></p>
郑重提示为了大家体验的一致性数据库每5分钟还原一次
</el-card>
</el-col>
</el-row>
<el-row class="auth-box" :gutter="0">
<el-col :span="6" class="auth-col">
<div class="auth-head" style="line-height: 50px;"><p>功能特权</p></div>
<div class="auth-item" v-for="(item, index) in auths" :key="index">{{item.name}}</div>
</el-col>
<el-col :span="6" v-for="good in goods" :key="good.type" class="auth-col" :class="{'active': good.recomment}">
<div class="auth-head">
<a target="_blank" href="http://old.openauth.net.cn/question/detail.html?id=a2be2d61-7fcb-4df8-8be2-9f296c22a89c">
<span v-if="good.recomment" class="recomment">推荐</span>
<p>{{good.name}}<br><span class="subTitle">{{good.subTitle}}</span></p>
<el-button type="warning" plain style="width: 100px;" size="mini">选择</el-button>
</a>
</div>
<div class="auth-item" v-for="(item, index) in auths" :key="index">
<span v-if="item.belongs.indexOf(good.type) >= 0" class="auth-icon"><i class="el-icon-success"></i></span>
<span v-else class="auth-icon"><i class="el-icon-error"></i></span>
<span v-if="good.type === 'base' && item.baseRemark">{{item.baseRemark}}</span>
<span v-else-if="good.type === 'senior' && item.seniorRemark">{{item.seniorRemark}}</span>
<span v-else-if="good.type === 'business' && item.businessRemark">{{item.businessRemark}}</span>
</div>
</el-col>
</el-row>
</div>
</template>
<script>
import PanelGroup from './components/PanelGroup'
export default {
name: 'dashboard-admin',
data() {
return {
auths: [
{
name: '专属QQ群',
belongs: ['base', 'senior', 'business'],
},
{
name: '专属授权文件',
belongs: ['base', 'senior', 'business'],
},
{
name: '社区VIP',
belongs: ['base', 'senior', 'business'],
baseRemark: 'VIP标识',
seniorRemark: '高级VIP标识',
businessRemark: '企业VIP标识',
},
{
name: '分发限制',
belongs: ['base', 'senior', 'business'],
baseRemark: '仅个人,禁止公司',
seniorRemark: '仅个人,禁止公司',
businessRemark: '无任何限制',
},
{
name: 'Vue2+ElementUI源码',
belongs: ['base', 'senior', 'business'],
baseRemark: '不支持升级',
},
{
name: '最新的代码生成工具',
belongs: ['senior', 'business'],
},
{
name: '永久免费升级',
belongs: ['senior', 'business'],
},
{
name: '提供项目管理平台账号',
belongs: ['senior', 'business'],
},
{
name: '技术咨询服务',
belongs: ['senior', 'business'],
seniorRemark: '为个人提供',
businessRemark: '为公司团队提供',
},
{
name: 'Vue3+ElementPlus源码',
belongs: ['business'],
},
{
name: '移动H5源码',
belongs: ['business'],
},
{
name: '远程技术支持',
belongs: ['business'],
},
{
name: '提供正规发票',
belongs: ['business'],
}
],
goods: [{
name: '标准版',
subTitle: '500元',
type: 'base'
},{
name: '高级版',
subTitle: '800元',
type: 'senior'
},{
name: '企业版',
subTitle: '2000元',
type: 'business',
recomment: true
}]
}
},
components: {
PanelGroup
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.auth-box{
margin-top: 30px;
background: #f5f5f5;
.auth-col{
border: 1px solid #c8c8c8;
&.active{
// background: #0dafff;
overflow: hidden;
position: relative;
.recomment{
display: inline-block;
width: 150px;
height: 35px;
line-height: 35px;
text-align: center;
background: #febd17;
transform: rotate(-45deg);
position: absolute;
left: -45px;
top: 10px;
font-size: 14px;
color: #fff;
font-weight: normal;
letter-spacing: 3px;
}
.auth-head{
}
}
&:nth-child(2){
border-left: 0;
border-right: 0;
}
&:nth-child(4){
border-left: 0;
}
// border-right:
.auth-head{
text-align: center;
font-size: 18px;
font-weight: 600;
height: 135px;
.subTitle{
display: inline-block;
font-weight: normal;
padding-top: 10px;
}
}
>div{
height: 40px;
padding: 10px 20px;
box-sizing: border-box;
text-align: center;
.auth-icon{
font-size: 18px;
padding: 0 10px;
.el-icon-success{
color: #67c23a;
}
.el-icon-error{
color: #f56c6c;
}
}
}
> div:nth-child(even) {
background: #e5e5e5;
}
.auth-item:nth-child(even) {
// background: #0dafff;
}
}
}
.dashboard-editor-container {
padding: 20px;
background-color: rgb(240, 242, 245);
min-height: calc(100vh - 84px);
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
.component-item {
min-height: 100px;
}
}
.product {
max-width: 350px;
border: 1px solid #dfdfdf;
padding: 0;
border-radius: 8px;
margin-bottom: 20px;
background-color: white;
.title {
padding: 12px;
text-align: center;
background-color: #f4f4f4;
border-radius: 8px 8px 0 0;
}
h2 {
margin: 24px 0 12px;
}
.content {
h2 {
text-align: center;
font-size: 30px;
}
.tips {
padding: 0 35px 30px 30px;
div {
padding: 8px 0;
font-size: 15px;
.el-icon-check {
width: 30px;
font-size: 1.5em;
color: #35affb;
vertical-align: middle;
}
}
.color-prime {
color: #338ed6;
font-weight: 650;
.el-icon-check {
color: gray;
}
}
.color-enterprise {
color: #f56c6c;
font-weight: 800;
.el-icon-check {
color: #67c23a;
}
}
}
}
}
.action {
text-align: center;
padding-bottom: 24px;
padding: 12px 18px;
display: flex;
background: #f4f4f4;
.btn {
flex: 1;
margin: 6px;
padding: 6px 12px;
line-height: 26px;
font-size: 16px;
background: #fff;
position: relative;
cursor: pointer;
display: inline-block;
white-space: nowrap;
border-radius: 4px;
-ms-touch-action: manipulation;
touch-action: manipulation;
font-weight: 700;
text-decoration: none;
border: 2px solid #4893ff;
background-color: transparent;
color: #4893ff;
transition: all 0.3s;
}
a.btn.std {
color: #0dafff;
border-color: #0dafff;
}
a.btn.premier {
color: #d67735;
border-color: #ffa669;
}
}
.standard .title {
background: #eaeaea;
color: #666;
}
.prime {
margin: 0 auto;
}
.prime .title {
background: linear-gradient(#338ed6, #4f6eab);
color: #fff;
}
.enterprise {
margin-left: auto;
margin-right: 0;
}
.enterprise .title {
background: linear-gradient(#807979, #484a4e);
color: #fff;
}
</style>