UPDATE: VERSION-20260315

This commit is contained in:
libertyspy
2026-03-15 20:24:50 +08:00
parent 6d76cb8d5e
commit c5d81a4c52
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@
</template>
</a-list>
<a-pagination
v-if="totalTress > scenarioQuery.pageSize"
v-if="totalTress > Number(scenarioQuery?.pageSize ?? 0)"
v-model:current="scenarioQuery.pageNum"
:page-size="scenarioQuery.pageSize"
:total="totalTress"

View File

@@ -52,7 +52,7 @@
<script lang="ts">
import { defineComponent, onMounted, ref } from 'vue';
import { CheckOutlined, DeleteOutlined, EditFilled, PlusOutlined } from '@ant-design/icons-vue';
import type { BehaviorTree, BehaviorTreeRequest } from '../types';
import type { BehaviorTree, BehaviorTreeRequest } from './tree';
import { deleteOneTreeById, findTreesByQuery } from './api';
import { substring } from '@/utils/strings';