瀏覽代碼

计量进度,金额概况,列宽调整

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

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

@@ -24,13 +24,13 @@ const tenderListSpec = (function(){
         }
         html.push('</td>');
         // 计量模式
-        html.push('<td style="width: 75px" class="text-center">');
+        html.push('<td style="width: 85px" class="text-center">');
         if (node.measure_type) {
             html.push(node.measure_type === measureType.tz.value ? '0号台账' : '工程量清单');
         }
         html.push('</td>');
         // 计量进度
-        html.push('<td style="width: 105px">');
+        html.push('<td style="width: 125px">');
         if (!node.cid && node.cur_flow) {
             if (node.progress) {
                 html.push(node.progress.title + ' (' + '<span class="' + node.progress.status_class +'">' + node.progress.status + '</span>' + ')');
@@ -114,8 +114,8 @@ 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: 75px">', '计量模式', '</th>');
-        html.push('<th class="text-center" style="width: 105px">', '计量进度', '</th>');
+        html.push('<th class="text-center" style="width: 85px">', '计量模式', '</th>');
+        html.push('<th class="text-center" style="width: 125px">', '计量进度', '</th>');
         html.push('<th class="text-center" style="width: 230px">', '当前流程', '</th>');
         // html.push('<th class="text-center" style="width: 7%">', '上一流程审批时间', '</th>');
         html.push('<th class="text-center" style="width: 100px">', '签约合同价', '</th>');

+ 2 - 2
app/public/js/tender_list_progress.js

@@ -29,7 +29,7 @@ const tenderListSpec = (function(){
         const html = [];
         html.push('<tr pid="' + pid + '">');
         // 名称
-        html.push('<td width="20%" class="in-' + node.level + '">');
+        html.push('<td width="25%" class="in-' + node.level + '">');
         if (node.cid) {
             html.push('<span onselectstart="return false" style="{-moz-user-select:none}" class="fold-switch mr-1" title="收起" cid="'+ node.sort_id +'"><i class="fa fa-minus-square-o"></i></span> <i class="fa fa-folder-o"></i> ', node.name);
         } else {
@@ -51,7 +51,7 @@ const tenderListSpec = (function(){
         }
         html.push('</td>');
         // 当前流程
-        html.push('<td style="width: 13%">');
+        html.push('<td style="width: 8%">');
         if (!node.cid && node.cur_flow) {
             if (node.stage_status !== undefined) {
                 const curUser = node.cur_flow.name + (node.cur_flow.role ? '-'+node.cur_flow.role  : '');