'admin-21.03.08:修复按钮鉴权组件name值错误问题'

This commit is contained in:
lyt 2021-03-08 17:51:33 +08:00
parent ff360e1a83
commit 356bdf2316
9 changed files with 313 additions and 5 deletions

View File

@ -115,6 +115,7 @@ cnpm run build
- <a href="https://github.com/vitejs/vite" target="_blank">vite</a> - <a href="https://github.com/vitejs/vite" target="_blank">vite</a>
- <a href="https://github.com/wangeditor-team/wangEditor" target="_blank">wangeditor</a> - <a href="https://github.com/wangeditor-team/wangEditor" target="_blank">wangeditor</a>
- <a href="https://github.com/fengyuanchen/cropperjs" target="_blank">cropperjs</a> - <a href="https://github.com/fengyuanchen/cropperjs" target="_blank">cropperjs</a>
- <a href="https://github.com/antvis/g6" target="_blank">@antv/g6</a>
#### 特别感谢 #### 特别感谢

View File

@ -6,6 +6,7 @@
"build": "vite build" "build": "vite build"
}, },
"dependencies": { "dependencies": {
"@antv/g6": "^4.1.16",
"axios": "^0.21.1", "axios": "^0.21.1",
"clipboard": "^2.0.6", "clipboard": "^2.0.6",
"countup.js": "^2.0.7", "countup.js": "^2.0.7",

View File

@ -8,13 +8,13 @@
import { computed } from "vue"; import { computed } from "vue";
import { useStore } from "/@/store/index.ts"; import { useStore } from "/@/store/index.ts";
export default { export default {
name: "auth",
props: { props: {
value: { value: {
type: String, type: String,
default: () => "", default: () => "",
}, },
}, },
nane: "auth",
setup(props) { setup(props) {
const store = useStore(); const store = useStore();
// vuex // vuex

View File

@ -9,7 +9,7 @@ import { computed } from "vue";
import { useStore } from "/@/store/index.ts"; import { useStore } from "/@/store/index.ts";
import { judementSameArr } from "/@/utils/arrayOperation.ts"; import { judementSameArr } from "/@/utils/arrayOperation.ts";
export default { export default {
nane: "authAll", name: "authAll",
props: { props: {
value: { value: {
type: Array, type: Array,

View File

@ -8,13 +8,13 @@
import { computed } from "vue"; import { computed } from "vue";
import { useStore } from "/@/store/index.ts"; import { useStore } from "/@/store/index.ts";
export default { export default {
name: "auths",
props: { props: {
value: { value: {
type: Array, type: Array,
default: () => [], default: () => [],
}, },
}, },
nane: "auths",
setup(props) { setup(props) {
const store = useStore(); const store = useStore();
// vuex // vuex

View File

@ -406,6 +406,21 @@ export const dynamicRoutes = [
auth: ['admin', 'test'], auth: ['admin', 'test'],
icon: 'iconfont icon-caijian' icon: 'iconfont icon-caijian'
} }
},
{
path: '/fun/mindMap',
name: 'mindMap',
component: () => import('/@/views/fun/mindMap/index.vue'),
meta: {
title: 'G6 思维导图',
isLink: '',
isHide: false,
isKeepAlive: true,
isAffix: false,
isIframe: false,
auth: ['admin', 'test'],
icon: 'iconfont icon-siweidaotu'
}
} }
] ]
}, },

View File

@ -1,6 +1,6 @@
// 字体图标 url // 字体图标 url
const cssCdnUrlList: Array<string> = [ const cssCdnUrlList: Array<string> = [
'//at.alicdn.com/t/font_2298093_sctkh48ml1.css', '//at.alicdn.com/t/font_2298093_eee6zjvjt5a.css',
'//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' '//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'
] ]
// 第三方 js url // 第三方 js url

View File

@ -0,0 +1,292 @@
<template>
<div :style="{height: `calc(100vh - ${initTagViewHeight}`}">
<div class="layout-view-bg-white">
<div id="antvG6" style="height:100%;"></div>
</div>
</div>
</template>
<script lang="ts">
import { toRefs, reactive, computed, onMounted, nextTick } from "vue";
import G6 from "@antv/g6";
import { useStore } from "/@/store/index.ts";
export default {
name: "mindMap",
setup() {
const store = useStore();
const state = reactive({});
//
const initTagViewHeight = computed(() => {
let { isTagsview } = store.state.themeConfig;
if (isTagsview) return `114px`;
else return `80px`;
});
// antv/G6
const initAntvG6 = () => {
console.log(G6);
const fontSize = 12;
//
G6.registerNode("line", {
draw: (cfg, group) => {
const width = cfg.label.length * 10;
const rect = group.addShape("rect", {
attrs: {
x: 0,
y: -10,
...cfg.style,
width,
height: 20,
lineWidth: 0,
opacity: 0,
},
name: "rect-shape",
draggable: true,
});
const label = group.addShape("text", {
attrs: {
text: cfg.label,
fill: "#000",
fontSize,
x: 0,
y: -5,
},
name: "label-shape",
draggable: true,
});
const labelBBox = label.getBBox();
// const icon = group.addShape('circle', {
// attrs: {
// x: labelBBox.maxX + 10,
// y: (labelBBox.minY + labelBBox.maxY) / 2,
// r: 5,
// stroke: '#000'
// },
// name: 'circle-shape',
// draggable: true
// });
const bboxWidth = label.getBBox().width + 20;
rect.attr({ width: bboxWidth });
group.addShape("path", {
attrs: {
lineWidth: 1,
fill: "#ccc",
stroke: "#0092ff",
path: [
["M", 0, 0],
["L", bboxWidth, 0],
],
},
name: "path-shape",
draggable: true,
});
return rect;
},
});
//
const width = document.getElementById("antvG6").clientWidth;
const height = document.getElementById("antvG6").clientHeight;
// return false;
const graph = new G6.TreeGraph({
container: "antvG6",
width,
height,
pixelRatio: 2,
modes: {
default: ["collapse-expand", "drag-canvas", "zoom-canvas"],
},
//
defaultNode: {
type: "rect",
// size: 16,
width: "auto",
anchorPoints: [
[0, 0.5],
[1, 0.5],
],
style: {
fill: "#005ff2", //
stroke: "#005ff2", //
},
labelCfg: {
style: {
fill: "#ffffff",
fontSize,
},
},
},
// 线
defaultEdge: {
type: "cubic-horizontal",
// polyline
style: {
stroke: "#0092ff",
},
},
//
layout: {
type: "mindmap",
direction: "H",
getHeight: function getHeight() {
return 16;
},
getWidth: function getWidth() {
return 16;
},
getVGap: function getVGap() {
return 10;
},
getHGap: function getHGap() {
return 100;
},
},
});
graph.node(function (node) {
// depth
if (node.depth == 0) {
return {
// size:[100,60],
style: {
fill: "#005ff2", //
stroke: "#005ff2", //
},
// label:node.id
};
}
if (node.depth == 1) {
return {
style: {
//
fill:
"l(0) 0:rgba(0,36,186,1) 0.5:rgba(0,36,186,0.5) 1:rgba(0,0,0,0.1)",
},
};
}
if (node.depth == 2) {
return {
type: "line",
};
}
return {
// label: node.id, //
labelCfg: {
// position: node.children && node.children.length > 0 ? 'left' : node.x > centerX ? 'right' : 'left', //
offset: 5,
},
};
});
const data = {
id: "id1",
label: "遗属补助小专项",
children: [
{
id: "id1-1",
label: "已死亡",
children: [
{
id: "id1-1-1",
label: "问题数35个",
},
{
id: "id1-1-2",
label: "人数50人",
},
{
id: "id1-1-3",
label: "资金340万",
},
],
},
{
id: "id1-2",
label: "姓名与身份证不符",
children: [
{
id: "id1-2-1",
label: "问题数35个",
},
{
id: "id1-2-2",
label: "人数50人",
},
{
id: "id1-2-3",
label: "资金340万",
},
],
},
{
id: "id1-3",
label: "未查到身份证信息",
children: [
{
id: "id1-3-1",
label: "问题数35个",
},
{
id: "id1-3-2",
label: "人数50人",
},
{
id: "id1-3-3",
label: "资金340万",
},
],
},
{
id: "id1-4",
label: "领取低保",
children: [
{
id: "id1-4-1",
label: "问题数35个",
},
{
id: "id1-4-2",
label: "人数50人",
},
{
id: "id1-4-3",
label: "资金340万",
},
],
},
{
id: "id1-5",
label: "年龄不符合",
children: [
{
id: "id1-5-1",
label: "问题数35个",
},
{
id: "id1-5-2",
label: "人数50人",
},
{
id: "id1-5-3",
label: "资金340万",
},
],
},
],
};
graph.data(data);
graph.render();
graph.fitView();
};
//
onMounted(() => {
initAntvG6();
});
return {
initTagViewHeight,
...toRefs(state),
};
},
};
</script>
<style scoped lang="scss">
</style>

View File

@ -13,7 +13,6 @@ import { toRefs, reactive, onMounted } from "vue";
import wangeditor from "wangeditor"; import wangeditor from "wangeditor";
export default { export default {
name: "wangeditor", name: "wangeditor",
components: {},
setup() { setup() {
const state = reactive({}); const state = reactive({});
// //