dev01 2 роки тому
батько
коміт
70de3729e6
19 змінених файлів з 21 додано та 21 видалено
  1. 1 1
      js/component/manageCenter/customer/operationalData/reexamine/details.jsx
  2. 1 1
      js/component/manageCenter/customerService/administration/followUpDetails.jsx
  3. 1 1
      js/component/manageCenter/customerService/administration/order.jsx
  4. 1 1
      js/component/manageCenter/financialManage/distribute/approvedOutsourcing.jsx
  5. 1 1
      js/component/manageCenter/financialManage/distribute/approvedOutsourcingAll.jsx
  6. 1 1
      js/component/manageCenter/financialManage/orderDetail/orderDetail.jsx
  7. 3 3
      js/component/manageCenter/order/orderNew/addService.jsx
  8. 1 1
      js/component/manageCenter/order/orderNew/addorders.js
  9. 1 1
      js/component/manageCenter/order/orderNew/approveds.jsx
  10. 1 1
      js/component/manageCenter/order/orderNew/changeComponent/changeApply.js
  11. 1 1
      js/component/manageCenter/order/orderNew/changeComponent/orderDetail.js
  12. 1 1
      js/component/manageCenter/order/orderNew/changeComponent/proAndCuiList.jsx
  13. 1 1
      js/component/manageCenter/order/orderNew/chargeback.jsx
  14. 1 1
      js/component/manageCenter/order/orderNew/checkOutsourcing.jsx
  15. 1 1
      js/component/manageCenter/order/orderNew/examine.jsx
  16. 1 1
      js/component/manageCenter/order/orderNew/inquiry.jsx
  17. 1 1
      js/component/manageCenter/order/orderNew/outsourcingList.jsx
  18. 1 1
      js/component/manageCenter/order/orderNew/outsourcingPro.jsx
  19. 1 1
      js/component/manageCenter/order/orderNew/reject.jsx

+ 1 - 1
js/component/manageCenter/customer/operationalData/reexamine/details.jsx

@@ -154,7 +154,7 @@ class Details extends Component {
                     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 {

+ 1 - 1
js/component/manageCenter/customerService/administration/followUpDetails.jsx

@@ -157,7 +157,7 @@ class FollowUpDetails extends Component {
                     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 {

+ 1 - 1
js/component/manageCenter/customerService/administration/order.jsx

@@ -383,7 +383,7 @@ const Order = 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 {

+ 1 - 1
js/component/manageCenter/financialManage/distribute/approvedOutsourcing.jsx

@@ -815,7 +815,7 @@ const approvedOutsourcing = React.createClass({
           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 {

+ 1 - 1
js/component/manageCenter/financialManage/distribute/approvedOutsourcingAll.jsx

@@ -526,7 +526,7 @@ const approvedOutsourcing = React.createClass({
           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 {

+ 1 - 1
js/component/manageCenter/financialManage/orderDetail/orderDetail.jsx

@@ -258,7 +258,7 @@ const OrderDetail = 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 {

+ 3 - 3
js/component/manageCenter/order/orderNew/addService.jsx

@@ -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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/addorders.js

@@ -630,7 +630,7 @@ const Addorders = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/approveds.jsx

@@ -492,7 +492,7 @@ const IntentionCustomer = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/changeComponent/changeApply.js

@@ -355,7 +355,7 @@ class ChangeApply extends Component {
           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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/changeComponent/orderDetail.js

@@ -84,7 +84,7 @@ class OrderDetail extends Component {
           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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/changeComponent/proAndCuiList.jsx

@@ -210,7 +210,7 @@ const ProAndCuiList = React.createClass({
           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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/chargeback.jsx

@@ -347,7 +347,7 @@ const IntentionCustomer = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/checkOutsourcing.jsx

@@ -362,7 +362,7 @@ const checkOutsourcing = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/examine.jsx

@@ -560,7 +560,7 @@ const IntentionCustomer = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/inquiry.jsx

@@ -394,7 +394,7 @@ const IntentionCustomer = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/outsourcingList.jsx

@@ -391,7 +391,7 @@ const outsourcingList = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/outsourcingPro.jsx

@@ -469,7 +469,7 @@ const outsourcingPro = 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 {

+ 1 - 1
js/component/manageCenter/order/orderNew/reject.jsx

@@ -613,7 +613,7 @@ const IntentionCustomer = 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 {