10 lines
239 B
XML
10 lines
239 B
XML
// WXS 格式化工具 — WXML 中不能调用 JS 方法,需通过 WXS 桥接
|
|
function toFixed(num, digits) {
|
|
if (num === undefined || num === null) return '--'
|
|
return num.toFixed(digits)
|
|
}
|
|
|
|
module.exports = {
|
|
toFixed: toFixed,
|
|
}
|