|
|
@@ -74,7 +74,7 @@
|
|
|
import { computed, defineComponent, ref } from 'vue';
|
|
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
|
import { ListApi } from '/@/api/scene/list';
|
|
|
- import { AddSceneApi, DelSceneApi } from '/@/api/mapOpt/list';
|
|
|
+ import { AddSceneApi, DelSceneApi, ListAllGpsApi } from '/@/api/mapOpt/list';
|
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
import { FormProps } from '/@/components/Form';
|
|
|
|
|
|
@@ -115,7 +115,7 @@
|
|
|
labelWidth: 100,
|
|
|
schemas: [
|
|
|
{
|
|
|
- field: 'sceneName',
|
|
|
+ field: 'searchKey',
|
|
|
label: t('routes.scenes.sceneName'),
|
|
|
component: 'Input',
|
|
|
colProps: {
|
|
|
@@ -185,7 +185,7 @@
|
|
|
|
|
|
const [registerEditTable, { getSelectRowKeys }] = useTable({
|
|
|
title: t('layout.map.selectScene'),
|
|
|
- api: ListApi,
|
|
|
+ api: ListAllGpsApi,
|
|
|
columns: columns.filter((item) => item.title !== t('common.operating')),
|
|
|
formConfig: searchForm,
|
|
|
resizeHeightOffset: 300,
|
|
|
@@ -198,8 +198,8 @@
|
|
|
ellipsis: false,
|
|
|
bordered: true,
|
|
|
searchInfo: {
|
|
|
- status: -2,
|
|
|
- isLaser: 1,
|
|
|
+ // status: -2,
|
|
|
+ // isLaser: 1,
|
|
|
},
|
|
|
});
|
|
|
|