소스 검색

原单价显示问题

MaiXinRong 2 년 전
부모
커밋
25f2cb42d0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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,
     };
 })();