@mptw/skylens-ui 1.5.12 → 1.5.13
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/app/app.vue
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template lang="pug">
|
|
2
2
|
.no-data(:class='{ "no-data--sm": size === "sm" }')
|
|
3
|
-
img(src="
|
|
3
|
+
img(src="@@uiAppImage/commons/empty-box.png")
|
|
4
4
|
.no-data-title {{ title }}
|
|
5
5
|
.no-data-reason(v-if='reason') 可能的原因:{{ reason }}
|
|
6
6
|
</template>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
.sidebar-wrapper
|
|
6
6
|
.sidebar-logo
|
|
7
7
|
a.logo(href="javascript:;" @click="onClickedLogo")
|
|
8
|
-
img.color-big(src="
|
|
9
|
-
img.white-big(src="
|
|
10
|
-
img.color-small(src='
|
|
11
|
-
img.white-small(src='
|
|
8
|
+
img.color-big(src="@@uiAppImage/commons/app-logo-big.svg", @load='onLogoLoaded')
|
|
9
|
+
img.white-big(src="@@uiAppImage/commons/app-logo-big-white.svg", @load='onLogoLoaded')
|
|
10
|
+
img.color-small(src='@@uiAppImage/commons/app-logo-small.svg', @load='onLogoLoaded')
|
|
11
|
+
img.white-small(src='@@uiAppImage/commons/app-logo-small-white.svg', @load='onLogoLoaded')
|
|
12
12
|
nav.site-nav
|
|
13
13
|
.nav-wrapper.custom-scrollbar-y
|
|
14
14
|
template(v-for='item in config')
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
div(v-if="loading", style="min-height: 200px")
|
|
91
91
|
slot(v-else name='noItems')
|
|
92
92
|
.flex.flex-col.items-center.py-8.px-4.space-y-3
|
|
93
|
-
img(src="
|
|
93
|
+
img(src="@@uiApp/commons/empty-box.png")
|
|
94
94
|
.text-lg.text-primary-600 {{ noItems }}
|
|
95
95
|
.text-sm.text-pgray-3(v-if="reason") 可能的原因:{{ reason }}
|
|
96
96
|
SLLoading(
|
package/nuxt.config.ts
CHANGED