|
@@ -754,7 +754,7 @@ const NewService = Form.create()(
|
|
|
render: (text, record) => {
|
|
|
if (record.dunTypeName) {
|
|
|
if (record.appropriationRatio) {
|
|
|
- let percent = Number(record.appropriationRatio * 100);
|
|
|
+ let percent = Number(record.appropriationRatio * 100).toFixed(2);
|
|
|
percent += "%";
|
|
|
return <span>{percent}(拨款比例)</span>;
|
|
|
} else {
|
|
@@ -1183,7 +1183,7 @@ const NewService = Form.create()(
|
|
|
render: (text, record) => {
|
|
|
if (record.dunTypeName) {
|
|
|
if (record.appropriationRatio) {
|
|
|
- let percent = Number(record.appropriationRatio * 100);
|
|
|
+ let percent = Number(record.appropriationRatio * 100).toFixed(2).toFixed(2);
|
|
|
percent += "%";
|
|
|
return <span>{percent}(拨款比例)</span>;
|
|
|
} else {
|
|
@@ -1653,7 +1653,7 @@ const NewService = Form.create()(
|
|
|
render: (text, record) => {
|
|
|
if (record.dunTypeName) {
|
|
|
if (record.appropriationRatio) {
|
|
|
- let percent = Number(record.appropriationRatio * 100);
|
|
|
+ let percent = Number(record.appropriationRatio * 100).toFixed(2);
|
|
|
percent += "%";
|
|
|
return <span>{percent}(拨款比例)</span>;
|
|
|
} else {
|