摘要: const equals = (a,b) =>{ if(a b) return true; if(a instanceof Date && b instanceof Date){ return a.getTime() b.getTime() } if(!a || !b || (typeof a != 阅读全文
posted @ 2023-02-21 17:13 zeal666 阅读(162) 评论(0) 推荐(0)
摘要: convertCurrency(money) { //汉字的数字 const cnNums = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']; //基本单位 const cnIntRadice = ['', '拾', '佰', '仟']; // 阅读全文
posted @ 2023-02-21 13:43 zeal666 阅读(47) 评论(0) 推荐(0)
摘要: <template> <a-input-number v-model:value="numberValue" :placeholder="placeholder" :style="{ width: width }" v-bind="$attrs" :onFocus="inputFocus" :onB 阅读全文
posted @ 2023-02-21 10:47 zeal666 阅读(27) 评论(0) 推荐(0)