2024-10-21 13:37:27 +08:00
|
|
|
export const dialogSmall = {
|
2025-10-15 14:12:24 +08:00
|
|
|
width:'26vw',
|
|
|
|
|
maxWidth:'500px',
|
|
|
|
|
minWidth:'300px',
|
2024-10-21 13:37:27 +08:00
|
|
|
closeOnClickModal:false,
|
|
|
|
|
draggable:true,
|
|
|
|
|
class:'dialog-small'
|
|
|
|
|
}
|
|
|
|
|
export const dialogMiddle = {
|
2025-10-15 14:12:24 +08:00
|
|
|
width:'42vw',
|
|
|
|
|
maxWidth:'800px',
|
|
|
|
|
minWidth:'600px',
|
2024-10-21 13:37:27 +08:00
|
|
|
closeOnClickModal:false,
|
|
|
|
|
draggable:true,
|
|
|
|
|
class:'dialog-middle'
|
|
|
|
|
}
|
|
|
|
|
export const dialogBig = {
|
2025-10-15 14:12:24 +08:00
|
|
|
width:'62vw',
|
|
|
|
|
maxWidth:'1200px',
|
|
|
|
|
minWidth:'800px',
|
2024-10-21 13:37:27 +08:00
|
|
|
closeOnClickModal:false,
|
|
|
|
|
draggable:true,
|
2024-12-03 09:50:15 +08:00
|
|
|
class:'dialog-big',
|
2024-10-21 13:37:27 +08:00
|
|
|
}
|