摘要: /** * @description: 对利率添加百分号 * @param {type} {1.2300000,4} * @return: 1.2300% */ function rateFormatter(param, num) { // 过滤掉% // 统一转化为字符串并去掉左右空格 为了避免异 阅读全文
posted @ 2020-07-25 22:11 沁猿春 阅读(385) 评论(0) 推荐(0) 编辑
摘要: /** * @desc 金额转换成大写 * @param {Number} n 需要转换成大写的金额 * @return {String} 转换后的大写中文金额 * @example convertIntegerToChineseCash('123') =>'壹百贰拾叁元整' */ function 阅读全文
posted @ 2020-07-25 21:59 沁猿春 阅读(322) 评论(0) 推荐(0) 编辑
摘要: /* 引用方式 *<scroll :pullDown="true" :pullUpLoad="pullUpLoad" :list="transactionList" @pullingUp="pullingUp" @pullingDown="pullingDown" v-if="transaction 阅读全文
posted @ 2020-07-25 21:38 沁猿春 阅读(523) 评论(0) 推荐(0) 编辑
摘要: /* 解决 ios 1px 显示略粗的问题 */ .border-around, .border-top, .border-right, .border-bottom, .border-left { position: relative; } /* 上边框 */ .border-top:before 阅读全文
posted @ 2020-07-25 21:15 沁猿春 阅读(678) 评论(0) 推荐(0) 编辑
摘要: /* 金额格式化,加逗号 */ function moneyFormat01(value, point) { point = point > 0 && point <= 20 ? point : 2; value = parseFloat((value + "").replace(/[^\d\.-] 阅读全文
posted @ 2020-07-25 21:10 沁猿春 阅读(738) 评论(0) 推荐(0) 编辑
摘要: /* 账号手机号加密 */ function encrypt(value) { if (value == "") { return ""; } let len = value.length; let head = value.substr(0, 4); let mid = "****"; let t 阅读全文
posted @ 2020-07-25 20:58 沁猿春 阅读(497) 评论(0) 推荐(0) 编辑