浏览代码

[Fix][UI] add assignment of totalPage (#10165)

rockfang 2 年之前
父节点
当前提交
7fc3664ec3

+ 1 - 0
dolphinscheduler-ui/src/views/data-quality/rule/use-table.ts

@@ -110,6 +110,7 @@ export function useTable(viewRuleEntry = (unusedRuleJson: string): void => {}) {
 
     const { state } = useAsyncState(
       queryRuleListPaging(data).then((res: RuleRes) => {
+        variables.totalPage = res.totalPage
         variables.tableData = res.totalList.map((item, unused) => {
           const ruleName =
             'data_quality.rule.' + item.name.substring(3, item.name.length - 1)

+ 1 - 0
dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts

@@ -210,6 +210,7 @@ export function useTable() {
 
     const { state } = useAsyncState(
       queryExecuteResultListPaging(data).then((res: ResultListRes) => {
+        variables.totalPage = res.totalPage
         variables.tableData = res.totalList.map((item, unused) => {
           return {
             ...item

+ 1 - 0
dolphinscheduler-ui/src/views/monitor/statistics/audit-log/use-table.ts

@@ -88,6 +88,7 @@ export function useTable() {
 
     const { state } = useAsyncState(
       queryAuditLogListPaging(data).then((res: AuditListRes) => {
+        variables.totalPage = res.totalPage
         variables.tableData = res.totalList.map((item, unused) => {
           return {
             ...item