Browse Source

菜单路由

dev
kilo 2 years ago
parent
commit
6bbbccf0a3
  1. 2
      src/components/layouts/UserLayout.vue
  2. 16
      src/store/modules/user.js
  3. 1
      src/store/mutation-types.js
  4. 119
      src/views/dashboard/HomePage.vue
  5. 86
      src/views/system/DepartUserList.vue
  6. 1
      src/views/system/RoleUserList.vue
  7. 2
      src/views/system/modules/AddressListRight.vue
  8. 2
      src/views/waste/ProcessWasteListCable.vue
  9. 2
      src/views/wastematerials/ProcessWasteMaterialsList.vue
  10. 6
      src/views/wastematerials/ProcessWasteMaterialsLists.vue

2
src/components/layouts/UserLayout.vue

@ -5,7 +5,7 @@
<div class="header">
<a href="/">
<!--<img src="~@/assets/logo.svg" class="logo" alt="logo">-->
<span class="title" style="color: #fff">昊易信息</span>
<span class="title" style="color: #fff">昊易信息管理平台</span>
</a>
</div>
<div class="desc">

16
src/store/modules/user.js

@ -1,6 +1,19 @@
import Vue from 'vue'
import { login, logout, phoneLogin, thirdLogin } from "@/api/login"
import { ACCESS_TOKEN, USER_NAME,USER_INFO,USER_AUTH,SYS_BUTTON_AUTH,UI_CACHE_DB_DICT_DATA,TENANT_ID,CACHE_INCLUDED_ROUTES,PARENT_ID,USER_INFORMATION,PUWWC_Id } from "@/store/mutation-types"
import {
ACCESS_TOKEN,
USER_NAME,
USER_INFO,
USER_AUTH,
SYS_BUTTON_AUTH,
UI_CACHE_DB_DICT_DATA,
TENANT_ID,
CACHE_INCLUDED_ROUTES,
PARENT_ID,
USER_INFORMATION,
PUWWC_Id,
ASIDE_MEAN
} from '@/store/mutation-types'
import { welcome } from "@/utils/util"
import { queryPermissionsByUser } from '@/api/api'
import { getAction } from '@/api/manage'
@ -131,6 +144,7 @@ const user = {
sessionStorage.setItem(PARENT_ID,parentId);
sessionStorage.setItem(PUWWC_Id,puwwcId);
sessionStorage.setItem(USER_INFORMATION,JSON.stringify(userInformation));
sessionStorage.setItem('ASIDE_MEAN',JSON.stringify(menuData));
if (menuData && menuData.length > 0) {
//update--begin--autor:qinfeng-----date:20200109------for:JEECG-63 一级菜单的子菜单全部是隐藏路由,则一级菜单不显示------
menuData.forEach((item, index) => {

1
src/store/mutation-types.js

@ -22,6 +22,7 @@ export const UI_CACHE_DB_DICT_DATA = 'UI_CACHE_DB_DICT_DATA'
export const INDEX_MAIN_PAGE_PATH = '/dashboard/analysis'
export const TENANT_ID = 'TENANT_ID'
export const ONL_AUTH_FIELDS = 'ONL_AUTH_FIELDS'
export const ASIDE_MEAN = 'ASIDE_MEAN'
//路由缓存问题,关闭了tab页时再打开就不刷新 #842
export const CACHE_INCLUDED_ROUTES = 'CACHE_INCLUDED_ROUTES'

119
src/views/dashboard/HomePage.vue

@ -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%;
}

86
src/views/system/DepartUserList.vue

@ -1,50 +1,52 @@
<template>
<a-row :gutter="10">
<a-col :md="8" :sm="24">
<a-card :bordered="false">
<div style="background: #fff;padding-left:16px;height: 100%; margin-top: 5px">
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/>
<!-- -->
<a-card :bordered="false">
<a-row :gutter="10">
<a-col :md="8" :sm="24">
<a-card :bordered="false">
<div style="background: #fff;padding-left:16px;height: 100%; margin-top: 5px">
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/>
<!-- -->
<template v-if="userIdentity === '2' && departTree.length>0">
<template v-if="userIdentity === '2' && departTree.length>0">
<!--组织机构-->
<a-tree
showLine
:selectedKeys="selectedKeys"
:checkStrictly="true"
@select="onSelect"
:dropdownStyle="{maxHeight:'200px',overflow:'auto'}"
:treeData="departTree"
:autoExpandParent="autoExpandParent"
:expandedKeys="iExpandedKeys"
@expand="onExpand"
/>
<!--组织机构-->
<a-tree
showLine
:selectedKeys="selectedKeys"
:checkStrictly="true"
@select="onSelect"
:dropdownStyle="{maxHeight:'200px',overflow:'auto'}"
:treeData="departTree"
:autoExpandParent="autoExpandParent"
:expandedKeys="iExpandedKeys"
@expand="onExpand"
/>
</template>
<div style="margin-top: 24px;" v-else-if="userIdentity === '2' && departTree.length==0">
<h3><span>您的部门下暂无有效部门信息</span></h3>
</template>
<div style="margin-top: 24px;" v-else-if="userIdentity === '2' && departTree.length==0">
<h3><span>您的部门下暂无有效部门信息</span></h3>
</div>
<div style="margin-top: 24px;" v-else><h3>普通员工暂此权限</h3></div>
</div>
<div style="margin-top: 24px;" v-else><h3>普通员工暂此权限</h3></div>
</div>
</a-card>
</a-col>
<a-col :md="16" :sm="24">
<a-card :bordered="false">
<a-tabs defaultActiveKey="2" @change="callback">
<a-tab-pane tab="基本信息" key="1" forceRender>
<Dept-Base-Info ref="DeptBaseInfo"></Dept-Base-Info>
</a-tab-pane>
<!-- <a-tab-pane tab="用户信息" key="2">-->
<!-- <Dept-User-Info ref="DeptUserInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"></Dept-User-Info>-->
<!-- </a-tab-pane>-->
<!-- <a-tab-pane tab="部门角色" key="3" forceRender>-->
<!-- <dept-role-info ref="DeptRoleInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"/>-->
<!-- </a-tab-pane>-->
</a-tabs>
</a-card>
</a-col>
</a-row>
</a-card>
</a-col>
<a-col :md="16" :sm="24">
<a-card :bordered="false">
<a-tabs defaultActiveKey="2" @change="callback">
<a-tab-pane tab="基本信息" key="1" forceRender>
<Dept-Base-Info ref="DeptBaseInfo"></Dept-Base-Info>
</a-tab-pane>
<!-- <a-tab-pane tab="用户信息" key="2">-->
<!-- <Dept-User-Info ref="DeptUserInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"></Dept-User-Info>-->
<!-- </a-tab-pane>-->
<!-- <a-tab-pane tab="部门角色" key="3" forceRender>-->
<!-- <dept-role-info ref="DeptRoleInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"/>-->
<!-- </a-tab-pane>-->
</a-tabs>
</a-card>
</a-col>
</a-row>
</a-card>
</template>
<script>
import DeptBaseInfo from './modules/DeptBaseInfo'

1
src/views/system/RoleUserList.vue

@ -56,6 +56,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{y:460}"
:rowSelection="{selectedRowKeys: selectedRowKeys1, onChange: onSelectChange1, type:'radio'}"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">

2
src/views/system/modules/AddressListRight.vue

@ -36,7 +36,7 @@
:columns="columns"
:dataSource="dataSource"
:loading="loading"
:scroll="{x: false, y: 460 }"
:scroll="{y: 460 }"
@change="handleTableChange">
</a-table>

2
src/views/waste/ProcessWasteListCable.vue

@ -73,7 +73,7 @@
<a-table
ref="table"
size="middle"
:scroll="{y:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"

2
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -190,6 +190,7 @@
created() {
this.getSuperFieldList();
this.initDictConfig();
console.log()
},
computed: {
importExcelUrl: function(){
@ -198,6 +199,7 @@
},
methods: {
handleDetail(record){
console.log("1111111111111111111111111111111111")
console.log(record);
this.$router.push({
// name:'src-views-wastematerials-ProcessWasteMaterialsLists',

6
src/views/wastematerials/ProcessWasteMaterialsLists.vue

@ -336,9 +336,11 @@
this.createProductTime = [],
this.createInnerTime = [],
this.queryParam = {
descriptionId: this.$route.query.descriptionId,
del_flag: 0
merchandiseNewsId: this.$route.query.merchandiseNewsId,
materialStorageId: this.$route.query.materialStorageId,
del_flag: 0
},
console.log(this.queryParam)
getAction(this.url.list,this.queryParam).then((res)=>{
if(res.success){
// console.log("resultsearch ")

Loading…
Cancel
Save