Browse Source

原单价显示问题

MaiXinRong 2 years ago
parent
commit
25f2cb42d0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/public/js/shares/sjs_setting.js

+ 2 - 2
app/public/js/shares/sjs_setting.js

@@ -92,7 +92,7 @@ const sjsSettingObj = (function () {
             col.showImage = r.showImage;
         }
     };
-    setOrgPriceCol = function (cols, rela) {
+    const setOrgPriceCol = function (cols, rela) {
         for (const r of rela) {
             const col = _.find(cols, {field: r.field});
             if (col) {
@@ -103,6 +103,6 @@ const sjsSettingObj = (function () {
     return {
         setFxTreeStyle, FxTreeStyle, setGridSelectStyle,
         setTpThousandthFormat, setThousandthFormat, setTpColsThousandthFormat,
-        setPropValue, set3FCols, setQcCols, setOrgPriceCol
+        setPropValue, set3FCols, setQcCols, setOrgPriceCol,
     };
 })();