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