|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
<template> |
|
|
|
|
<div style="height: 100%"> |
|
|
|
|
<div style="height: 50%;display: flex;justify-content: stretch;" > |
|
|
|
|
<div style="height: 40%;display: flex;justify-content: stretch;" > |
|
|
|
|
<a-row type="flex" :gutter="16" style="height: 100%;width: 100%"> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 98%;"> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 100%;"> |
|
|
|
|
<!--待办任务--> |
|
|
|
|
<a-card title="待办" style="height: 100%;overflow: hidden;"> |
|
|
|
|
<a-table |
|
|
|
@ -18,7 +18,7 @@
|
|
|
|
|
</a-table> |
|
|
|
|
</a-card> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 98%;"> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 100%;"> |
|
|
|
|
<!--站内消息--> |
|
|
|
|
<a-card ref="cardH" title="站内消息" style="height: 100%;overflow: hidden;"> |
|
|
|
|
<a-table style="height: 100%;" |
|
|
|
@ -33,7 +33,7 @@
|
|
|
|
|
</a-table> |
|
|
|
|
</a-card> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 98%;"> |
|
|
|
|
<a-col :md="8" :sm="24" style="height: 100%;"> |
|
|
|
|
<!--登录日志--> |
|
|
|
|
<a-card title="登录日志" style="height: 100%;overflow: hidden"> |
|
|
|
|
<a-table style="height: 100%;" |
|
|
|
@ -51,39 +51,25 @@
|
|
|
|
|
</a-row> |
|
|
|
|
</div> |
|
|
|
|
<!--全部应用--> |
|
|
|
|
<div class="bottom-div" style="height: 50%;margin-top: 1%;width: 98.5%;" > |
|
|
|
|
<a-card title="全部应用" style="height: 100%"> |
|
|
|
|
<a-row type="flex" :gutter="16" style="height: 100%;"> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='informationManagement'> |
|
|
|
|
<a-icon class="bottomClick" type="table" style="font-size: 25px;" /> 基础信息管理 |
|
|
|
|
</a-col> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='processManage'> |
|
|
|
|
<a-icon type="cluster" style="font-size: 25px;" /> 流程管理 |
|
|
|
|
</a-col> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='materialManage'> |
|
|
|
|
<a-icon type="setting" style="font-size: 25px;" /> 物资管理 |
|
|
|
|
</a-col> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='statisticalAnalysis'> |
|
|
|
|
<a-icon type="line-chart" style="font-size: 25px;" /> 统计分析 |
|
|
|
|
</a-col> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='dictionaryLibrary'> |
|
|
|
|
<a-icon type="read" style="font-size: 25px;" /> 标准字典库 |
|
|
|
|
</a-col> |
|
|
|
|
<a-col class="bottomClick" span="4" @click='isystemManage'> |
|
|
|
|
<a-icon type="setting" style="font-size: 25px;" /> 系统管理 |
|
|
|
|
</a-col> |
|
|
|
|
</a-row> |
|
|
|
|
<div class="bottom-div" style="height: 60%;margin-top: 1%;width: 98.5%;" > |
|
|
|
|
<a-card class="bottom-card" title="全部应用" style="height: 100%;" :headStyle="{padding:'24'}" :bodyStyle="{padding:'10'}"> |
|
|
|
|
<ul class="apply-use" style="list-style-type: none;padding: 0px"> |
|
|
|
|
<li class="ant-col-md-3" v-for="(item,index) in userChildren" @click="goRouteView(item.path)"> |
|
|
|
|
{{ item.meta.title }} |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</a-card> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
|
|
|
|
import { getAction } from '@api/manage' |
|
|
|
|
import { JVXETypes } from '@/components/jeecg/JVxeTable/index' |
|
|
|
|
import store from '@/store' |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import userMenu from '@comp/tools/UserMenu' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -162,17 +148,46 @@ export default {
|
|
|
|
|
msgContent: [], |
|
|
|
|
//加载状态 |
|
|
|
|
loading:true, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//全部用户菜单 |
|
|
|
|
userMean:[], |
|
|
|
|
//用户子菜单 |
|
|
|
|
userChildren:[], |
|
|
|
|
routerGo:"" |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
this.todoList(); |
|
|
|
|
this.loginList(); |
|
|
|
|
this.systemMessage(); |
|
|
|
|
this.getChildrenMenu(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
methods: { |
|
|
|
|
goRouteView(item){ |
|
|
|
|
this.$router.push(item) |
|
|
|
|
}, |
|
|
|
|
//循环获取所有的子菜单项 |
|
|
|
|
getChildrenMenu() { |
|
|
|
|
let userMean = JSON.parse(sessionStorage.getItem('ASIDE_MEAN')) |
|
|
|
|
console.log("userMean") |
|
|
|
|
console.log(userMean) |
|
|
|
|
let children = [] |
|
|
|
|
for (let i in userMean){ |
|
|
|
|
if (userMean[i].hidden !== true){ |
|
|
|
|
children.push(userMean[i].children) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
let childrenMean = [] |
|
|
|
|
for (let i in children){ |
|
|
|
|
let childrenArray = children[i] |
|
|
|
|
for (let j in childrenArray){ |
|
|
|
|
childrenMean.push(childrenArray[j]) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.userChildren = childrenMean |
|
|
|
|
console.log("this.userChildren") |
|
|
|
|
console.log(this.userChildren) |
|
|
|
|
}, |
|
|
|
|
//待办任务的行点击事件(前往待办) |
|
|
|
|
rowClick: function(record, index) { |
|
|
|
|
return { |
|
|
|
@ -247,36 +262,6 @@ export default {
|
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 跳转地址 |
|
|
|
|
informationManagement(){ |
|
|
|
|
this.$router.push('/supplier/regulate') |
|
|
|
|
}, |
|
|
|
|
processManage(){ |
|
|
|
|
this.$router.push('/activiti/applyHome') |
|
|
|
|
}, |
|
|
|
|
materialManage(){ |
|
|
|
|
this.$router.push('/modules/suppliesstronger') |
|
|
|
|
}, |
|
|
|
|
statisticalAnalysis(){ |
|
|
|
|
this.$router.push('/statistic_analysis/costStatistic') |
|
|
|
|
}, |
|
|
|
|
dictionaryLibrary(){ |
|
|
|
|
this.$router.push('/dictionaries/data') |
|
|
|
|
}, |
|
|
|
|
isystemManage(){ |
|
|
|
|
this.$router.push('/isystem/user') |
|
|
|
|
}, |
|
|
|
|
portalInformation(){ |
|
|
|
|
this.$router.push('') |
|
|
|
|
}, |
|
|
|
|
statisticalTreatment(){ |
|
|
|
|
this.$router.push('/report/ArchivesStatisticst') |
|
|
|
|
}, |
|
|
|
|
// 对待办任务进行查询查看是否有待办数据 |
|
|
|
|
searchDoneData(){ |
|
|
|
|
// 待添加 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -285,14 +270,23 @@ export default {
|
|
|
|
|
<style scoped> |
|
|
|
|
@import url("http://at.alicdn.com/t/c/font_3733417_ws9m9bvag1h.css"); |
|
|
|
|
|
|
|
|
|
/deep/.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body { |
|
|
|
|
height: 100%; |
|
|
|
|
/deep/.bottom-div > ant-card-body { |
|
|
|
|
padding: 10px 24px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.ant-table-scroll { |
|
|
|
|
.apply-use li { |
|
|
|
|
cursor: pointer; |
|
|
|
|
margin: 0 4% 2% 3%; |
|
|
|
|
} |
|
|
|
|
.apply-use li:hover{ |
|
|
|
|
color: #18aeff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body { |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.ant-table { |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
@ -356,7 +350,6 @@ export default {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.ant-card-body{ |
|
|
|
|
padding: 5% 3% 5% 3%; |
|
|
|
|
height: 80%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|