1
helongyang
2025-12-19 78ac0aac3c9e71ac661cc49e5b0f148e6af5073e
1
2
3
4
5
6
7
8
9
10
11
/*
 * @Author: daidai
 * @Date: 2022-01-11 15:27:31
 * @LastEditors: Please set LastEditors
 * @LastEditTime: 2022-04-21 14:32:03
 * @FilePath: \web-pc\src\directives\filters.js
 */
export function montionFilter (val) {
    // console.log(val);
    return val ? Number(val).toFixed(2) : '--'
}