stellar-ui-v2 1.40.22 → 1.40.24
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.
|
@@ -45,14 +45,15 @@ export default {
|
|
|
45
45
|
### API
|
|
46
46
|
|
|
47
47
|
#### Props
|
|
48
|
-
| 属性名
|
|
49
|
-
| -----
|
|
50
|
-
| `clientId`
|
|
51
|
-
| `clientSecret
|
|
52
|
-
| `apiUrl`
|
|
53
|
-
| `appType`
|
|
54
|
-
| `btnText`
|
|
55
|
-
| `appVersion`
|
|
48
|
+
| 属性名 | 说明 | 类型 | 默认值 | 可选值 | 支持版本 |
|
|
49
|
+
| ----- | ----- | --- | ------- | ------| --------|
|
|
50
|
+
| `clientId` | 应用编码 | `string` | - | - | - |
|
|
51
|
+
| `clientSecret`| 应用密钥 | `string` | - | - | - |
|
|
52
|
+
| `apiUrl` | 更新API地址 | `string` | `https://zboa.whzb.com/inte-cloud-dev/blade-system/api/inte/client/ver/currentDetail` | - | - |
|
|
53
|
+
| `appType` | APP环境,版本号的最后一位为环境标识 | `string` | - | - | - |
|
|
54
|
+
| `btnText` | 立即体验按钮文本 | `string` | `立即体验` | - | - |
|
|
55
|
+
| `appVersion` | 应用当前版本 | `string` | - | - | `1.40.9`|
|
|
56
|
+
| `zIndex` | 弹窗层级 | `string/number` | `998` | - | `1.40.9`|
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
#### Events
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<view class="update-mask flex-center" v-if="open">
|
|
2
|
+
<view class="update-mask flex-center" :style="{ zIndex }" v-if="open">
|
|
3
3
|
<view class="update-content">
|
|
4
4
|
<image class="update-image" src="https://image.whzb.com/chain/StellarUI/font/app_update_img.png"></image>
|
|
5
5
|
|
|
@@ -61,6 +61,10 @@ export default {
|
|
|
61
61
|
appVersion: {
|
|
62
62
|
type: String,
|
|
63
63
|
},
|
|
64
|
+
zIndex: {
|
|
65
|
+
type: [String, Number],
|
|
66
|
+
default: () => 998,
|
|
67
|
+
},
|
|
64
68
|
},
|
|
65
69
|
data() {
|
|
66
70
|
return {
|
|
@@ -238,7 +242,7 @@ export default {
|
|
|
238
242
|
right: 0;
|
|
239
243
|
bottom: 0;
|
|
240
244
|
background-color: rgba(0, 0, 0, 0.5);
|
|
241
|
-
z-index:
|
|
245
|
+
z-index: 998;
|
|
242
246
|
.update-content {
|
|
243
247
|
width: 694rpx;
|
|
244
248
|
background-color: #fff;
|