|
@@ -7,6 +7,10 @@ import OrganizationEdit from "./organization-edit.vue";
|
|
|
import UsersAdd from "./users-add.vue";
|
|
|
import UsersEdit from "./users-edit.vue";
|
|
|
import UsersPasswordEdit from "./users-password-edit.vue";
|
|
|
+import { h } from "vue";
|
|
|
+import { ElIcon, ElTooltip } from "element-plus";
|
|
|
+import Help from '@/assets/help.svg'
|
|
|
+
|
|
|
|
|
|
export const relicsEdit = quiskMountFactory(RelicsEdit, {
|
|
|
title: "创建文物",
|
|
@@ -18,7 +22,19 @@ export const deviceEdit = quiskMountFactory(DeviceEdit, {
|
|
|
});
|
|
|
|
|
|
export const selectScenes = quiskMountFactory(SceneSelect, {
|
|
|
- title: "选择场景",
|
|
|
+ title: () =>
|
|
|
+ h("span", null, [
|
|
|
+ "选择场景",
|
|
|
+ h(
|
|
|
+ ElTooltip,
|
|
|
+ {
|
|
|
+ effect: "dark",
|
|
|
+ content: "请添加相同相机类型且点位数量一致的场景",
|
|
|
+ placement: "top",
|
|
|
+ },
|
|
|
+ [h(ElIcon, null, [h(Help)])]
|
|
|
+ ),
|
|
|
+ ]),
|
|
|
width: 1000,
|
|
|
});
|
|
|
|