mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 02:59:48 +08:00
uniapp【优化】:页面loading 文字和icon调整为主题色红
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
</coreshop-page-content>
|
</coreshop-page-content>
|
||||||
<template v-if="props.needLoadingPage">
|
<template v-if="props.needLoadingPage">
|
||||||
<uv-loading-page :loading="props.loadingPage" :loading-text="props.loadingText"
|
<uv-loading-page :loading="props.loadingPage" :loading-text="props.loadingText"
|
||||||
:font-size="props.loadingTextFontSize" :bgColor="props.loadingBgColor"></uv-loading-page>
|
:font-size="props.loadingTextFontSize" :color="props.loadingColor" :loadingColor="loadingColor" :bgColor="props.loadingBgColor"></uv-loading-page>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -38,6 +38,7 @@
|
|||||||
loadingText : string;
|
loadingText : string;
|
||||||
loadingTextFontSize : string;
|
loadingTextFontSize : string;
|
||||||
loadingBgColor : string;
|
loadingBgColor : string;
|
||||||
|
loadingColor:string;
|
||||||
}>(), {
|
}>(), {
|
||||||
isBack: true,
|
isBack: true,
|
||||||
bgColor: '#eef2f6',
|
bgColor: '#eef2f6',
|
||||||
@@ -62,7 +63,8 @@
|
|||||||
needLoadingPage: false,
|
needLoadingPage: false,
|
||||||
loadingText: '加载中...',
|
loadingText: '加载中...',
|
||||||
loadingTextFontSize: '24rpx',
|
loadingTextFontSize: '24rpx',
|
||||||
loadingBgColor: 'rgba(255, 255, 255, 0.2)'
|
loadingBgColor: 'rgba(255, 255, 255, 0.2)',
|
||||||
|
loadingColor:'#d33123'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|||||||
@@ -100,7 +100,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<uv-loading-page :loading="loading" loading-text="加载中..." font-size="24rpx"
|
<uv-loading-page :loading="loading" loading-text="加载中..." color="#d33123" loadingColor="#d33123" font-size="24rpx"
|
||||||
bgColor="rgba(255, 255, 255, 0.2)"></uv-loading-page>
|
bgColor="rgba(255, 255, 255, 0.2)"></uv-loading-page>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -115,7 +115,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<uv-loading-page :loading="loading" loading-text="加载中..." font-size="24rpx"
|
<uv-loading-page :loading="loading" loading-text="加载中..." color="#d33123" loadingColor="#d33123" font-size="24rpx"
|
||||||
bgColor="rgba(255, 255, 255, 0.2)"></uv-loading-page>
|
bgColor="rgba(255, 255, 255, 0.2)"></uv-loading-page>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user