UPDATE: VERSION-20260315
This commit is contained in:
@@ -41,7 +41,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</a-list>
|
</a-list>
|
||||||
<a-pagination
|
<a-pagination
|
||||||
v-if="totalTress > scenarioQuery.pageSize"
|
v-if="totalTress > Number(scenarioQuery?.pageSize ?? 0)"
|
||||||
v-model:current="scenarioQuery.pageNum"
|
v-model:current="scenarioQuery.pageNum"
|
||||||
:page-size="scenarioQuery.pageSize"
|
:page-size="scenarioQuery.pageSize"
|
||||||
:total="totalTress"
|
:total="totalTress"
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, onMounted, ref } from 'vue';
|
import { defineComponent, onMounted, ref } from 'vue';
|
||||||
import { CheckOutlined, DeleteOutlined, EditFilled, PlusOutlined } from '@ant-design/icons-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 { deleteOneTreeById, findTreesByQuery } from './api';
|
||||||
import { substring } from '@/utils/strings';
|
import { substring } from '@/utils/strings';
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user