修复会计列表表头少了列bug

This commit is contained in:
hy
2024-12-30 14:38:45 +08:00
parent 4269ce58db
commit f1868168af

View File

@@ -139,6 +139,7 @@ patch(ListRenderer.prototype, 'jikimo_frontend.ListRenderer', {
owl.onMounted(() => { owl.onMounted(() => {
this.activeElement = this.uiService.activeElement; this.activeElement = this.uiService.activeElement;
this.setRequired() this.setRequired()
this.listherHeaderBodyNum()
}) })
return this._super(...arguments); return this._super(...arguments);
}, },
@@ -165,6 +166,25 @@ patch(ListRenderer.prototype, 'jikimo_frontend.ListRenderer', {
} catch (e) { } catch (e) {
console.log(e) console.log(e)
} }
},
listherHeaderBodyNum() {
const dom = this.tableRef.el
try {
const thead = $(dom).children('thead')
const tbody = $(dom).children('tbody')
const thead_tr = thead.children().eq(0)
const tbody_tr = tbody.children().eq(0)
const thead_th_num = thead_tr.children().length
const tbody_tr_num = tbody_tr.children().length
const num = thead_th_num - tbody_tr_num
console.log('num', num);
if(num == -1) {
thead_tr.prepend('<td>序号</td>')
}
} catch (e) {
console.log(e)
}
} }
}) })