|
@@ -627,6 +627,8 @@ $(document).ready(() => {
|
|
|
for (const t of result) {
|
|
|
html.push('<tr>');
|
|
|
html.push('<td><a target="_blank" href="/tender/', t.id, '">', t.name, '</a></td>');
|
|
|
+ html.push('<td>', t.user_name, '</td>');
|
|
|
+ html.push('<td>', moment(t.create_time).format('YYYY-MM-DD'), '</td>');
|
|
|
html.push('<td class="text-center">', '<input type="checkbox" data-tid="' + t.id + '">', '</td>');
|
|
|
html.push('</tr>');
|
|
|
}
|