1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import accounting from "accounting";
- const setIntervalImmediately = (fn, duration) =>
- setInterval((() => (fn(), fn))(), duration);
- function formatImgSrc(srcArr) {
- if (Array.isArray(srcArr) && srcArr.length > 0) {
- return srcArr[0] ?? "";
- }
- return "";
- }
- const isEmptyValue = (value) => {
- if (value == null) return true
- if (Array.isArray(value) && value.length === 0) return true
- if (typeof value === 'object' && Object.keys(value).length === 0) return true
- return false
- }
- const formatNumber = (n) => {
- let num = Number(n ?? '')
-
- if (num >= 10000 * 10000) {
- return '9999万+'
- }
-
- else if (num >= 10000) {
- let w = Math.floor(num / 10000)
- let remainder = num % 10000
-
- let decimalPart = ''
- if (remainder > 0) {
-
- decimalPart = ('.' + Math.floor(remainder / 100)).slice(0, 2)
-
- decimalPart = decimalPart.replace(/\.?0+$/, '')
- }
- return `${w}${decimalPart}万`
- }
-
- else {
- return accounting.formatNumber(num)
- }
- }
- export { setIntervalImmediately, formatImgSrc, formatNumber, isEmptyValue };
|