1
helongyang
2025-12-26 5c238fa340e7a86834c65cf66c514f32d6d28f4a
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) : '--'
}