Former-commit-id: 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 209999b1c78ca63880406cb2b633c3560aae0eba [formerly 54edc3b4bd966e2496564198d59ff84fe9ba0b25]]]]]
Former-commit-id: ad91a7092b963def0579ecc2011e578e87a8ecd5
Former-commit-id: fb96644ac016362df708618fafef872b7bc2567c
Former-commit-id: 257c0b84b8069b3ccb8ddc53e965a974fca01189 [formerly 6954456a39b73136a14f80b0747aea90a694c9a5]
Former-commit-id: 99c7481e576afeac70fff4effa7e57f6b17cb79d
Former-commit-id: cfddcdd7f760c61e4abe02159a75d484ad6c6e63
Former-commit-id: 06d4e8cf94bd8c24fa167d77f843c93541afb5e6
Former-commit-id: ef6879d28d953c827184c4d5caa6c7fef6b2326f
Former-commit-id: 1f1114b417621402ec7d9d3540b305563fb140ec
This commit is contained in:
liyang
2018-08-10 13:49:54 +08:00
parent 0453ab7f36
commit 551aa111a1
10 changed files with 424 additions and 32 deletions

View File

@@ -100,8 +100,8 @@
<div style="height: 300px; overflow: auto;">
<tree-view
class="tree-view-small"
:data="pageOpenedList"
:options="{ rootObjectKey: 'pageOpenedList', maxDepth: 1 }"/>
:data="pageopened"
:options="{ rootObjectKey: 'pageopened', maxDepth: 1 }"/>
</div>
</el-card>
</el-col>
@@ -149,15 +149,14 @@ export default {
// 全屏
fullscreenActive: state => state.fullscreen.active,
// 灰度模式
grayActive: state => state.gray.active
grayActive: state => state.gray.active,
// tag 池
pagePool: state => state.page.pool,
pageCurrent: state => state.page.current,
pageopened: state => state.page.opened
}),
...mapState('d2admin', [
'pagePool',
'pageOpenedList',
'pageCurrent'
]),
...mapGetters('d2admin', {
keepAliveInclude: 'keepAliveInclude',
keepAliveInclude: 'page/keepAliveInclude',
themeActiveSetting: 'theme/activeSetting'
})
}