jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Loading/index.sjs

16 lines
388 B
Plaintext
Raw Normal View History

2024-11-10 07:01:22 +00:00
function getLoadingColor(color) {
if (typeof color === 'string' && color[0] === '#') {
2024-12-01 11:56:54 +00:00
return color.slice(1);
2024-11-10 07:01:22 +00:00
}
}
function getClass(size) {
2024-12-01 11:56:54 +00:00
var list = ['small', 'medium', 'large', 'x-large'];
if (list.indexOf(size) >= 0) {
return "ant-loading-".concat(size);
2024-11-10 07:01:22 +00:00
}
return 'ant-loading-medium';
}
export default {
2024-12-01 11:56:54 +00:00
getLoadingColor: getLoadingColor,
getClass: getClass
};