From bfdbdafdd74370e38fadfd822ccf726154cdede2 Mon Sep 17 00:00:00 2001 From: SongZhen <> Date: Wed, 13 Sep 2023 14:41:01 +0800 Subject: [PATCH 1/7] =?UTF-8?q?proxy=E4=BB=A3=E7=90=86=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue.config.js | 71 ++++++++++++++++++++++++++------------------------- 1 file changed, 36 insertions(+), 35 deletions(-) diff --git a/vue.config.js b/vue.config.js index 53c8cc608..fb36a74d2 100644 --- a/vue.config.js +++ b/vue.config.js @@ -4,18 +4,17 @@ * @LastEditors: mk 2403457699@qq.com * @LastEditTime: 2023-09-12 19:24:04 * @Description: 介绍一下改动了什么 - * - * + * + * */ /** * 配置参考: https://cli.vuejs.org/zh/config/ */ -const IS_PROD = ['production', 'test'].includes(process.env.NODE_ENV) -const FileManagerPlugin = require('filemanager-webpack-plugin') - +const IS_PROD = ["production", "test"].includes(process.env.NODE_ENV); +const FileManagerPlugin = require("filemanager-webpack-plugin"); module.exports = { - baseUrl: process.env.NODE_ENV === 'production' ? '' : '/epmet-work-pc', + baseUrl: process.env.NODE_ENV === "production" ? "" : "/epmet-work-pc", css: { // 是否使用css分离插件 ExtractTextPlugin extract: IS_PROD, @@ -24,63 +23,65 @@ module.exports = { // css预设器配置项 loaderOptions: {}, // 启用 CSS modules for all css / pre-processor files. - modules: false + modules: false, }, chainWebpack: (config) => { - const svgRule = config.module.rule('svg') - svgRule.uses.clear() + const svgRule = config.module.rule("svg"); + svgRule.uses.clear(); svgRule .test(/\.svg$/) - .use('svg-sprite-loader') - .loader('svg-sprite-loader') + .use("svg-sprite-loader") + .loader("svg-sprite-loader"); }, productionSourceMap: false, - outputDir: 'epmet-work-pc', - assetsDir: 'static', + outputDir: "epmet-work-pc", + assetsDir: "static", devServer: { proxy: { // 如果请求地址以/api打头,就出触发代理机制 // http://localhost:9588/api/login -> http://localhost:3000/api/login - '/linkdata/linkdata-gateway/route': { - target: 'http://bipaas.elinkservice.cn' // 我们要代理的真实接口地址 - } + "/linkdata/linkdata-gateway/route": { + target: "http://bipaas.elinkservice.cn", // 我们要代理的真实接口地址 + }, + "/api": { + target: "http://localhost:8080", // 后端接口地址 + changeOrigin: true, + pathRewrite: { + "^api": "", + }, + }, }, open: false, port: 9001, overlay: { errors: true, - warnings: true - } + warnings: true, + }, }, // webpack简单配置 configureWebpack: { // debuge调试配置 - devtool: 'source-map', + devtool: "source-map", externals: { - AMap: 'AMap' + AMap: "AMap", }, resolve: { //配置路径别名 // /node_modules/@vue/cli-service/lib/config/base.js中已经配好的@路径,所以这里可以直接使用@ alias: { - '@js': '@/js', - '@c': '@/views/components', - '@v': '@/views', - '@m': '@/img' - } + "@js": "@/js", + "@c": "@/views/components", + "@v": "@/views", + "@m": "@/img", + }, }, plugins: [ new FileManagerPlugin({ onEnd: { - delete: [ - './epmet-work-pc.zip', - ], - archive: [ - { source: './epmet-work-pc', destination: './epmet-work-pc.zip' }, - ] - } - }) + delete: ["./epmet-work-pc.zip"], + archive: [{ source: "./epmet-work-pc", destination: "./epmet-work-pc.zip" }], + }, + }), ], }, - -} +}; From 56cf6007fcd4096cac2bcdcb287d9bd5e71997d6 Mon Sep 17 00:00:00 2001 From: SongZhen <> Date: Thu, 14 Sep 2023 12:02:04 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E5=85=9A=E7=BB=84=E7=BB=87=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/workflow.scss | 6 +- src/assets/scss/dataBoardMain.scss | 3 +- src/components/Tree/nodeWrap.vue | 231 +++++++++++-------- src/main.js | 1 + src/views/dataBoard/organizational/index.vue | 177 ++++++++++++-- 5 files changed, 294 insertions(+), 124 deletions(-) diff --git a/src/assets/css/workflow.scss b/src/assets/css/workflow.scss index dc9467a73..acd6fb750 100644 --- a/src/assets/css/workflow.scss +++ b/src/assets/css/workflow.scss @@ -962,7 +962,7 @@ html { position: absolute; height: 5px; width: 50%; - background-color: #00143C; + background-color: #00023a; top: -4px } @@ -1168,8 +1168,8 @@ html { .dingflow-design .condition-node-box { padding-top: 35px; - padding-right: 20px; - padding-left: 20px; + padding-right: 5px; + padding-left: 5px; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; diff --git a/src/assets/scss/dataBoardMain.scss b/src/assets/scss/dataBoardMain.scss index aae08b89d..c2988f2e1 100644 --- a/src/assets/scss/dataBoardMain.scss +++ b/src/assets/scss/dataBoardMain.scss @@ -7,7 +7,8 @@ .g-pg { position: relative; - background-image: url(../images/home/bg.png); + // background-image: url(../images/home/bg.png); + background-color: #00023a; background-repeat: no-repeat; background-size: 100% 100%; } diff --git a/src/components/Tree/nodeWrap.vue b/src/components/Tree/nodeWrap.vue index 33fd304be..8b1114162 100644 --- a/src/components/Tree/nodeWrap.vue +++ b/src/components/Tree/nodeWrap.vue @@ -1,9 +1,9 @@ - \ No newline at end of file diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue index 2d04cac68..b68467cd3 100644 --- a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue @@ -133,7 +133,6 @@ export default { }, handleView({name,id}) { - this.$router.push('/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail?name=张三&id=1') } } } diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/BusinessRecords.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/BusinessRecords.vue new file mode 100644 index 000000000..64a501170 --- /dev/null +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/BusinessRecords.vue @@ -0,0 +1,150 @@ + + + + + \ No newline at end of file diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/EnjoyService.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/EnjoyService.vue new file mode 100644 index 000000000..0e8ecee58 --- /dev/null +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/EnjoyService.vue @@ -0,0 +1,188 @@ + + + + + \ No newline at end of file diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/Family.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/Family.vue new file mode 100644 index 000000000..52af91e1a --- /dev/null +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/Family.vue @@ -0,0 +1,76 @@ + + + + + \ No newline at end of file diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/MatterDetails.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/MatterDetails.vue new file mode 100644 index 000000000..b965bc1e4 --- /dev/null +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/MatterDetails.vue @@ -0,0 +1,93 @@ + + + + + \ No newline at end of file diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/PointsRecord.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/PointsRecord.vue new file mode 100644 index 000000000..75f41e47a --- /dev/null +++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/modules/PointsRecord.vue @@ -0,0 +1,51 @@ + + + + + \ No newline at end of file From 36e96f10095df30da430299c687186d9c377def9 Mon Sep 17 00:00:00 2001 From: SongZhen <> Date: Thu, 14 Sep 2023 13:34:43 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E6=A8=A1=E6=8B=9F=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dataBoard/organizational/index.vue | 586 +++++++++++-------- 1 file changed, 338 insertions(+), 248 deletions(-) diff --git a/src/views/dataBoard/organizational/index.vue b/src/views/dataBoard/organizational/index.vue index 4666e4528..a67412a94 100644 --- a/src/views/dataBoard/organizational/index.vue +++ b/src/views/dataBoard/organizational/index.vue @@ -51,7 +51,7 @@ export default { data() { return { loading: false, - levelArr: [], + levelArr: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], navList: [ { name: "党委组织架构", @@ -135,270 +135,358 @@ export default { }, ], nowVal: 100, + nodeConfig: { - title: "社区党委", - name: "南昌路社区党委(党委书记:解书记)", - key: "1", + partyOrgName: "市北区委", + partyOrgLevel: 1, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 1, children: [ { - title: "网格党支部", - name: "第一网格党支部 (支部书记:王艺发)", - type: 2, + partyOrgName: "市北区委", + partyOrgLevel: 2, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 2, children: [ { - title: "楼院党小组", - type: 3, - name: "第一楼院党小组 (组长:韩文国)", + partyOrgName: "市北区委", + partyOrgLevel: 3, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 3, children: [ { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - { - title: "党员中心户", - type: 4, - name: "杨军", - }, - ], - }, - { - title: "楼院党小组", - type: 3, - name: "第二楼院党小组 (组长:褚丽兰)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - { - title: "党员中心户", - type: 4, - name: "杨军", - }, - ], - }, - ], - }, - { - title: "网格党支部", - name: "第二网格党支部 (支部书记:尤芬紫)", - type: 3, - children: [ - { - title: "楼院党小组", - type: 3, - name: "第一楼院党小组 (组长:韩文国)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", + partyOrgName: "市北区委", + partyOrgLevel: 4, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 4, children: [ { - title: "联系家庭", - type: 5, - name: "王宇", - }, - { - title: "联系家庭", - type: 5, - name: "刘冰冰", - }, - { - title: "联系家庭", - type: 5, - name: "杨飞宇", - }, - { - title: "联系家庭", - type: 5, - name: "齐天", + partyOrgName: "市北区委", + partyOrgLevel: 5, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 5, + children: [ + { + partyOrgName: "市北区委", + partyOrgLevel: 6, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 6, + children: [ + { + partyOrgName: "市北区委", + partyOrgLevel: 7, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 7, + children: [ + { + partyOrgName: "市北区委", + partyOrgLevel: 8, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 8, + children: [ + { + partyOrgName: "市北区委", + partyOrgLevel: 9, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 9, + children: [ + { + partyOrgName: "市北区委", + partyOrgLevel: 10, + partyOrgPid: "0", + principalName: "栾秀杰", + laneLevel: 10, + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], }, ], }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - ], - }, - { - title: "楼院党小组", - type: 3, - name: "第二楼院党小组 (组长:褚丽兰)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - ], - }, - ], - }, - { - title: "网格党支部", - name: "第三网格党支部 (支部书记:凤桥强)", - type: 3, - children: [ - { - title: "楼院党小组", - type: 3, - name: "第一楼院党小组 (组长:韩文国)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - { - title: "党员中心户", - type: 4, - name: "杨军", - }, - ], - }, - { - title: "楼院党小组", - type: 3, - name: "第二楼院党小组 (组长:褚丽兰)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, - { - title: "党员中心户", - type: 4, - name: "杨军", - }, - ], - }, - { - title: "楼院党小组", - type: 3, - name: "第三楼院党小组 (组长:王丽丽)", - children: [ - { - title: "党员中心户", - type: 4, - name: "周游", - }, - { - title: "党员中心户", - type: 4, - name: "王阳明", - }, - { - title: "党员中心户", - type: 4, - name: "刘艳萍", - }, - { - title: "党员中心户", - type: 4, - name: "谢苗苗", - }, ], }, ], }, ], + + // title: "社区党委", + // name: "南昌路社区党委(党委书记:解书记)", + // key: "1", + // children: [ + // { + // title: "网格党支部", + // name: "第一网格党支部 (支部书记:王艺发)", + // type: 2, + // children: [ + // { + // title: "楼院党小组", + // type: 3, + // name: "第一楼院党小组 (组长:韩文国)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "杨军", + // }, + // ], + // }, + // { + // title: "楼院党小组", + // type: 3, + // name: "第二楼院党小组 (组长:褚丽兰)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "杨军", + // }, + // ], + // }, + // ], + // }, + // { + // title: "网格党支部", + // name: "第二网格党支部 (支部书记:尤芬紫)", + // type: 3, + // children: [ + // { + // title: "楼院党小组", + // type: 3, + // name: "第一楼院党小组 (组长:韩文国)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // children: [ + // { + // title: "联系家庭", + // type: 5, + // name: "王宇", + // }, + // { + // title: "联系家庭", + // type: 5, + // name: "刘冰冰", + // }, + // { + // title: "联系家庭", + // type: 5, + // name: "杨飞宇", + // }, + // { + // title: "联系家庭", + // type: 5, + // name: "齐天", + // }, + // ], + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // ], + // }, + // { + // title: "楼院党小组", + // type: 3, + // name: "第二楼院党小组 (组长:褚丽兰)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // ], + // }, + // ], + // }, + // { + // title: "网格党支部", + // name: "第三网格党支部 (支部书记:凤桥强)", + // type: 3, + // children: [ + // { + // title: "楼院党小组", + // type: 3, + // name: "第一楼院党小组 (组长:韩文国)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "杨军", + // }, + // ], + // }, + // { + // title: "楼院党小组", + // type: 3, + // name: "第二楼院党小组 (组长:褚丽兰)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "杨军", + // }, + // ], + // }, + // { + // title: "楼院党小组", + // type: 3, + // name: "第三楼院党小组 (组长:王丽丽)", + // children: [ + // { + // title: "党员中心户", + // type: 4, + // name: "周游", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "王阳明", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "刘艳萍", + // }, + // { + // title: "党员中心户", + // type: 4, + // name: "谢苗苗", + // }, + // ], + // }, + // ], + // }, + // ], }, }; }, computed: {}, mounted() { - this.getTreeData(); + // this.getTreeData(); }, methods: { //获取背景层级 @@ -553,8 +641,7 @@ export default { .flowLevel-4, .flowLevel-5, .flowLevel-6, - .flowLevel-7, - .flowLevel-8 { + .flowLevel-7 { @include flowLevwlCommon; height: 126px; line-height: 126px; @@ -644,12 +731,15 @@ export default { } } .flowLevel-8 { + @include flowLevwlCommon; top: 1070px; + height: 90px; + line-height: 90px; div { padding-left: 80px; &::after { @include flowLevelAfter; - top: 35px; + top: 14px; left: 15px; width: 180px; height: 60px; @@ -659,7 +749,7 @@ export default { } .flowLevel-9 { @include flowLevwlCommon; - top: 1220px; + top: 1179px; height: 135px; line-height: 135px; div { @@ -676,7 +766,7 @@ export default { } .flowLevel-10 { @include flowLevwlCommon; - top: 1380px; + top: 1338px; height: 135px; line-height: 135px; div { From 5141ecae437ed36282beb1c47ae0cad7dfa669ef Mon Sep 17 00:00:00 2001 From: SongZhen <> Date: Thu, 14 Sep 2023 17:20:43 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E5=85=9A=E7=BB=84=E7=BB=87=E6=9E=B6?= =?UTF-8?q?=E6=9E=84=E4=B8=8B=E9=92=BB=E9=A1=B5=E9=9D=A2=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/workflow.scss | 3 - src/components/Tree/nodeWrap.vue | 14 +- src/router/index.js | 10 + .../organizational/dangTree/index.vue | 420 +----------------- .../personnel/components/Breadcrumb/index.vue | 41 ++ .../personnel/components/Pagination/index.vue | 138 ++++++ .../personnel/components/Tabs/index.vue | 59 +++ .../personnel/components/Title/index.vue | 63 +++ .../organizational/personnel/index.vue | 90 ++++ .../personnel/modules/BusinessRecords.vue | 128 ++++++ .../personnel/modules/EnjoyService.vue | 188 ++++++++ .../personnel/modules/Family.vue | 76 ++++ .../personnel/modules/MatterDetails.vue | 93 ++++ .../personnel/modules/PointsRecord.vue | 51 +++ src/views/dataBoardMain/main-navbar.vue | 6 +- 15 files changed, 956 insertions(+), 424 deletions(-) create mode 100644 src/views/dataBoard/organizational/personnel/components/Breadcrumb/index.vue create mode 100644 src/views/dataBoard/organizational/personnel/components/Pagination/index.vue create mode 100644 src/views/dataBoard/organizational/personnel/components/Tabs/index.vue create mode 100644 src/views/dataBoard/organizational/personnel/components/Title/index.vue create mode 100644 src/views/dataBoard/organizational/personnel/index.vue create mode 100644 src/views/dataBoard/organizational/personnel/modules/BusinessRecords.vue create mode 100644 src/views/dataBoard/organizational/personnel/modules/EnjoyService.vue create mode 100644 src/views/dataBoard/organizational/personnel/modules/Family.vue create mode 100644 src/views/dataBoard/organizational/personnel/modules/MatterDetails.vue create mode 100644 src/views/dataBoard/organizational/personnel/modules/PointsRecord.vue diff --git a/src/assets/css/workflow.scss b/src/assets/css/workflow.scss index c1c041998..64b847edc 100644 --- a/src/assets/css/workflow.scss +++ b/src/assets/css/workflow.scss @@ -1389,13 +1389,10 @@ html { transition: transform 0.3s ease-in-out; transform-origin: 50% 50%; - // overflow: scroll; .contentList { position: relative; width: 100%; height: 109px; - // margin-bottom: 45px; - // background: linear-gradient(90deg, rgba(14, 121, 213, 0.14) 86%, rgba(79, 175, 255, 0) 100%); } .flowLevel-1 { diff --git a/src/components/Tree/nodeWrap.vue b/src/components/Tree/nodeWrap.vue index a36660922..9f56afa5e 100644 --- a/src/components/Tree/nodeWrap.vue +++ b/src/components/Tree/nodeWrap.vue @@ -3,7 +3,7 @@
-
{{ spliceNameFun(nodeConfig, 18) }}
+
{{ spliceNameFun(nodeConfig, 18) }}
@@ -15,15 +15,15 @@
-
{{ spliceNameFun(item, 18) }}
+
{{ spliceNameFun(item, 18) }}
-
+
{{ spliceNameFun(item, 18) }}
-
+
{{ spliceNameFun(item, 3) }}
@@ -44,7 +44,7 @@ 空巢老人
-->
-
+
{{ spliceNameFun(item, 3) }}
@@ -143,6 +143,10 @@ export default { } }); }, + + gotoPersonnel() { + this.$router.push("/organizational/orgPersonnel"); + }, }, }; diff --git a/src/router/index.js b/src/router/index.js index d759f7616..b714b6208 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -400,6 +400,16 @@ export const dataBoardRoutes = { }, ], }, + { + path: "/organizational/orgPersonnel", + props: true, + component: () => import("@/views/dataBoard/organizational/personnel/index"), + name: "OrgPersonnel", + meta: { + title: "居民画像", + isTab: false, + }, + }, { path: "humanData/index", props: true, diff --git a/src/views/dataBoard/organizational/dangTree/index.vue b/src/views/dataBoard/organizational/dangTree/index.vue index 7faa7d2c1..b925ab2b6 100644 --- a/src/views/dataBoard/organizational/dangTree/index.vue +++ b/src/views/dataBoard/organizational/dangTree/index.vue @@ -1,7 +1,7 @@