字段调整

This commit is contained in:
‘huanghaiixia’
2026-02-02 13:50:57 +08:00
parent 27ff75cae6
commit 58d7079f1d
4 changed files with 3 additions and 13 deletions

View File

@ -1,10 +0,0 @@
export function numToThousands(number) {
if (number === null || number === undefined || number === '') return ''
let arr = number.toString().split('.')
let num = arr[0]
let float = arr[1]
let str = num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")
return float ? (str + '.'+ float) : str;
}

View File

@ -61,7 +61,7 @@ export const columns: BasicColumn[] = [
title: '版本号', title: '版本号',
componentType: 'input', componentType: 'input',
align: 'left', align: 'left',
width: 100, width: 80,
sorter: true, sorter: true,
}, },

View File

@ -225,7 +225,7 @@ export const columns: BasicColumn[] = [
}, },
{ {
dataIndex: 'poinDelyName', dataIndex: 'pointDelyName',
title: '下载点', title: '下载点',
componentType: 'input', componentType: 'input',
align: 'left', align: 'left',

View File

@ -171,7 +171,7 @@ export const columns: BasicColumn[] = [
sorter: true, sorter: true,
}, },
{ {
dataIndex: 'ksNmae', dataIndex: 'ksName',
title: '销售合同', title: '销售合同',
componentType: 'input', componentType: 'input',
align: 'left', align: 'left',