WXL
14 小时以前 05c363fdd7ab04e3bd9a753e2c5d5bfff04d681c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"use strict";
const uni_modules_uviewPlus_libs_vue = require("../../libs/vue.js");
const uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
const props = uni_modules_uviewPlus_libs_vue.defineMixin({
  props: {
    // 提示内容
    loadingText: {
      type: [String, Number],
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.loadingText
    },
    // 文字上方用于替换loading动画的图片
    image: {
      type: String,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.image
    },
    // 加载动画的模式,circle-圆形,spinner-花朵形,semicircle-半圆形
    loadingMode: {
      type: String,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.loadingMode
    },
    // 是否加载中
    loading: {
      type: Boolean,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.loading
    },
    // 背景色
    bgColor: {
      type: String,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.bgColor
    },
    // 文字颜色
    color: {
      type: String,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.color
    },
    // 文字大小
    fontSize: {
      type: [String, Number],
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.fontSize
    },
    // 图标大小
    iconSize: {
      type: [String, Number],
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.fontSize
    },
    // 加载中图标的颜色,只能rgb或者十六进制颜色值
    loadingColor: {
      type: String,
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.loadingColor
    },
    // 层级
    zIndex: {
      type: [Number],
      default: () => uni_modules_uviewPlus_libs_config_props.props.loadingPage.zIndex
    }
  }
});
exports.props = props;
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-loading-page/props.js.map