This commit is contained in:
2025-08-05 09:02:33 +08:00
parent c40787927c
commit 8061704355
14 changed files with 8845 additions and 641 deletions

View File

@@ -8697,6 +8697,11 @@ function addRowIdToData(content) {
function initArticleHtmlFun(arr, result, html_type) {
// .wordTableHtml table tr.table-header-row td {
// border-bottom: 1px solid #000 !important;
// }
var str = '';
var htmlContent = ''
htmlContent += arr.map((item, index) => {
@@ -8823,7 +8828,8 @@ text-align:left;color:#333;" >${item.table.note ? item.table.note : ''
}).join('');
htmlContent = `<div class="newHtml2" style="margin-left:300px;">${htmlContent}</div>`
$('.wen_rong .content-box .conthtmn').html(htmlContent);
if (result.data.refers.length > 0) { // 如果有引用数据
var refs = '';
var xuhao = 0;
@@ -9231,6 +9237,10 @@ function initArticleHtml(htmlData, refs, type) {
}
});
});
$('.wordTableHtml table tr.table-header-row td').each(function () {
this.style.setProperty('border-bottom', '1px solid #000', 'important');
});
});