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

16 lines
388 B
Plaintext
Raw Normal View History

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