diff --git a/src/utils/request.js b/src/utils/request.js index af1aaf744c6d74a57644306fa80d354d9074d12d..80e495ea21b4c7caa91110fcc74091050c955ca1 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -47,7 +47,11 @@ export default function request(url, options) { credentials: 'include', }; const newOptions = { ...defaultOptions, ...options }; - if (newOptions.method === 'POST' || newOptions.method === 'PUT' || newOptions.method === 'DELETE') { + if ( + newOptions.method === 'POST' || + newOptions.method === 'PUT' || + newOptions.method === 'DELETE' + ) { if (!(newOptions.body instanceof FormData)) { newOptions.headers = { Accept: 'application/json', diff --git a/src/utils/utils.js b/src/utils/utils.js index 5385e42f70a000035ac4c9912395f8870835cb27..68618150c81565f60d56c1df2b7c736956be67d1 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -74,15 +74,15 @@ function accMul(arg1, arg2) { let m = 0; const s1 = arg1.toString(); const s2 = arg2.toString(); - m += s1.split(".").length > 1 ? s1.split(".")[1].length : 0; - m += s2.split(".").length > 1 ? s2.split(".")[1].length : 0; - return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / 10 ** m; + m += s1.split('.').length > 1 ? s1.split('.')[1].length : 0; + m += s2.split('.').length > 1 ? s2.split('.')[1].length : 0; + return (Number(s1.replace('.', '')) * Number(s2.replace('.', ''))) / 10 ** m; } export function digitUppercase(n) { const fraction = ['角', '分']; const digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']; - const unit = [['元', '万', '亿'],['', '拾', '佰', '仟', '万']]; + const unit = [['元', '万', '亿'], ['', '拾', '佰', '仟', '万']]; let num = Math.abs(n); let s = ''; fraction.forEach((item, index) => {