uni.showLoading(OBJECT)
显示 loading 提示框, 需主动调用 uni.hideLoading 才能关闭提示框。
参考文档https://uniapp.dcloud.io/api/ui/prompt?id=showmodal
一些参数说明:
test.vue例子
<template>
<button @click.stop="isLeave()">点击按钮</button>
</template>
<script>
export default {
data() {
return {};
},
onLoad() {},
methods: {
isLeave(id) {
uni.showLoading({
title: '加载中'
});
},
},
}
</script>
<style>