parent
46c2f0726e
commit
7f9e0e1159
@ -0,0 +1,35 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
export function exportHtml(key) {
|
||||||
|
return request({
|
||||||
|
url: '/monitor/db-doc/export-html',
|
||||||
|
method: 'get',
|
||||||
|
responseType: 'blob',
|
||||||
|
params:key
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function exportWord(key) {
|
||||||
|
return request({
|
||||||
|
url: '/monitor/db-doc/export-word',
|
||||||
|
method: 'get',
|
||||||
|
responseType: 'blob',
|
||||||
|
params:key
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function exportMarkdown(key) {
|
||||||
|
return request({
|
||||||
|
url: '/monitor/db-doc/export-markdown',
|
||||||
|
method: 'get',
|
||||||
|
responseType: 'blob',
|
||||||
|
params:key
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getDataSource() {
|
||||||
|
return request({
|
||||||
|
url: '/monitor/db-doc/getDataSource',
|
||||||
|
method: 'get',
|
||||||
|
})
|
||||||
|
}
|
@ -1,38 +1,77 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import { Message } from 'element-ui'
|
import { Message } from 'element-ui'
|
||||||
import { saveAs } from 'file-saver'
|
import { saveAs } from 'file-saver'
|
||||||
import { getToken } from '@/utils/auth'
|
import { getToken } from '@/utils/auth'
|
||||||
import errorCode from '@/utils/errorCode'
|
import errorCode from '@/utils/errorCode'
|
||||||
import { blobValidate } from "@/utils/ruoyi";
|
import { blobValidate } from "@/utils/ruoyi";
|
||||||
|
|
||||||
const baseURL = process.env.VUE_APP_BASE_API
|
const baseURL = process.env.VUE_APP_BASE_API
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
zip(url, name) {
|
zip(url, name) {
|
||||||
var url = baseURL + url
|
var url = baseURL + url
|
||||||
axios({
|
axios({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
url: url,
|
url: url,
|
||||||
responseType: 'blob',
|
responseType: 'blob',
|
||||||
headers: { 'Authorization': 'Bearer ' + getToken() }
|
headers: { 'Authorization': 'Bearer ' + getToken() }
|
||||||
}).then(async (res) => {
|
}).then(async (res) => {
|
||||||
const isLogin = await blobValidate(res.data);
|
const isLogin = await blobValidate(res.data);
|
||||||
if (isLogin) {
|
if (isLogin) {
|
||||||
const blob = new Blob([res.data], { type: 'application/zip' })
|
const blob = new Blob([res.data], { type: 'application/zip' })
|
||||||
this.saveAs(blob, name)
|
this.saveAs(blob, name)
|
||||||
} else {
|
} else {
|
||||||
this.printErrMsg(res.data);
|
this.printErrMsg(res.data);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
saveAs(text, name, opts) {
|
saveAs(text, name, opts) {
|
||||||
saveAs(text, name, opts);
|
saveAs(text, name, opts);
|
||||||
},
|
},
|
||||||
async printErrMsg(data) {
|
async printErrMsg(data) {
|
||||||
const resText = await data.text();
|
const resText = await data.text();
|
||||||
const rspObj = JSON.parse(resText);
|
const rspObj = JSON.parse(resText);
|
||||||
const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']
|
const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']
|
||||||
Message.error(errMsg);
|
Message.error(errMsg);
|
||||||
}
|
},
|
||||||
}
|
|
||||||
|
// 下载 Excel 方法
|
||||||
|
excel(data, fileName) {
|
||||||
|
this.download0(data, fileName, 'application/vnd.ms-excel');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 下载 Word 方法
|
||||||
|
word(data, fileName) {
|
||||||
|
this.download0(data, fileName, 'application/msword');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 下载 Zip 方法
|
||||||
|
/*zip(data, fileName) {
|
||||||
|
this.download0(data, fileName, 'application/zip');
|
||||||
|
},*/
|
||||||
|
|
||||||
|
// 下载 Html 方法
|
||||||
|
html(data, fileName) {
|
||||||
|
this.download0(data, fileName, 'text/html');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 下载 Markdown 方法
|
||||||
|
markdown(data, fileName) {
|
||||||
|
this.download0(data, fileName, 'text/markdown');
|
||||||
|
},
|
||||||
|
|
||||||
|
download0(data, fileName, mineType) {
|
||||||
|
// 创建 blob
|
||||||
|
let blob = new Blob([data], {type: mineType});
|
||||||
|
// 创建 href 超链接,点击进行下载
|
||||||
|
window.URL = window.URL || window.webkitURL;
|
||||||
|
let href = URL.createObjectURL(blob);
|
||||||
|
let downA = document.createElement("a");
|
||||||
|
downA.href = href;
|
||||||
|
downA.download = fileName;
|
||||||
|
downA.click();
|
||||||
|
// 销毁超连接
|
||||||
|
window.URL.revokeObjectURL(href);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -1,138 +1,140 @@
|
|||||||
import auth from '@/plugins/auth'
|
import auth from '@/plugins/auth'
|
||||||
import router, { constantRoutes, dynamicRoutes } from '@/router'
|
import router, {constantRoutes, dynamicRoutes} from '@/router'
|
||||||
import { getRouters } from '@/api/menu'
|
import {getRouters} from '@/api/menu'
|
||||||
import Layout from '@/layout/index'
|
import Layout from '@/layout/index'
|
||||||
import ParentView from '@/components/ParentView'
|
import ParentView from '@/components/ParentView'
|
||||||
import InnerLink from '@/layout/components/InnerLink'
|
import InnerLink from '@/layout/components/InnerLink'
|
||||||
|
|
||||||
const permission = {
|
const permission = {
|
||||||
state: {
|
state: {
|
||||||
routes: [],
|
routes: [],
|
||||||
addRoutes: [],
|
addRoutes: [],
|
||||||
defaultRoutes: [],
|
defaultRoutes: [],
|
||||||
topbarRouters: [],
|
topbarRouters: [],
|
||||||
sidebarRouters: []
|
sidebarRouters: []
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
SET_ROUTES: (state, routes) => {
|
SET_ROUTES: (state, routes) => {
|
||||||
state.addRoutes = routes
|
state.addRoutes = routes
|
||||||
state.routes = constantRoutes.concat(routes)
|
state.routes = constantRoutes.concat(routes)
|
||||||
},
|
},
|
||||||
SET_DEFAULT_ROUTES: (state, routes) => {
|
SET_DEFAULT_ROUTES: (state, routes) => {
|
||||||
state.defaultRoutes = constantRoutes.concat(routes)
|
state.defaultRoutes = constantRoutes.concat(routes)
|
||||||
},
|
},
|
||||||
SET_TOPBAR_ROUTES: (state, routes) => {
|
SET_TOPBAR_ROUTES: (state, routes) => {
|
||||||
// 顶部导航菜单默认添加统计报表栏指向首页
|
// 顶部导航菜单默认添加统计报表栏指向首页
|
||||||
const index = [{
|
const index = [
|
||||||
path: 'index',
|
/*{
|
||||||
meta: { title: '统计报表', icon: 'dashboard' }
|
path: 'index',
|
||||||
}]
|
meta: {title: '统计报表', icon: 'dashboard'}
|
||||||
state.topbarRouters = routes.concat(index);
|
}*/
|
||||||
},
|
]
|
||||||
SET_SIDEBAR_ROUTERS: (state, routes) => {
|
state.topbarRouters = routes.concat(index);
|
||||||
state.sidebarRouters = routes
|
},
|
||||||
},
|
SET_SIDEBAR_ROUTERS: (state, routes) => {
|
||||||
},
|
state.sidebarRouters = routes
|
||||||
actions: {
|
},
|
||||||
// 生成路由
|
},
|
||||||
GenerateRoutes({ commit }) {
|
actions: {
|
||||||
return new Promise(resolve => {
|
// 生成路由
|
||||||
// 向后端请求路由数据
|
GenerateRoutes({commit}) {
|
||||||
getRouters().then(res => {
|
return new Promise(resolve => {
|
||||||
const sdata = JSON.parse(JSON.stringify(res.data))
|
// 向后端请求路由数据
|
||||||
const rdata = JSON.parse(JSON.stringify(res.data))
|
getRouters().then(res => {
|
||||||
const sidebarRoutes = filterAsyncRouter(sdata)
|
const sdata = JSON.parse(JSON.stringify(res.data))
|
||||||
const rewriteRoutes = filterAsyncRouter(rdata, false, true)
|
const rdata = JSON.parse(JSON.stringify(res.data))
|
||||||
const asyncRoutes = filterDynamicRoutes(dynamicRoutes);
|
const sidebarRoutes = filterAsyncRouter(sdata)
|
||||||
rewriteRoutes.push({ path: '*', redirect: '/404', hidden: true })
|
const rewriteRoutes = filterAsyncRouter(rdata, false, true)
|
||||||
router.addRoutes(asyncRoutes);
|
const asyncRoutes = filterDynamicRoutes(dynamicRoutes);
|
||||||
commit('SET_ROUTES', rewriteRoutes)
|
rewriteRoutes.push({path: '*', redirect: '/404', hidden: true})
|
||||||
commit('SET_SIDEBAR_ROUTERS', constantRoutes.concat(sidebarRoutes))
|
router.addRoutes(asyncRoutes);
|
||||||
commit('SET_DEFAULT_ROUTES', sidebarRoutes)
|
commit('SET_ROUTES', rewriteRoutes)
|
||||||
commit('SET_TOPBAR_ROUTES', sidebarRoutes)
|
commit('SET_SIDEBAR_ROUTERS', constantRoutes.concat(sidebarRoutes))
|
||||||
resolve(rewriteRoutes)
|
commit('SET_DEFAULT_ROUTES', sidebarRoutes)
|
||||||
})
|
commit('SET_TOPBAR_ROUTES', sidebarRoutes)
|
||||||
})
|
resolve(rewriteRoutes)
|
||||||
}
|
})
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// 遍历后台传来的路由字符串,转换为组件对象
|
}
|
||||||
function filterAsyncRouter(asyncRouterMap, lastRouter = false, type = false) {
|
|
||||||
return asyncRouterMap.filter(route => {
|
// 遍历后台传来的路由字符串,转换为组件对象
|
||||||
if (type && route.children) {
|
function filterAsyncRouter(asyncRouterMap, lastRouter = false, type = false) {
|
||||||
route.children = filterChildren(route.children)
|
return asyncRouterMap.filter(route => {
|
||||||
}
|
if (type && route.children) {
|
||||||
if (route.component) {
|
route.children = filterChildren(route.children)
|
||||||
// Layout ParentView 组件特殊处理
|
}
|
||||||
if (route.component === 'Layout') {
|
if (route.component) {
|
||||||
route.component = Layout
|
// Layout ParentView 组件特殊处理
|
||||||
} else if (route.component === 'ParentView') {
|
if (route.component === 'Layout') {
|
||||||
route.component = ParentView
|
route.component = Layout
|
||||||
} else if (route.component === 'InnerLink') {
|
} else if (route.component === 'ParentView') {
|
||||||
route.component = InnerLink
|
route.component = ParentView
|
||||||
} else {
|
} else if (route.component === 'InnerLink') {
|
||||||
route.component = loadView(route.component)
|
route.component = InnerLink
|
||||||
}
|
} else {
|
||||||
}
|
route.component = loadView(route.component)
|
||||||
if (route.children != null && route.children && route.children.length) {
|
}
|
||||||
route.children = filterAsyncRouter(route.children, route, type)
|
}
|
||||||
} else {
|
if (route.children != null && route.children && route.children.length) {
|
||||||
delete route['children']
|
route.children = filterAsyncRouter(route.children, route, type)
|
||||||
delete route['redirect']
|
} else {
|
||||||
}
|
delete route['children']
|
||||||
return true
|
delete route['redirect']
|
||||||
})
|
}
|
||||||
}
|
return true
|
||||||
|
})
|
||||||
function filterChildren(childrenMap, lastRouter = false) {
|
}
|
||||||
var children = []
|
|
||||||
childrenMap.forEach((el, index) => {
|
function filterChildren(childrenMap, lastRouter = false) {
|
||||||
if (el.children && el.children.length) {
|
var children = []
|
||||||
if (el.component === 'ParentView' && !lastRouter) {
|
childrenMap.forEach((el, index) => {
|
||||||
el.children.forEach(c => {
|
if (el.children && el.children.length) {
|
||||||
c.path = el.path + '/' + c.path
|
if (el.component === 'ParentView' && !lastRouter) {
|
||||||
if (c.children && c.children.length) {
|
el.children.forEach(c => {
|
||||||
children = children.concat(filterChildren(c.children, c))
|
c.path = el.path + '/' + c.path
|
||||||
return
|
if (c.children && c.children.length) {
|
||||||
}
|
children = children.concat(filterChildren(c.children, c))
|
||||||
children.push(c)
|
return
|
||||||
})
|
}
|
||||||
return
|
children.push(c)
|
||||||
}
|
})
|
||||||
}
|
return
|
||||||
if (lastRouter) {
|
}
|
||||||
el.path = lastRouter.path + '/' + el.path
|
}
|
||||||
}
|
if (lastRouter) {
|
||||||
children = children.concat(el)
|
el.path = lastRouter.path + '/' + el.path
|
||||||
})
|
}
|
||||||
return children
|
children = children.concat(el)
|
||||||
}
|
})
|
||||||
|
return children
|
||||||
// 动态路由遍历,验证是否具备权限
|
}
|
||||||
export function filterDynamicRoutes(routes) {
|
|
||||||
const res = []
|
// 动态路由遍历,验证是否具备权限
|
||||||
routes.forEach(route => {
|
export function filterDynamicRoutes(routes) {
|
||||||
if (route.permissions) {
|
const res = []
|
||||||
if (auth.hasPermiOr(route.permissions)) {
|
routes.forEach(route => {
|
||||||
res.push(route)
|
if (route.permissions) {
|
||||||
}
|
if (auth.hasPermiOr(route.permissions)) {
|
||||||
} else if (route.roles) {
|
res.push(route)
|
||||||
if (auth.hasRoleOr(route.roles)) {
|
}
|
||||||
res.push(route)
|
} else if (route.roles) {
|
||||||
}
|
if (auth.hasRoleOr(route.roles)) {
|
||||||
}
|
res.push(route)
|
||||||
})
|
}
|
||||||
return res
|
}
|
||||||
}
|
})
|
||||||
|
return res
|
||||||
export const loadView = (view) => {
|
}
|
||||||
if (process.env.NODE_ENV === 'development') {
|
|
||||||
return (resolve) => require([`@/views/${view}`], resolve)
|
export const loadView = (view) => {
|
||||||
} else {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// 使用 import 实现生产环境的路由懒加载
|
return (resolve) => require([`@/views/${view}`], resolve)
|
||||||
return () => import(`@/views/${view}`)
|
} else {
|
||||||
}
|
// 使用 import 实现生产环境的路由懒加载
|
||||||
}
|
return () => import(`@/views/${view}`)
|
||||||
|
}
|
||||||
export default permission
|
}
|
||||||
|
|
||||||
|
export default permission
|
||||||
|
Loading…
Reference in new issue