|
@@ -25,12 +25,12 @@ const tenderListSpec = (function(){
|
|
html.push('</td>');
|
|
html.push('</td>');
|
|
|
|
|
|
// 创建时间
|
|
// 创建时间
|
|
- html.push('<td style="width:150px" class="text-center">');
|
|
|
|
|
|
+ html.push('<td style="width:300px" class="text-center">');
|
|
html.push(node.create_time ? moment(node.create_time).format('YYYY-MM-DD HH:mm:ss') : '');
|
|
html.push(node.create_time ? moment(node.create_time).format('YYYY-MM-DD HH:mm:ss') : '');
|
|
html.push('</td>');
|
|
html.push('</td>');
|
|
// 设置
|
|
// 设置
|
|
if (is_admin) {
|
|
if (is_admin) {
|
|
- html.push('<td style="width: 100px" class="text-center">');
|
|
|
|
|
|
+ html.push('<td style="width: 200px" class="text-center">');
|
|
if (!node.cid) {
|
|
if (!node.cid) {
|
|
html.push('<a href="#add-cy" data-toggle="modal" data-target="#add-cy" data-tid="' + node.id +
|
|
html.push('<a href="#add-cy" data-toggle="modal" data-target="#add-cy" data-tid="' + node.id +
|
|
'" class="btn btn-outline-primary btn-sm get-audits">成员管理</a>');
|
|
'" class="btn btn-outline-primary btn-sm get-audits">成员管理</a>');
|
|
@@ -45,9 +45,9 @@ const tenderListSpec = (function(){
|
|
html.push('<table class="table table-hover table-bordered">');
|
|
html.push('<table class="table table-hover table-bordered">');
|
|
html.push('<thead style="position: fixed;left:56px;top: 34px;">', '<tr>');
|
|
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="min-width: 300px;">', '标段名称', '</th>');
|
|
- html.push('<th class="text-center" style="width: 150px;">', '创建时间', '</th>');
|
|
|
|
|
|
+ html.push('<th class="text-center" style="width: 300px;">', '创建时间', '</th>');
|
|
if (is_admin) {
|
|
if (is_admin) {
|
|
- html.push('<th class="text-center" style="width: 100px">', '设置', '</th>');
|
|
|
|
|
|
+ html.push('<th class="text-center" style="width: 200px">', '设置', '</th>');
|
|
}
|
|
}
|
|
html.push('</tr>', '</thead>');
|
|
html.push('</tr>', '</thead>');
|
|
return html.join('');
|
|
return html.join('');
|