Skip to content

Commit aeeabc7

Browse files
author
uni@uni-macmini.local
committed
chore(dev): update framework #0
1 parent 75f01d7 commit aeeabc7

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

packages/uni-h5/dist-x/uni-h5.es.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29768,7 +29768,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2976829768
const failEventName = ref("");
2976929769
const title = ref("");
2977029770
const showAnim = ref(false);
29771-
const iosSnow = ref(false);
29771+
const iosSpinner = ref(false);
2977229772
onReady(() => {
2977329773
setTimeout(() => {
2977429774
showAnim.value = true;
@@ -29783,8 +29783,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2978329783
if (data["title"] != null) {
2978429784
title.value = data["title"];
2978529785
}
29786-
if (data["iosSnow"] != null) {
29787-
iosSnow.value = data["iosSnow"];
29786+
if (data["iosSpinner"] != null) {
29787+
iosSpinner.value = data["iosSpinner"];
2978829788
}
2978929789
});
2979029790
uni.$emit(readyEventName.value, {});
@@ -29810,8 +29810,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2981029810
default: withCtx(() => [
2981129811
createVNode(_component_loading, {
2981229812
class: "uni-loading_dialog__container__loading",
29813-
"ios-snow": iosSnow.value
29814-
}, null, 8, ["ios-snow"]),
29813+
"ios-spinner": iosSpinner.value
29814+
}, null, 8, ["ios-spinner"]),
2981529815
title.value ? (openBlock(), createBlock(_component_text, {
2981629816
key: 0,
2981729817
class: "uni-loading_dialog__container__title",

uni-ext-api/uni_modules/uni-showLoading/pages/showLoading/showLoading.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<view class="uni-loading_dialog__container"
55
:class="{'uni-loading_dialog__show': showAnim}">
6-
<loading class="uni-loading_dialog__container__loading" :ios-snow="iosSnow" />
6+
<loading class="uni-loading_dialog__container__loading" :ios-spinner="iosSpinner" />
77
<text class="uni-loading_dialog__container__title" max-lines="1" v-if="title" >{{title}}</text>
88
</view>
99
</view>
@@ -18,7 +18,7 @@
1818
const failEventName: Ref<string> = ref('')
1919
const title: Ref<string> = ref('')
2020
const showAnim: Ref<boolean> = ref(false)
21-
const iosSnow: Ref<boolean> = ref(false)
21+
const iosSpinner: Ref<boolean> = ref(false)
2222
2323
onReady(() => {
2424
setTimeout(() => {
@@ -36,8 +36,8 @@
3636
if (data['title'] != null) {
3737
title.value = data['title'] as string
3838
}
39-
if (data['iosSnow'] != null) {
40-
iosSnow.value = data['iosSnow'] as boolean
39+
if (data['iosSpinner'] != null) {
40+
iosSpinner.value = data['iosSpinner'] as boolean
4141
}
4242
})
4343

uni-ext-api/uni_modules/uni-showLoading/utssdk/interface.uts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export type ShowLoadingOptions = {
181181
}
182182
}
183183
*/
184-
iosSnow?: boolean | null,
184+
iosSpinner?: boolean | null,
185185
/**
186186
* 接口调用成功的回调函数
187187
*/

0 commit comments

Comments
 (0)