stellar-ui-plus 1.24.22 → 1.24.23
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.
|
@@ -6,6 +6,7 @@ export interface AppUpdateProps {
|
|
|
6
6
|
appType: string;
|
|
7
7
|
btnText: string;
|
|
8
8
|
appVersion: string;
|
|
9
|
+
zIndex: number;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
export default {
|
|
@@ -58,5 +59,12 @@ export default {
|
|
|
58
59
|
validator: (value: string) => {
|
|
59
60
|
return typeof value === 'string';
|
|
60
61
|
}
|
|
62
|
+
},
|
|
63
|
+
zIndex: {
|
|
64
|
+
type: [Number, String],
|
|
65
|
+
default: () => 998,
|
|
66
|
+
validator: (value: any) => {
|
|
67
|
+
return typeof value === 'number' || typeof value === 'string'
|
|
68
|
+
}
|
|
61
69
|
}
|
|
62
70
|
} satisfies Record<keyof AppUpdateProps, any>;
|
|
@@ -345,7 +345,7 @@ defineExpose({
|
|
|
345
345
|
</script>
|
|
346
346
|
|
|
347
347
|
<template>
|
|
348
|
-
<view class="update-mask flex-center" v-if="open">
|
|
348
|
+
<view class="update-mask flex-center" :style="{ zIndex }" v-if="open">
|
|
349
349
|
<view class="update-content">
|
|
350
350
|
<image class="update-image" src="../../static/app_update_img.png"></image>
|
|
351
351
|
|
|
@@ -408,7 +408,7 @@ defineExpose({
|
|
|
408
408
|
right: 0;
|
|
409
409
|
bottom: 0;
|
|
410
410
|
background-color: rgba(0, 0, 0, 0.5);
|
|
411
|
-
z-index:
|
|
411
|
+
z-index: 998;
|
|
412
412
|
|
|
413
413
|
.update-content {
|
|
414
414
|
width: 694rpx;
|