|
@@ -42,7 +42,7 @@ const tenderListSpec = (function(){
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 计量进度
|
|
|
- html.push('<td style="width: 8%">');
|
|
|
+ html.push('<td style="width: 120px">');
|
|
|
if (!node.cid && node.cur_flow) {
|
|
|
if (node.progress) {
|
|
|
html.push(node.progress.title + ' (' + '<span class="' + node.progress.status_class +'">' + node.progress.status + '</span>' + ')');
|
|
@@ -52,7 +52,7 @@ const tenderListSpec = (function(){
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 当前流程
|
|
|
- html.push('<td style="width: 8%">');
|
|
|
+ html.push('<td style="width: 230px">');
|
|
|
if (!node.cid && node.cur_flow) {
|
|
|
const curUser = node.cur_flow instanceof Array && node.cur_flow[0].audit_type && node.cur_flow[0].audit_type !== auditType.key.common
|
|
|
? transFormToChinese(node.cur_flow[0].audit_order) + '审'
|
|
@@ -79,7 +79,7 @@ const tenderListSpec = (function(){
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 上一流程审批时间
|
|
|
- html.push('<td style="width: 8%">');
|
|
|
+ html.push('<td style="width: 150px">');
|
|
|
if (!node.cid && node.pre_flow) {
|
|
|
if (node.pre_flow instanceof Array) {
|
|
|
if (node.pre_flow.length > 1) {
|
|
@@ -93,11 +93,11 @@ const tenderListSpec = (function(){
|
|
|
}
|
|
|
html.push('</td>');
|
|
|
// 签约合同价
|
|
|
- html.push('<td width="8%" class="text-right">');
|
|
|
+ html.push('<td width="120px" class="text-right">');
|
|
|
html.push(node.contract_price ? node.contract_price : '');
|
|
|
html.push('</td>');
|
|
|
// 总价
|
|
|
- html.push('<td width="8%" class="text-right">');
|
|
|
+ html.push('<td width="120px" class="text-right">');
|
|
|
html.push(node.sum_tp ? node.sum_tp : '');
|
|
|
html.push('</td>');
|
|
|
// 截止本期累计完成/本期完成/未完成
|
|
@@ -116,11 +116,11 @@ 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 style="width: 25%" class="text-center">', '标段名称', '</th>');
|
|
|
- html.push('<th class="text-center" style="width: 8%">', '计量进度', '</th>');
|
|
|
- html.push('<th class="text-center" style="width: 8%">', '当前流程', '</th>');
|
|
|
- html.push('<th class="text-center" style="width: 8%">', '上一流程审批时间', '</th>');
|
|
|
- html.push('<th class="text-center" style="width: 8%">', '签约合同价', '</th>');
|
|
|
- html.push('<th style="width: 8%" class="text-center">', '总价 <i class="fa fa-question-circle text-primary" data-placement="bottom" data-toggle="tooltip" data-original-title="0号台账+截止本期数量变更"></i>', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 120px">', '计量进度', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 230px">', '当前流程', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 150px">', '上一流程审批时间', '</th>');
|
|
|
+ html.push('<th class="text-center" style="width: 120px">', '签约合同价', '</th>');
|
|
|
+ html.push('<th style="width: 120px" class="text-center">', '总价 <i class="fa fa-question-circle text-primary" data-placement="bottom" data-toggle="tooltip" data-original-title="0号台账+截止本期数量变更"></i>', '</th>');
|
|
|
html.push('<th style="width: 35%" class="text-center">', '截止上期完成/本期完成/未完成', '</th>');
|
|
|
html.push('</tr>', '</thead>');
|
|
|
return html.join('');
|