总体增加弹窗拖拽功能

This commit is contained in:
王兴凯 2026-07-22 09:06:17 +08:00
parent 1fb16a1385
commit ea3f6c8986
24 changed files with 95 additions and 16 deletions

View File

@ -16,6 +16,15 @@ export function getPowerTableList(data) {
data data
}); });
} }
// 基础信息 新增
export function addPowerInfo(data) {
return request({
url: '/env/engInfo/add',
method: 'post',
data
});
}
// 基础信息 编辑 // 基础信息 编辑
export function updatePowerInfo(data) { export function updatePowerInfo(data) {
return request({ return request({

View File

@ -74,6 +74,7 @@
<a-checkbox-group v-model:value="dvtp" :options="dvtpList" /> <a-checkbox-group v-model:value="dvtp" :options="dvtpList" />
</template> </template>
<template #actions> <template #actions>
<a-button type="primary" @click="handleAdd">新增</a-button>
<a-button :loading="btnLoading" @click="exportBtn">导出</a-button> <a-button :loading="btnLoading" @click="exportBtn">导出</a-button>
<a-button @click="customFilterBtn">自定义筛选列</a-button> <a-button @click="customFilterBtn">自定义筛选列</a-button>
<a-button @click="hideBtn">{{ isHide ? '展开' : '隐藏' }}</a-button> <a-button @click="hideBtn">{{ isHide ? '展开' : '隐藏' }}</a-button>
@ -94,6 +95,7 @@ const emit = defineEmits<{
(e: 'custom-filter-btn'): void; (e: 'custom-filter-btn'): void;
(e: 'reset', values: any): void; (e: 'reset', values: any): void;
(e: 'search-finish', values: any): void; (e: 'search-finish', values: any): void;
(e: 'add'): void;
}>(); }>();
interface Props { interface Props {
@ -285,6 +287,10 @@ const exportBtn = () => {
emit('export-btn'); emit('export-btn');
}; };
const handleAdd = () => {
emit('add');
};
const onValuesChange = (changedValues: any, allValues: any) => { const onValuesChange = (changedValues: any, allValues: any) => {
searchData.value = { ...searchData.value, ...allValues }; searchData.value = { ...searchData.value, ...allValues };
}; };

View File

@ -1,7 +1,7 @@
<template> <template>
<a-modal <a-modal
v-model:open="visible" v-model:open="visible"
title="编辑电站" :title="isAdd ? '新增电站' : '编辑电站'"
width="80vw" width="80vw"
:confirm-loading="confirmLoading" :confirm-loading="confirmLoading"
@ok="handleOk" @ok="handleOk"
@ -1083,15 +1083,17 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, watch } from 'vue'; import { ref, computed, watch } from 'vue';
import { message } from 'ant-design-vue'; import { message } from 'ant-design-vue';
import { updatePowerInfo } from '@/api/DataQueryMenuModule'; import { addPowerInfo, updatePowerInfo } from '@/api/DataQueryMenuModule';
import { BasicColumns } from '@/components/MapModal/column.config'; import { BasicColumns } from '@/components/MapModal/column.config';
import { getRvcdDropdown, getAddvcdDropdown } from '@/api/select'; import { getRvcdDropdown, getAddvcdDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
record?: any; record?: any;
isAdd?: boolean;
topHynmList?: any[]; topHynmList?: any[];
hycdList?: any[]; hycdList?: any[];
dvtpList?: any[]; dvtpList?: any[];
@ -1104,6 +1106,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
watch( watch(
() => props.open, () => props.open,
val => { val => {
@ -1312,7 +1315,7 @@ const handleOk = async () => {
try { try {
await formRef.value?.validateFields(); await formRef.value?.validateFields();
if (changeOrder.value.length === 0) { if (!props.isAdd && changeOrder.value.length === 0) {
message.info('未检测到任何修改'); message.info('未检测到任何修改');
return; return;
} }
@ -1327,24 +1330,35 @@ const handleOk = async () => {
const handleConfirmSubmit = async (source: string) => { const handleConfirmSubmit = async (source: string) => {
confirmLoading.value = true; confirmLoading.value = true;
try { try {
// + stcd let res: any;
if (props.isAdd) {
//
const engInfo: Record<string, any> = {};
Object.assign(engInfo, formData.value);
res = await addPowerInfo({
engInfo,
source: source.trim() || '新增'
});
} else {
// + stcd
const engInfo: Record<string, any> = { const engInfo: Record<string, any> = {
stcd: formData.value.stcd stcd: formData.value.stcd
}; };
changeOrder.value.forEach(item => { changeOrder.value.forEach(item => {
engInfo[item.field] = formData.value[item.field]; engInfo[item.field] = formData.value[item.field];
}); });
const res = await updatePowerInfo({ res = await updatePowerInfo({
engInfo, engInfo,
source: source.trim() source: source.trim()
}); });
}
if (res?.code == 0 || res?.success) { if (res?.code == 0 || res?.success) {
message.success('编辑成功'); message.success(props.isAdd ? '新增成功' : '编辑成功');
confirmModalVisible.value = false; confirmModalVisible.value = false;
visible.value = false; visible.value = false;
emit('success'); emit('success');
} else { } else {
message.error(res?.msg || '编辑失败'); message.error(res?.msg || (props.isAdd ? '新增失败' : '编辑失败'));
} }
} catch (error) { } catch (error) {
console.error('提交失败:', error); console.error('提交失败:', error);

View File

@ -7,6 +7,7 @@
:topHynmLoading="topHynmLoading" :topHynmLoading="topHynmLoading"
:hycdLoading="hycdLoading" :hycdLoading="hycdLoading"
:dvtpList="dvtpList" :dvtpList="dvtpList"
@add="handleAdd"
@export-btn="exportBtn" @export-btn="exportBtn"
@custom-filter-btn="customFilterBtn" @custom-filter-btn="customFilterBtn"
@search-finish="onSearchFinish" @search-finish="onSearchFinish"
@ -78,6 +79,7 @@ import DeleteConfirmModal from './DeleteConfirmModal.vue';
import { import {
getCompanyList, getCompanyList,
getPowerTableList, getPowerTableList,
addPowerInfo,
updatePowerInfo, updatePowerInfo,
deletePowerInfo deletePowerInfo
} from '@/api/DataQueryMenuModule'; } from '@/api/DataQueryMenuModule';
@ -117,6 +119,7 @@ const customColumnVisible = ref(false);
// //
const editVisible = ref(false); const editVisible = ref(false);
const editRecord = ref<any>(null); const editRecord = ref<any>(null);
const isAdd = ref(false);
const deleteModalRef = ref(); const deleteModalRef = ref();
// //
@ -1026,8 +1029,15 @@ const handleDetail = (record: any) => {
modelStore.params.stcd = record.stcd; modelStore.params.stcd = record.stcd;
modelStore.title = record.stnm; modelStore.title = record.stnm;
}; };
//
const handleAdd = () => {
isAdd.value = true;
editRecord.value = null;
editVisible.value = true;
};
// //
const handleEdit = (record: any) => { const handleEdit = (record: any) => {
isAdd.value = false;
getEngInfoById({ stcd: record.stcd }).then(res => { getEngInfoById({ stcd: record.stcd }).then(res => {
console.log(res); console.log(res);
editRecord.value = { ...res.data }; editRecord.value = { ...res.data };

View File

@ -244,6 +244,7 @@ import { addAiboxInfo, updateAiboxInfo } from '@/api/DataQueryMenuModule';
import { getEngInfoDropdown } from '@/api/select'; import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -258,6 +259,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -210,6 +210,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -224,6 +225,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -254,6 +254,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -268,6 +269,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -145,12 +145,14 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -148,6 +148,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -162,6 +163,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -189,6 +189,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -203,6 +204,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -105,12 +105,14 @@ import { addFhInfo, updateFhInfo } from '@/api/DataQueryMenuModule';
import { getEngInfoDropdown } from '@/api/select'; import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -221,6 +221,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -235,6 +236,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -117,12 +117,14 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -58,12 +58,14 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -148,6 +148,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -162,6 +163,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -143,6 +143,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -157,6 +158,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -174,6 +174,7 @@ import { getDictItemsByCode } from '@/api/dict';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -188,6 +189,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -209,6 +209,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -223,6 +224,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -231,6 +231,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -245,6 +246,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -202,6 +202,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -216,6 +217,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -210,6 +210,7 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -224,6 +225,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -138,6 +138,7 @@ import { addWarnInfo, updateWarnInfo } from '@/api/DataQueryMenuModule';
import { getEngInfoDropdown } from '@/api/select'; import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ const props = defineProps<{
open: boolean; open: boolean;
@ -152,6 +153,7 @@ const visible = computed({
get: () => props.open, get: () => props.open,
set: val => emit('update:open', val) set: val => emit('update:open', val)
}); });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -120,12 +120,14 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);

View File

@ -78,12 +78,14 @@ import { getEngInfoDropdown } from '@/api/select';
import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent'; import { useJidiSelectEventStore } from '@/store/modules/jidiSelectEvent';
import { sttpGetKendoList } from '@/api/system/map/ConfigManagement'; import { sttpGetKendoList } from '@/api/system/map/ConfigManagement';
import ConfirmModal from '@/components/ConfirmModal/index.vue'; import ConfirmModal from '@/components/ConfirmModal/index.vue';
import { useDraggable } from '@/utils/drag';
const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>(); const props = defineProps<{ open: boolean; record?: any; isAdd?: boolean }>();
const emit = defineEmits(['update:open', 'success']); const emit = defineEmits(['update:open', 'success']);
const jidiSelectEventStore = useJidiSelectEventStore(); const jidiSelectEventStore = useJidiSelectEventStore();
const visible = computed({ get: () => props.open, set: val => emit('update:open', val) }); const visible = computed({ get: () => props.open, set: val => emit('update:open', val) });
useDraggable(visible, { boundary: true, resetOnOpen: true });
const formRef = ref(); const formRef = ref();
const confirmLoading = ref(false); const confirmLoading = ref(false);