caipin 5 years ago
parent
commit
6730c327b2
2 changed files with 3 additions and 3 deletions
  1. 2 2
      global/js/columnShow/columnShow.js
  2. 1 1
      views/cloud/curing.html

+ 2 - 2
global/js/columnShow/columnShow.js

@@ -22,14 +22,14 @@ $(function() {
 function refreshColumn(columnLength){
 	var checkBoxList=$('input[type=checkbox][name=columnShow]');
 	var cbi=0;
-	console.log(columnLength);
+	
 	for(var i=1;i<=columnLength;i++){
 		var isAccept=localStorage.getItem("curingColumn_"+i);
 
 		if(isAccept=='false'){
 			isAccept=false;
 		}
-		console.log(cbi+'/'+isAccept);
+		
 		if (isAccept==null||isAccept) {
 			//console.log(isAccept);
 			checkBoxList.eq(cbi).attr("checked",'true');

+ 1 - 1
views/cloud/curing.html

@@ -4,7 +4,7 @@
 <script src="<%= WEB_SITE_GLOBAL %>js/jquery-3.4.1.min.js"></script>
 
 
-<script src="<%= WEB_SITE_GLOBAL %>js/cloud/curing.min.js"></script>
+<script src="<%= WEB_SITE_GLOBAL %>js/cloud/curing.js"></script>
 <script src="<%= WEB_SITE_GLOBAL %>js/cloud/curingFN.js"></script>
 <script src="<%= WEB_SITE_GLOBAL %>js/cloud/curingHtml.js"></script>