|
@@ -367,20 +367,20 @@ function recursiveGetTenderNodeHtml (node, arr, pid) {
|
|
|
function getTenderTreeHtml () {
|
|
|
if (tenderTree.length > 0) {
|
|
|
const html = [];
|
|
|
- html.push('<table class="table table-hover table-bordered" style="margin-top: 25px">');
|
|
|
- html.push('<thead style="position: fixed;left:56px;top: 34px">', '<tr>');
|
|
|
- html.push('<th class="text-center">', '标段名称', '</th>');
|
|
|
- html.push('<th class="text-center">', '计量模式', '</th>');
|
|
|
- html.push('<th class="text-center">', '计量期数', '</th>');
|
|
|
- html.push('<th class="text-center">', '审批状态', '</th>');
|
|
|
- html.push('<th class="text-center">', '0号台帐', '</th>');
|
|
|
- html.push('<th class="text-center">', '本期完成', '</th>');
|
|
|
- html.push('<th class="text-center">', '截止本期合同', '</th>');
|
|
|
- html.push('<th class="text-center">', '截止本期变更', '</th>');
|
|
|
- html.push('<th class="text-center">', '截止本期完成', '</th>');
|
|
|
- html.push('<th class="text-center">', '截止上期完成', '</th>');
|
|
|
- html.push('<th class="text-center">', '本期应付', '</th>');
|
|
|
- html.push('<th class="text-center">', '截止本期应付', '</th>');
|
|
|
+ html.push('<table class="table table-hover table-bordered">');
|
|
|
+ html.push('<thead>', '<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>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '审批状态', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '0号台帐', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '本期完成', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '截止本期合同', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '截止本期变更', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '截止本期完成', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '截止上期完成', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '本期应付', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 7%">', '截止本期应付', '</th>');
|
|
|
html.push('</tr>', '</thead>');
|
|
|
parentId = 0;
|
|
|
for (const t of tenderTree) {
|