Преглед на файлове

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;