@@ -149,12 +149,13 @@ export default {
149149<template >
150150 <a-config-provider :locale =" locale" >
151151 <div class =" ds_layout" :class =" themeClass" >
152- <SearchBar ref="searchBar"
153- :root =" ' #document' "
154- :highlightClass =" ' search-bar-highlight' "
155- :selectedClass =" ' selected-highlight' "
156- :hiden .sync =" hideSearchBar "
157- style =" inset :auto auto 53px 210px ; background-color :#ddd "
152+ <SearchBar
153+ ref="searchBar"
154+ root="#document "
155+ highlight-class="search-bar-highlight"
156+ selected-class="selected-highlight"
157+ :hiden .sync =" hideSearchBar "
158+ style =" inset :auto auto 53px 210px ; background-color :#ddd "
158159 />
159160 <a-layout >
160161 <a-layout-sider :theme =" theme" style =" overflow-y : auto " >
@@ -187,9 +188,44 @@ export default {
187188 </a-layout-content >
188189 <a-layout-footer >
189190 <div class =" footer" >
190- 出厂自带配置id: {{ (info.configProfiles && info.configProfiles.internal && info.configProfiles.internal.id) || '-' }} 版本: {{ (info.configProfiles && info.configProfiles.internal && info.configProfiles.internal.version) || '-' }}<br >
191- 共享远程配置id: {{ (info.configProfiles && info.configProfiles.sharedRemote && info.configProfiles.sharedRemote.id) || '-' }} 版本: {{ (info.configProfiles && info.configProfiles.sharedRemote && info.configProfiles.sharedRemote.version) || '-' }}<br >
192- 个人远程配置id: {{ (info.configProfiles && info.configProfiles.personalRemote && info.configProfiles.personalRemote.id) || '-' }} 版本: {{ (info.configProfiles && info.configProfiles.personalRemote && info.configProfiles.personalRemote.version) || '-' }}<br >
191+ <table style =" margin : 0 auto " >
192+ <thead >
193+ <tr >
194+ <th >配置类型</th >
195+ <th >ID</th >
196+ <th >版本</th >
197+ </tr >
198+ </thead >
199+ <tr >
200+ <td >
201+ 出厂自带
202+ </td >
203+ <td >
204+ <code >{{ (info.configProfiles && info.configProfiles.internal && info.configProfiles.internal.id) || '-' }}</code >
205+ </td >
206+ <td >
207+ <code >{{ (info.configProfiles && info.configProfiles.internal && info.configProfiles.internal.version) || '-' }}</code >
208+ </td >
209+ </tr >
210+ <tr >
211+ <td >共享远程</td >
212+ <td >
213+ <code >{{ (info.configProfiles && info.configProfiles.sharedRemote && info.configProfiles.sharedRemote.id) || '-' }}</code >
214+ </td >
215+ <td >
216+ <code >{{ (info.configProfiles && info.configProfiles.sharedRemote && info.configProfiles.sharedRemote.version) || '-' }}</code >
217+ </td >
218+ </tr >
219+ <tr >
220+ <td >个人远程</td >
221+ <td >
222+ <code >{{ (info.configProfiles && info.configProfiles.personalRemote && info.configProfiles.personalRemote.id) || '-' }}</code >
223+ </td >
224+ <td >
225+ <code >{{ (info.configProfiles && info.configProfiles.personalRemote && info.configProfiles.personalRemote.version) || '-' }}</code >
226+ </td >
227+ </tr >
228+ </table >
193229 ©2020-2026 docmirror.cn by <a @click =" openExternal('https://github.com/greper')" >Greper</a >, <a @click =" openExternal('https://github.com/wangliang181230')" >WangLiang</a >, <a @click =" openExternal('https://github.com/cute-omega')" >CuteOmega</a > <span >{{ info.version }}</span >
194230 </div >
195231 </a-layout-footer >
0 commit comments