fix : 金额格式化

This commit is contained in:
2024-06-09 17:50:49 +08:00
parent cafb0ef5bf
commit 4ed64339fa
11 changed files with 59 additions and 75 deletions

View File

@@ -9,7 +9,7 @@
<script setup lang="jsx">
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
import {reactive, shallowRef} from "vue";
import {toThousands} from '@/utils/changePrice.js'
const router = useRouter()
const shortcuts = [
@@ -265,14 +265,7 @@ const tableConfig = reactive({
api: '/workflow/mosr/project/filing',
params: {},
})
const toThousands=(num)=> {
if(num==undefined||num==null)return '--';
const options = {
style: 'currency',
currency: 'CNY',
};
return (num).toLocaleString('zh-CN', options)
}
const search = (val) => {
let obj = {...val}
if (obj.dateValue) {