fix(web/super_manage/index/links): link weight
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-10-23 22:00:15 +08:00
parent 1227acf47a
commit 26809917a1
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -746,9 +746,10 @@ EOD);
links, links,
1, 1,
'<tr>' + '<tr>' +
'<th style="width:18em">标题</th>' + '<th style="width:16em">标题</th>' +
'<th style="width:26em">链接</th>' + '<th style="width:16em">链接</th>' +
'<th style="width:14em">操作</th>' + '<th style="width:6em">权重</th>' +
'<th style="width:8em">操作</th>' +
'</tr>', '</tr>',
function(row) { function(row) {
var col_tr = ''; var col_tr = '';
@ -757,6 +758,7 @@ EOD);
col_tr += '<td>' + row['title'] + '</td>'; col_tr += '<td>' + row['title'] + '</td>';
col_tr += '<td>' + row['url'] + '</td>'; col_tr += '<td>' + row['url'] + '</td>';
col_tr += '<td>' + row['level'] + '</td>';
col_tr += '<td>' + col_tr += '<td>' +
'<form method="POST" onsubmit=\'return confirm("你真的要删除这条链接吗?")\'>' + '<form method="POST" onsubmit=\'return confirm("你真的要删除这条链接吗?")\'>' +
'<input type="hidden" name="_token" value="<?= crsf_token() ?>">' + '<input type="hidden" name="_token" value="<?= crsf_token() ?>">' +