|
@@ -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>');
|