hd-idevvue3 3.0.2 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/dist/assets/index.9c127719.css +1 -0
  2. package/dist/hd-idevvue3.mjs +3521 -3305
  3. package/dist/hd-idevvue3.umd.js +29 -29
  4. package/npminstall-debug.log +2 -10
  5. package/package.json +4 -2
  6. package/pnpm-lock.yaml +37 -4
  7. package/src/App.vue +11 -15
  8. package/src/assets/sound/notify.wav +0 -0
  9. package/src/demo/demo.vue +9 -10
  10. package/src/demo/dropdemo.vue +42 -43
  11. package/src/demo/extsets.vue +140 -39
  12. package/src/demo/formedit.vue +157 -145
  13. package/src/demo/hightquery.vue +263 -66
  14. package/src/demo/inlineedit.vue +129 -35
  15. package/src/demo/selfdrop.vue +32 -15
  16. package/src/directive/el-dragDialog/drag.js +13 -13
  17. package/src/directive/el-dragDialog/index.js +13 -13
  18. package/src/errorLog.js +3 -3
  19. package/src/hdcom/BigGrid.js +54 -48
  20. package/src/hdcom/BillShow.vue +84 -63
  21. package/src/hdcom/BillUpload.vue +144 -86
  22. package/src/hdcom/BtnRight.vue +26 -23
  23. package/src/hdcom/ErrHint.vue +36 -24
  24. package/src/hdcom/ExtendColumn.vue +97 -90
  25. package/src/hdcom/ExtendCommon.js +24 -13
  26. package/src/hdcom/ExtendForm.vue +107 -80
  27. package/src/hdcom/FacePicUpload.vue +59 -50
  28. package/src/hdcom/FaceRecTest.vue +87 -77
  29. package/src/hdcom/GridChart.vue +175 -162
  30. package/src/hdcom/GridExField.vue +328 -234
  31. package/src/hdcom/GridShow.vue +89 -39
  32. package/src/hdcom/HdAside.vue +192 -145
  33. package/src/hdcom/HdBtn.vue +44 -32
  34. package/src/hdcom/HdButton.vue +141 -117
  35. package/src/hdcom/HdComFaceRec.vue +80 -32
  36. package/src/hdcom/HdComGrid.vue +329 -229
  37. package/src/hdcom/HdComQuery.vue +179 -90
  38. package/src/hdcom/HdComQueryDetail.vue +159 -115
  39. package/src/hdcom/HdComSortDetail.vue +136 -130
  40. package/src/hdcom/HdDatePicker.vue +32 -16
  41. package/src/hdcom/HdDialog.vue +62 -44
  42. package/src/hdcom/HdDrop.vue +163 -138
  43. package/src/hdcom/HdFileUpload.vue +138 -119
  44. package/src/hdcom/HdFilterBox.vue +62 -62
  45. package/src/hdcom/HdFooter.vue +152 -119
  46. package/src/hdcom/HdForm.vue +276 -203
  47. package/src/hdcom/HdFormBtn.vue +81 -39
  48. package/src/hdcom/HdFormItem.vue +14 -10
  49. package/src/hdcom/HdGrid.vue +353 -156
  50. package/src/hdcom/HdGridEditBtn.vue +34 -20
  51. package/src/hdcom/HdGridExt.js +78 -47
  52. package/src/hdcom/HdGridSel.vue +227 -193
  53. package/src/hdcom/HdHeader.vue +149 -117
  54. package/src/hdcom/HdHotKey.vue +70 -67
  55. package/src/hdcom/HdInputHint.vue +40 -36
  56. package/src/hdcom/HdMain.vue +25 -27
  57. package/src/hdcom/HdMessage.vue +180 -171
  58. package/src/hdcom/HdNum.vue +67 -57
  59. package/src/hdcom/HdPopSel.vue +46 -24
  60. package/src/hdcom/HdRightMenu.vue +63 -61
  61. package/src/hdcom/HdSel/SelGridFieldcod.vue +46 -28
  62. package/src/hdcom/HdTableColumn.vue +156 -109
  63. package/src/hdcom/HdTempSave.vue +138 -116
  64. package/src/hdcom/HdTree.vue +89 -72
  65. package/src/hdcom/HdTreeTable/eval.js +8 -3
  66. package/src/hdcom/HdTreeTable/index.vue +229 -174
  67. package/src/hdcom/ImportExcel.vue +69 -34
  68. package/src/hdcom/index.js +39 -44
  69. package/src/idev.common.js +54 -47
  70. package/src/index.js +3 -6
  71. package/src/utils/HdQuery.js +25 -14
  72. package/src/utils/comutils.js +50 -28
  73. package/src/utils/gogocodeTransfer.js +59 -0
  74. package/src/utils/utils.js +30 -19
  75. package/src/vendor/Blob.js +187 -179
  76. package/src/vendor/Export2Excel.js +231 -220
  77. package/src/vendor/Export2Zip.js +25 -22
  78. package/src/views/layout/AppMain.vue +34 -32
  79. package/src/views/layout/HdLayout.vue +64 -52
  80. package/src/views/layout/header/ElasticSearch.vue +196 -159
  81. package/src/views/layout/header/HZRecorder.js +163 -135
  82. package/src/views/layout/header/HeaderSearch.vue +165 -145
  83. package/src/views/layout/header/Levelbar.vue +55 -49
  84. package/src/views/layout/header/MainHeader.vue +233 -189
  85. package/src/views/layout/header/Navbar.vue +74 -78
  86. package/src/views/layout/header/ScrollPane.vue +103 -81
  87. package/src/views/layout/header/TagsView.vue +169 -164
  88. package/src/views/layout/header/VocRec.vue +86 -78
  89. package/src/views/layout/header/changepswform.vue +98 -64
  90. package/src/views/layout/index.js +5 -7
  91. package/src/views/layout/menu/Hamburger.vue +63 -45
  92. package/src/views/layout/menu/HdMenu.vue +155 -118
  93. package/src/views/layout/menu/index.vue +21 -19
  94. package/src/views/privilege/commsg/commsg.vue +115 -41
  95. package/src/views/privilege/commsg/commsgOrgn.vue +40 -31
  96. package/src/views/privilege/commsg/commsgRole.vue +180 -109
  97. package/src/views/privilege/commsg/commsgform.vue +125 -101
  98. package/src/views/privilege/commsg/commsgiframe.vue +30 -23
  99. package/src/views/privilege/commsg/commsgto.vue +163 -84
  100. package/src/views/privilege/commsg/commsgtoform.vue +64 -58
  101. package/src/views/privilege/commsg/commsgtrans.vue +187 -115
  102. package/src/views/privilege/exfield/comexcolumn.vue +133 -43
  103. package/src/views/privilege/exfield/comexcolumnform.vue +85 -58
  104. package/src/views/privilege/exfield/comexfield.vue +15 -17
  105. package/src/views/privilege/exfield/comexfieldform.vue +71 -53
  106. package/src/views/privilege/exfield/comexfieldsub.vue +137 -46
  107. package/src/views/privilege/index.js +19 -20
  108. package/src/views/privilege/menu/comMenu.vue +49 -41
  109. package/src/views/privilege/menu/menu.vue +166 -49
  110. package/src/views/privilege/menu/menuinfo.vue +41 -34
  111. package/src/views/privilege/menu/rolelist.vue +78 -33
  112. package/src/views/privilege/menu/userlist.vue +76 -33
  113. package/src/views/privilege/mobile/authmobileupdate.vue +119 -43
  114. package/src/views/privilege/mobile/authmobileupdateform.vue +76 -46
  115. package/src/views/privilege/orgDept/authOrgn.vue +157 -65
  116. package/src/views/privilege/orgDept/authorgnform.vue +50 -38
  117. package/src/views/privilege/orgDept/orgDept.vue +38 -37
  118. package/src/views/privilege/orgDept/orgTree.vue +99 -88
  119. package/src/views/privilege/orgDept/orgnselect.vue +132 -111
  120. package/src/views/privilege/personDept/authuser.vue +197 -91
  121. package/src/views/privilege/personDept/authuserform.vue +123 -71
  122. package/src/views/privilege/personDept/facerec.vue +128 -83
  123. package/src/views/privilege/personDept/orgncascader.vue +134 -115
  124. package/src/views/privilege/personDept/personDept.vue +9 -7
  125. package/src/views/privilege/quartz/comquartzjob.vue +123 -38
  126. package/src/views/privilege/quartz/comquartzjobform.vue +67 -51
  127. package/src/views/privilege/quartz/comquartzlog.vue +116 -32
  128. package/src/views/privilege/role/btnRole.vue +123 -67
  129. package/src/views/privilege/role/menuRole.vue +65 -45
  130. package/src/views/privilege/role/orgnRole.vue +63 -41
  131. package/src/views/privilege/role/role.vue +26 -9
  132. package/src/views/privilege/role/rolelist.vue +114 -45
  133. package/src/views/privilege/role/roleselect.vue +34 -17
  134. package/src/views/privilege/search/comsearch.vue +164 -73
  135. package/src/views/privilege/search/menu.vue +38 -22
  136. package/src/views/privilege/syscode/syscode.vue +157 -69
  137. package/src/views/privilege/syscode/sysfield.vue +96 -43
  138. package/src/views/privilege/syscode/sysfieldframe.vue +30 -30
  139. package/src/views/privilege/syslog/menulog.vue +38 -22
  140. package/src/views/privilege/syslog/syslog.vue +145 -78
  141. package/src/views/privilege/syslog/syslogconfig.vue +91 -24
  142. package/src/views/privilege/syslog/syslogform.vue +45 -43
  143. package/src/views/privilege/syslog/syslogframe.vue +26 -26
  144. package/src/views/privilege/userRole/userRole.vue +187 -89
  145. package/vite.config.js +7 -0
  146. package/dist/assets/index.774ef40e.css +0 -1
  147. package/src/views/privilege.zip +0 -0
@@ -1,9 +1,16 @@
1
1
  <template>
2
- <div :class="{'show':show}" class="header-search">
3
- <svg @click="click" class="search-icon screenfull-svg" height="32" viewBox="-10 -10 150 150"
4
- width="32" xmlns="http://www.w3.org/2000/svg">
2
+ <div :class="{ show: show }" class="header-search">
3
+ <svg
4
+ @click="click"
5
+ class="search-icon screenfull-svg"
6
+ height="32"
7
+ viewBox="-10 -10 150 150"
8
+ width="32"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
5
11
  <path
6
- d="M124.884 109.812L94.256 79.166c-.357-.357-.757-.629-1.129-.914a50.366 50.366 0 0 0 8.186-27.59C101.327 22.689 78.656 0 50.67 0 22.685 0 0 22.688 0 50.663c0 27.989 22.685 50.663 50.656 50.663 10.186 0 19.643-3.03 27.6-8.201.286.385.557.771.9 1.114l30.628 30.632a10.633 10.633 0 0 0 7.543 3.129c2.728 0 5.457-1.043 7.543-3.115 4.171-4.157 4.171-10.915.014-15.073M50.671 85.338C31.557 85.338 16 69.78 16 50.663c0-19.102 15.557-34.661 34.67-34.661 19.115 0 34.657 15.559 34.657 34.675 0 19.102-15.557 34.661-34.656 34.661"/>
12
+ d="M124.884 109.812L94.256 79.166c-.357-.357-.757-.629-1.129-.914a50.366 50.366 0 0 0 8.186-27.59C101.327 22.689 78.656 0 50.67 0 22.685 0 0 22.688 0 50.663c0 27.989 22.685 50.663 50.656 50.663 10.186 0 19.643-3.03 27.6-8.201.286.385.557.771.9 1.114l30.628 30.632a10.633 10.633 0 0 0 7.543 3.129c2.728 0 5.457-1.043 7.543-3.115 4.171-4.157 4.171-10.915.014-15.073M50.671 85.338C31.557 85.338 16 69.78 16 50.663c0-19.102 15.557-34.661 34.67-34.661 19.115 0 34.657 15.559 34.657 34.675 0 19.102-15.557 34.661-34.656 34.661"
13
+ />
7
14
  </svg>
8
15
  <el-select
9
16
  :remote-method="querySearch"
@@ -16,183 +23,196 @@
16
23
  remote
17
24
  v-model="search"
18
25
  >
19
- <el-option :key="item.path" :label="item.title.join(' > ')" :value="item" v-for="item in options"/>
26
+ <el-option
27
+ :key="item.path"
28
+ :label="item.title.join(' > ')"
29
+ :value="item"
30
+ v-for="item in options"
31
+ />
20
32
  </el-select>
21
33
  </div>
22
34
  </template>
23
35
 
24
36
  <script>
25
- import Fuse from 'fuse.js'
26
- import path from 'path'
37
+ import Fuse from 'fuse.js'
38
+ import path from 'path'
27
39
 
28
- export default {
29
- name: 'HeaderSearch',
30
- data() {
31
- return {
32
- search: '',
33
- options: [],
34
- searchPool: [],
35
- show: false,
36
- fuse: undefined
37
- }
40
+ export default {
41
+ name: 'HeaderSearch',
42
+ data() {
43
+ return {
44
+ search: '',
45
+ options: [],
46
+ searchPool: [],
47
+ show: false,
48
+ fuse: undefined,
49
+ }
50
+ },
51
+ computed: {
52
+ routes() {
53
+ return this.$store.state.permission.hdMenu
54
+ },
55
+ lang() {
56
+ return this.$store.getters.language
57
+ },
58
+ },
59
+ watch: {
60
+ lang() {
61
+ this.searchPool = this.generateRoutes(this.routes)
62
+ },
63
+ routes() {
64
+ this.searchPool = this.generateRoutes(this.routes)
38
65
  },
39
- computed: {
40
- routes() {
41
- return this.$store.state.permission.hdMenu;
42
- },
43
- lang() {
44
- return this.$store.getters.language
66
+ searchPool(list) {
67
+ this.initFuse(list)
68
+ },
69
+ show(value) {
70
+ if (value) {
71
+ document.body.addEventListener('click', this.close)
72
+ } else {
73
+ document.body.removeEventListener('click', this.close)
45
74
  }
46
75
  },
47
- watch: {
48
- lang() {
49
- this.searchPool = this.generateRoutes(this.routes)
50
- },
51
- routes() {
52
- this.searchPool = this.generateRoutes(this.routes)
53
- },
54
- searchPool(list) {
55
- this.initFuse(list)
56
- },
57
- show(value) {
58
- if (value) {
59
- document.body.addEventListener('click', this.close)
60
- } else {
61
- document.body.removeEventListener('click', this.close)
62
- }
76
+ },
77
+ mounted() {
78
+ this.searchPool = this.generateRoutes(this.routes)
79
+ },
80
+ methods: {
81
+ click() {
82
+ this.show = !this.show
83
+ if (this.show) {
84
+ this.$refs.headerSearchSelect && this.$refs.headerSearchSelect.focus()
63
85
  }
64
86
  },
65
- mounted() {
66
- this.searchPool = this.generateRoutes(this.routes)
87
+ close() {
88
+ this.$refs.headerSearchSelect && this.$refs.headerSearchSelect.blur()
89
+ this.options = []
90
+ this.show = false
67
91
  },
68
- methods: {
69
- click() {
70
- this.show = !this.show
71
- if (this.show) {
72
- this.$refs.headerSearchSelect && this.$refs.headerSearchSelect.focus()
73
- }
74
- },
75
- close() {
76
- this.$refs.headerSearchSelect && this.$refs.headerSearchSelect.blur()
77
- this.options = []
92
+ change(val) {
93
+ this.$router.push(val.path)
94
+ this.search = ''
95
+ this.options = []
96
+ this.$nextTick(() => {
78
97
  this.show = false
79
- },
80
- change(val) {
81
- this.$router.push(val.path)
82
- this.search = ''
83
- this.options = []
84
- this.$nextTick(() => {
85
- this.show = false
86
- })
87
- },
88
- initFuse(list) {
89
- this.fuse = new Fuse(list, {
90
- shouldSort: true,
91
- threshold: 0.4,
92
- location: 0,
93
- distance: 100,
94
- maxPatternLength: 32,
95
- minMatchCharLength: 1,
96
- keys: [{
98
+ })
99
+ },
100
+ initFuse(list) {
101
+ this.fuse = new Fuse(list, {
102
+ shouldSort: true,
103
+ threshold: 0.4,
104
+ location: 0,
105
+ distance: 100,
106
+ maxPatternLength: 32,
107
+ minMatchCharLength: 1,
108
+ keys: [
109
+ {
97
110
  name: 'title',
98
- weight: 0.7
99
- }, {
111
+ weight: 0.7,
112
+ },
113
+ {
100
114
  name: 'path',
101
- weight: 0.3
102
- }]
103
- })
104
- },
105
- // Filter out the routes that can be displayed in the sidebar
106
- // And generate the internationalized title
107
- generateRoutes(routes, basePath = '/', prefixTitle = []) {
108
- let res = []
109
- for (const router of routes) {
110
- // skip hidden router
111
- if (router.hidden) {
112
- continue
113
- }
115
+ weight: 0.3,
116
+ },
117
+ ],
118
+ })
119
+ },
120
+ // Filter out the routes that can be displayed in the sidebar
121
+ // And generate the internationalized title
122
+ generateRoutes(routes, basePath = '/', prefixTitle = []) {
123
+ let res = []
124
+ for (const router of routes) {
125
+ // skip hidden router
126
+ if (router.hidden) {
127
+ continue
128
+ }
114
129
 
115
- const data = {
116
- path: path.resolve(basePath, router.path),
117
- title: [...prefixTitle]
118
- }
130
+ const data = {
131
+ path: path.resolve(basePath, router.path),
132
+ title: [...prefixTitle],
133
+ }
119
134
 
120
- if (router.meta && router.meta.title) {
121
- // generate internationalized title
122
- const i18ntitle = this.$i18n.locale == 'zh' ? router.meta.title : router.meta.enTitle;
135
+ if (router.meta && router.meta.title) {
136
+ // generate internationalized title
137
+ const i18ntitle =
138
+ this.$i18n.locale == 'zh' ? router.meta.title : router.meta.enTitle
123
139
 
124
- data.title = [...data.title, i18ntitle]
140
+ data.title = [...data.title, i18ntitle]
125
141
 
126
- if (router.redirect !== 'noredirect') {
127
- // only push the routes with title
128
- // special case: need to exclude parent router without redirect
129
- res.push(data)
130
- }
142
+ if (router.redirect !== 'noredirect') {
143
+ // only push the routes with title
144
+ // special case: need to exclude parent router without redirect
145
+ res.push(data)
131
146
  }
147
+ }
132
148
 
133
- // recursive child routes
134
- if (router.children) {
135
- const tempRoutes = this.generateRoutes(router.children, data.path, data.title)
136
- if (tempRoutes.length >= 1) {
137
- res = [...res, ...tempRoutes]
138
- }
149
+ // recursive child routes
150
+ if (router.children) {
151
+ const tempRoutes = this.generateRoutes(
152
+ router.children,
153
+ data.path,
154
+ data.title
155
+ )
156
+ if (tempRoutes.length >= 1) {
157
+ res = [...res, ...tempRoutes]
139
158
  }
140
159
  }
160
+ }
141
161
 
142
- return res
143
- },
144
- querySearch(query) {
145
- if (query !== '') {
146
- this.options = this.fuse.search(query)
147
- } else {
148
- this.options = []
149
- }
162
+ return res
163
+ },
164
+ querySearch(query) {
165
+ if (query !== '') {
166
+ this.options = this.fuse.search(query)
167
+ } else {
168
+ this.options = []
150
169
  }
151
- }
152
- }
170
+ },
171
+ },
172
+ }
153
173
  </script>
154
174
 
155
175
  <style lang="scss" scoped>
156
- .header-search {
157
- font-size: 0 !important;
176
+ .header-search {
177
+ font-size: 0 !important;
158
178
 
159
- .search-icon {
160
- font-size: 18px;
161
- vertical-align: middle;
162
- display: inline-block;
163
- cursor: pointer;
164
- fill: #e4e9ef;
165
- /* width: 20px;
179
+ .search-icon {
180
+ font-size: 18px;
181
+ vertical-align: middle;
182
+ display: inline-block;
183
+ cursor: pointer;
184
+ fill: #e4e9ef;
185
+ /* width: 20px;
166
186
  height: 20px;
167
187
  vertical-align: 10px;*/
168
- }
188
+ }
169
189
 
170
- .header-search-select {
171
- font-size: 18px;
172
- transition: width 0.2s;
173
- width: 0;
174
- overflow: hidden;
175
- background: transparent;
190
+ .header-search-select {
191
+ font-size: 18px;
192
+ transition: width 0.2s;
193
+ width: 0;
194
+ overflow: hidden;
195
+ background: transparent;
196
+ border-radius: 0;
197
+ display: inline-block;
198
+ vertical-align: middle;
199
+
200
+ :deep(.el-input__inner) {
176
201
  border-radius: 0;
177
- display: inline-block;
202
+ border: 0;
203
+ padding-left: 0;
204
+ padding-right: 0;
205
+ box-shadow: none !important;
206
+ border-bottom: 1px solid #d9d9d9;
178
207
  vertical-align: middle;
179
-
180
- :deep(.el-input__inner) {
181
- border-radius: 0;
182
- border: 0;
183
- padding-left: 0;
184
- padding-right: 0;
185
- box-shadow: none !important;
186
- border-bottom: 1px solid #d9d9d9;
187
- vertical-align: middle;
188
- }
189
208
  }
209
+ }
190
210
 
191
- &.show {
192
- .header-search-select {
193
- width: 150px;
194
- margin-left: 10px;
195
- }
211
+ &.show {
212
+ .header-search-select {
213
+ width: 150px;
214
+ margin-left: 10px;
196
215
  }
197
216
  }
217
+ }
198
218
  </style>
@@ -1,49 +1,55 @@
1
- <template>
2
- <el-breadcrumb class="app-levelbar" separator="/">
3
- <el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path">
4
- <span v-if='item.redirect==="noredirect"||index==levelList.length-1' class="no-redirect">{{item.name}}</span>
5
- <router-link v-else :to="item.redirect||item.path">{{item.name}}</router-link>
6
- </el-breadcrumb-item>
7
- </el-breadcrumb>
8
- </template>
9
-
10
- <script>
11
- export default {
12
- created() {
13
- this.getBreadcrumb()
14
- },
15
- data() {
16
- return {
17
- levelList: null
18
- }
19
- },
20
- methods: {
21
- getBreadcrumb() {
22
- let matched = this.$route.matched.filter(item => item.name)
23
- /* const first = matched[0]
24
- if (first && (first.name !== '首页' || first.path !== '')) {
25
- matched = [{ name: '首页', path: '/' }].concat(matched)
26
- }*/
27
- this.levelList = matched
28
- }
29
- },
30
- watch: {
31
- $route() {
32
- this.getBreadcrumb()
33
- }
34
- }
35
- }
36
- </script>
37
-
38
- <style rel="stylesheet/scss" lang="scss" scoped>
39
- .app-levelbar.el-breadcrumb {
40
- display: inline-block;
41
- font-size: 14px;
42
- line-height: 50px;
43
- margin-left: 10px;
44
- .no-redirect {
45
- color: #97a8be;
46
- cursor: text;
47
- }
48
- }
49
- </style>
1
+ <template>
2
+ <el-breadcrumb class="app-levelbar" separator="/">
3
+ <el-breadcrumb-item v-for="(item, index) in levelList" :key="item.path">
4
+ <span
5
+ v-if="item.redirect === 'noredirect' || index == levelList.length - 1"
6
+ class="no-redirect"
7
+ >{{ item.name }}</span
8
+ >
9
+ <router-link v-else :to="item.redirect || item.path">{{
10
+ item.name
11
+ }}</router-link>
12
+ </el-breadcrumb-item>
13
+ </el-breadcrumb>
14
+ </template>
15
+
16
+ <script>
17
+ export default {
18
+ created() {
19
+ this.getBreadcrumb()
20
+ },
21
+ data() {
22
+ return {
23
+ levelList: null,
24
+ }
25
+ },
26
+ methods: {
27
+ getBreadcrumb() {
28
+ let matched = this.$route.matched.filter((item) => item.name)
29
+ /* const first = matched[0]
30
+ if (first && (first.name !== '首页' || first.path !== '')) {
31
+ matched = [{ name: '首页', path: '/' }].concat(matched)
32
+ }*/
33
+ this.levelList = matched
34
+ },
35
+ },
36
+ watch: {
37
+ $route() {
38
+ this.getBreadcrumb()
39
+ },
40
+ },
41
+ }
42
+ </script>
43
+
44
+ <style lang="scss" rel="stylesheet/scss" scoped>
45
+ .app-levelbar.el-breadcrumb {
46
+ display: inline-block;
47
+ font-size: 14px;
48
+ line-height: 50px;
49
+ margin-left: 10px;
50
+ .no-redirect {
51
+ color: #97a8be;
52
+ cursor: text;
53
+ }
54
+ }
55
+ </style>