Browse Source

成本分配表-面料转入数量/辅料转入数量-转入数量小数位调整

jbb 1 year ago
parent
commit
030811e65a

+ 1 - 1
src/views/cost-allocation-total/modal/fabInQuaModal.vue

@@ -68,7 +68,7 @@ export default {
           width: 120,
           className: 'replacecolor',
           customRender: (text, record, index) => {
-            var re =  Number(text).toFixed(2)
+            var re =  Number(text).toFixed(4)
             return re
          }
         },

+ 1 - 1
src/views/cost-allocation-total/modal/ingInQuaModal.vue

@@ -62,7 +62,7 @@ export default {
           width: 120,
           className: 'replacecolor',
           customRender: (text, record, index) => {
-            var re =  Number(text).toFixed(2)
+            var re =  Number(text).toFixed(4)
             return re
          }
         },