12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { _ as _defineProperty } from './_commonjsHelpers-aeb41076.js';
-
- var IMAGE_PROCESS = '?x-oss-process=image/resize,h_350';
- var IMAGE_PROCESS_SMALL = '?x-oss-process=image/resize,h_100';
- var IMAGE_PROCESS_LARGE = '?x-oss-process=image/resize,h_500';
- function addImageProcess(url) {
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
- width: '36px',
- height: '36px'
- };
-
- // 防止重复添加导致的url不正确
- if (url && url.indexOf('x-oss-process') > -1) {
- return url;
- }
-
- if (options.small) {
- return url + IMAGE_PROCESS_SMALL;
- }
-
- if (options.large) {
- return url + IMAGE_PROCESS_LARGE;
- }
-
- if (options.custom) {
- return "".concat(url, "?x-oss-process=image/resize,limit_0,m_fill,w_").concat(options.width, ",h_").concat(options.height);
- }
-
- return url + IMAGE_PROCESS;
- }
- function formatMoney(input) {
- var fuzz = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2;
-
- if (isNaN(+input)) {
- return input;
- }
-
- return (+input).toFixed(fuzz);
- }
- function exportStyleSizeClass(styles, size) {
- return _defineProperty({}, styles[size], true);
- }
-
- export { addImageProcess as a, exportStyleSizeClass as e, formatMoney as f };
- //# sourceMappingURL=utils-82346768.js.map
|