MaiXinRong 1 年之前
父節點
當前提交
42278b69fd
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      app/public/js/file_list.js

+ 1 - 2
app/public/js/file_list.js

@@ -26,10 +26,9 @@ $(document).ready(() => {
 
         const Utils = {
             getRowTdHtml: function (node, tree) {
-                console.log(node);
                 const html = [];
                 // 名称
-                html.push('<td width="20%" class="in-' + node.tree_level + '">');
+                html.push('<td class="in-' + node.tree_level + '">');
                 if (node.is_folder) {
                     if (node.children.length > 0) {
                         html.push('<span onselectstart="return false" style="{-moz-user-select:none}" class="fold-switch mr-1" title="收起" id="'+ node.id +'"><i class="fa fa-minus-square-o"></i></span> <i class="fa fa-folder-o"></i> ', node.name);