1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| "use strict";
| const uni_modules_uviewPlus_libs_config_config = require("../../libs/config/config.js");
| const {
| color
| } = uni_modules_uviewPlus_libs_config_config.config;
| const LoadingIcon = {
| // loading-icon加载中图标组件
| loadingIcon: {
| show: true,
| color: color["u-tips-color"],
| textColor: color["u-tips-color"],
| vertical: false,
| mode: "spinner",
| size: 24,
| textSize: 15,
| text: "",
| timingFunction: "ease-in-out",
| duration: 1200,
| inactiveColor: ""
| }
| };
| exports.LoadingIcon = LoadingIcon;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-loading-icon/loadingIcon.js.map
|
|