소스 검색

fix: 最高限价只读问题

vian 5 년 전
부모
커밋
263e505fe8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/building_saas/main/js/views/main_tree_col.js

+ 1 - 1
web/building_saas/main/js/views/main_tree_col.js

@@ -296,7 +296,7 @@ let MainTreeCol = {
     },
     maxPrice: function (node) {
 
-      return projectObj.project.projectInfo.importedByInterface || (node.data.outPutMaxPrice === false && node.data.outPutLimitPrice === false);
+      return projectObj.project.projectInfo.importedByInterface || node.data.outPutMaxPrice === false || node.data.outPutLimitPrice === false;
     },
     minPrice: function (node) {
       return projectObj.project.projectInfo.importedByInterface || node.data.outPutLimitPrice === false;