From 9a60c2778592bb3b75b3b4c1180d4a5016ffcee1 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Wed, 2 Mar 2022 19:31:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=A1=A8=E6=A0=BC=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E7=BB=84=E4=BB=B6=E4=B8=8D=E8=AF=86=E5=88=AB=E5=A4=9A?= =?UTF-8?q?=E5=B1=82=E5=AF=B9=E8=B1=A1=E5=B1=9E=E6=80=A7=E5=80=BC=E9=97=AE?= =?UTF-8?q?=E9=A2=98(I4V7YV)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bootstrap-table/extensions/print/bootstrap-table-print.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-admin/src/main/resources/static/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js b/ruoyi-admin/src/main/resources/static/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js index 39c82f86..5578662f 100644 --- a/ruoyi-admin/src/main/resources/static/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js +++ b/ruoyi-admin/src/main/resources/static/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js @@ -136,7 +136,7 @@ $.BootstrapTable = class extends $.BootstrapTable { const formatValue = (row, i, column) => { const value = Utils.calculateObjectValue(column, column.printFormatter || column.formatter, - [row[column.field], row, i], row[column.field]) + [$.common.getItemField(row, column.field), row, i], $.common.getItemField(row, column.field)) return typeof value === 'undefined' || value === null ? this.options.undefinedText : value