befly-admin 3.16.2 → 3.16.3
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.
- package/package.json +5 -5
- package/src/styles/global.scss +13 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "befly-admin",
|
|
3
|
-
"version": "3.16.
|
|
4
|
-
"gitHead": "
|
|
3
|
+
"version": "3.16.3",
|
|
4
|
+
"gitHead": "50fca5a7f581822abfdc886fcd77f2fce3db47ca",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Befly Admin - 基于 Vue3 + TDesign Vue Next 的后台管理系统",
|
|
7
7
|
"files": [
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"preview": "bunx --bun befly-vite preview"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"befly-admin-ui": "^1.9.
|
|
31
|
+
"befly-admin-ui": "^1.9.10",
|
|
32
32
|
"befly-shared": "^2.0.8",
|
|
33
|
-
"befly-vite": "^1.6.
|
|
33
|
+
"befly-vite": "^1.6.2",
|
|
34
34
|
"pinia": "^3.0.4",
|
|
35
35
|
"tdesign-icons-vue-next": "^0.4.4",
|
|
36
36
|
"tdesign-vue-next": "^1.19.2",
|
|
37
|
-
"vue": "^3.5.
|
|
37
|
+
"vue": "^3.5.34",
|
|
38
38
|
"vue-router": "^5.0.6"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
package/src/styles/global.scss
CHANGED
|
@@ -185,7 +185,7 @@ body {
|
|
|
185
185
|
left: 0;
|
|
186
186
|
top: calc(var(--search-height) + var(--layout-gap));
|
|
187
187
|
right: 0;
|
|
188
|
-
bottom:
|
|
188
|
+
bottom: 0;
|
|
189
189
|
display: flex;
|
|
190
190
|
|
|
191
191
|
// 表格区域
|
|
@@ -211,6 +211,12 @@ body {
|
|
|
211
211
|
cursor: pointer;
|
|
212
212
|
border-bottom: 1px solid var(--border-color-light) !important;
|
|
213
213
|
}
|
|
214
|
+
|
|
215
|
+
.table-image {
|
|
216
|
+
display: block;
|
|
217
|
+
width: 30px;
|
|
218
|
+
height: 30px;
|
|
219
|
+
}
|
|
214
220
|
}
|
|
215
221
|
|
|
216
222
|
.main-detail {
|
|
@@ -232,6 +238,12 @@ body {
|
|
|
232
238
|
}
|
|
233
239
|
}
|
|
234
240
|
|
|
241
|
+
&.page-table--with-pagination {
|
|
242
|
+
.main-content {
|
|
243
|
+
bottom: calc(var(--pagination-height) + var(--layout-gap));
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
// 分页栏 - 卡片样式
|
|
236
248
|
.main-page {
|
|
237
249
|
position: absolute;
|