|
@@ -296,7 +296,7 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
|
|
|
const html = [];
|
|
|
html.push('<tr pid="' + pid + '">');
|
|
|
// 名称
|
|
|
- html.push('<td class="in-' + node.level + '">');
|
|
|
+ html.push('<td style="width: 23%" 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 {
|
|
@@ -308,51 +308,51 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 计量模式
|
|
|
- html.push('<td class="text-center">');
|
|
|
+ html.push('<td style="width: 7%" class="text-center">');
|
|
|
if (node.measure_type) {
|
|
|
html.push(node.measure_type === measureType.tz.value ? '0号台账' : '工程量清单');
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 计量期数
|
|
|
- html.push('<td class="text-center">');
|
|
|
+ html.push('<td style="width: 7%" class="text-center">');
|
|
|
if (!node.cid) {
|
|
|
html.push(node.lastStage ? '第' + node.lastStage.order + '期' : '台账');
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 审批状态
|
|
|
- html.push('<td>');
|
|
|
+ html.push('<td style="width: 7%">');
|
|
|
html.push(node.lastStage ? auditConst.stage.statusString[node.lastStage.status] : auditConst.ledger.statusString[node.ledger_status]);
|
|
|
html.push('</td>');
|
|
|
// 0号台账合同
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.total_price);
|
|
|
html.push('</td>');
|
|
|
// 本期完成
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.gather_tp);
|
|
|
html.push('</td>');
|
|
|
// 截止本期合同
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.end_contract_tp);
|
|
|
html.push('</td>');
|
|
|
// 截止本期变更
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.end_qc_tp);
|
|
|
html.push('</td>');
|
|
|
// 截止本期完成
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.end_gather_tp);
|
|
|
html.push('</td>');
|
|
|
// 截止上期完成
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.pre_gather_tp);
|
|
|
html.push('</td>');
|
|
|
// 本期应付
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.yf_tp);
|
|
|
html.push('</td>');
|
|
|
// 截止本期应付
|
|
|
- html.push('<td class="text-right">');
|
|
|
+ html.push('<td style="width: 7%" class="text-right">');
|
|
|
html.push(node.end_yf_tp);
|
|
|
html.push('</td>');
|
|
|
html.push('</tr>');
|
|
@@ -368,7 +368,7 @@ function getTenderTreeHtml () {
|
|
|
if (tenderTree.length > 0) {
|
|
|
const html = [];
|
|
|
html.push('<table class="table table-hover table-bordered">');
|
|
|
- html.push('<thead>', '<tr>');
|
|
|
+ html.push('<thead style="position: fixed;left:56px;top: 34px;">', '<tr>');
|
|
|
html.push('<th class="text-center" style="width: 23%">', '标段名称', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '计量模式', '</th>');
|
|
|
html.push('<th class="text-center" style="width: 7%">', '计量期数', '</th>');
|