字段调整
This commit is contained in:
@ -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;
|
||||
}
|
||||
@ -61,7 +61,7 @@ export const columns: BasicColumn[] = [
|
||||
title: '版本号',
|
||||
componentType: 'input',
|
||||
align: 'left',
|
||||
width: 100,
|
||||
width: 80,
|
||||
sorter: true,
|
||||
},
|
||||
|
||||
|
||||
@ -225,7 +225,7 @@ export const columns: BasicColumn[] = [
|
||||
},
|
||||
|
||||
{
|
||||
dataIndex: 'poinDelyName',
|
||||
dataIndex: 'pointDelyName',
|
||||
title: '下载点',
|
||||
componentType: 'input',
|
||||
align: 'left',
|
||||
|
||||
@ -171,7 +171,7 @@ export const columns: BasicColumn[] = [
|
||||
sorter: true,
|
||||
},
|
||||
{
|
||||
dataIndex: 'ksNmae',
|
||||
dataIndex: 'ksName',
|
||||
title: '销售合同',
|
||||
componentType: 'input',
|
||||
align: 'left',
|
||||
|
||||
Reference in New Issue
Block a user