laiguoran преди 2 години
родител
ревизия
d97be04ea5
променени са 1 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. 4 4
      app/public/js/construction_index.js

+ 4 - 4
app/public/js/construction_index.js

@@ -25,12 +25,12 @@ const tenderListSpec = (function(){
         html.push('</td>');
 
         // 创建时间
-        html.push('<td style="width:150px" class="text-center">');
+        html.push('<td style="width:300px" class="text-center">');
         html.push(node.create_time ? moment(node.create_time).format('YYYY-MM-DD HH:mm:ss') : '');
         html.push('</td>');
         // 设置
         if (is_admin) {
-            html.push('<td style="width: 100px" class="text-center">');
+            html.push('<td style="width: 200px" class="text-center">');
             if (!node.cid) {
                 html.push('<a href="#add-cy" data-toggle="modal" data-target="#add-cy" data-tid="' + node.id +
                     '" class="btn btn-outline-primary btn-sm get-audits">成员管理</a>');
@@ -45,9 +45,9 @@ const tenderListSpec = (function(){
         html.push('<table class="table table-hover table-bordered">');
         html.push('<thead style="position: fixed;left:56px;top: 34px;">', '<tr>');
         html.push('<th class="text-center" style="min-width: 300px;">', '标段名称', '</th>');
-        html.push('<th class="text-center" style="width: 150px;">', '创建时间', '</th>');
+        html.push('<th class="text-center" style="width: 300px;">', '创建时间', '</th>');
         if (is_admin) {
-            html.push('<th class="text-center" style="width: 100px">', '设置', '</th>');
+            html.push('<th class="text-center" style="width: 200px">', '设置', '</th>');
         }
         html.push('</tr>', '</thead>');
         return html.join('');