-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 新增 标签导航功能(tagsView) 动态路由(addRoutes) 重定向页面(redirect) - 修改 拆分store使用vuex的module模式 权限验证逻辑(permission.js) - 修复 表单格式传输多文件的时候,嵌套的对象数据不能转换问题(request.js)
- Loading branch information
Showing
27 changed files
with
734 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<template> | ||
<div id="app"> | ||
<app-view /> | ||
<app-pageView /> | ||
<vue-progress-bar /> | ||
</div> | ||
</template> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<template> | ||
<div id="navBar"> | ||
<div class="navBar-left"> | ||
<!-- 侧边栏伸缩按钮 --> | ||
<Cola class="left-item ishover" /> | ||
<!-- 面包屑 --> | ||
<breadcrumb class="left-item" /> | ||
</div> | ||
<div class="navBar-right"> | ||
<!-- 错误日志 --> | ||
<error-log class="right-item ishover" /> | ||
<!-- 用户选项 --> | ||
<user-select class="right-item ishover" /> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
import Cola from '@/components/Cola' | ||
import Breadcrumb from '@/components/Breadcrumb' | ||
import UserSelect from '@/components/UserSelect' | ||
import ErrorLog from '@/components/ErrorLog' | ||
export default { | ||
components: { | ||
Cola, | ||
Breadcrumb, | ||
UserSelect, | ||
ErrorLog | ||
} | ||
} | ||
</script> | ||
<style lang='stylus' scoped> | ||
#navBar { | ||
position: relative; | ||
width: 100%; | ||
height: 50px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
box-shadow: 0 1px 2px rgba(0, 21, 41, 0.08); | ||
.navBar-left { | ||
display: flex; | ||
align-items: center; | ||
height: 100%; | ||
} | ||
.navBar-right { | ||
display: flex; | ||
align-items: center; | ||
height: 100%; | ||
margin-right: 30px; | ||
} | ||
.left-item, .right-item { | ||
flex-center(); | ||
height: 100%; | ||
font-size: 18px; | ||
padding: 0 10px; | ||
cursor: pointer; | ||
>>> .item-container { | ||
flex-center(); | ||
height: 100%; | ||
} | ||
} | ||
} | ||
</style> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.