5 Star 0 Fork 1

zhouhaibo/Yshop_LZ

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
zhouhaibo 提交于 2023-04-04 15:12 . 优化
// app.js
App({
onLaunch() {
// 展示本地存储能力
const logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
},
globalData: {
userInfo: null
}
})
export default function numberToChinese(num) {
const reg = /[\u4e00-\u9fa5]/g; // 匹配汉字的正则表达式
if (reg.test(num)) {
return num;
} else if (num < 10000) {
return num.toString();
} else if (num < 100000000) {
const suffix = num < 1000000 ? "" : "百万";
const quotient = Math.floor(num / 10000);
const remainder = Math.floor(num % 10000 / 100);
const decimal = remainder > 0 ? "." + (remainder < 10 ? "0" + remainder : remainder) : "";
return quotient + decimal + suffix;
} else {
const suffix = "亿";
const quotient = Math.floor(num / 100000000);
const remainder = Math.floor(num % 100000000 / 10000);
const decimal = remainder > 0 ? "." + (remainder < 10 ? "0" + remainder : remainder) : "";
return quotient + decimal + suffix;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/onezhouhaibo/yshop_-lz.git
git@gitee.com:onezhouhaibo/yshop_-lz.git
onezhouhaibo
yshop_-lz
Yshop_LZ
master

搜索帮助