02 2023 档案
摘要:eruda是一个移动端调试得工具 const script = document.createElement('script') script.type = 'text/javascript' script.src = '//unpkg.zhimg.com/eruda' script.onload
阅读全文
摘要: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 !=
阅读全文
摘要:convertCurrency(money) { //汉字的数字 const cnNums = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']; //基本单位 const cnIntRadice = ['', '拾', '佰', '仟']; //
阅读全文
摘要:<template> <a-input-number v-model:value="numberValue" :placeholder="placeholder" :style="{ width: width }" v-bind="$attrs" :onFocus="inputFocus" :onB
阅读全文
摘要:<template> {{treeData}} <a-tree-select v-model:value="value" v-model:searchValue="searchValue" tree-data-simple-mode tree-checkable multiple style="wi
阅读全文