修改页面弹窗全屏

This commit is contained in:
2026-02-08 14:28:10 +08:00
parent 9820402b2c
commit d6e312de2b
45 changed files with 72 additions and 54 deletions

View File

@@ -10,6 +10,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="70%" width="70%"
class="calendar-flow-modal" class="calendar-flow-modal"
destroyOnClose destroyOnClose

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:calendarSchedule:edit'" :okAuth="'biz:calendarSchedule:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:company:edit'" :okAuth="'biz:company:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -375,9 +375,9 @@ const initChart = () => {
itemGap: 20 itemGap: 20
}, },
grid: { grid: {
left: '5%', left: '2%',
right: '5%', right: '2%',
bottom: '15%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true, containLabel: true,
}, },
@@ -386,7 +386,7 @@ const initChart = () => {
data: accountNames, data: accountNames,
axisLabel: { axisLabel: {
fontSize: 12, fontSize: 12,
rotate: 15, // 银行名称旋转15度避免重叠 rotate: 45, // 银行名称旋转15度避免重叠
interval: 0 interval: 0
}, },
axisTick: { inside: true }, axisTick: { inside: true },

View File

@@ -335,19 +335,18 @@ const initChart = () => {
itemGap: 20 itemGap: 20
}, },
grid: { grid: {
left: '5%', left: '2%',
right: '5%', right: '2%',
bottom: '15%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true, containLabel: true,
padding: [10, 0, 0, 0]
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: dateList, data: dateList,
axisLabel: { axisLabel: {
fontSize: 12, fontSize: 12,
rotate: 30, rotate: 45,
interval: 0 interval: 0
}, },
axisTick: { inside: true }, axisTick: { inside: true },

View File

@@ -233,9 +233,9 @@ const initChart = () => {
textStyle: { fontSize: 12 } textStyle: { fontSize: 12 }
}, },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '10%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },

View File

@@ -233,9 +233,9 @@ const initChart = () => {
textStyle: { fontSize: 12 } textStyle: { fontSize: 12 }
}, },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '10%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },

View File

@@ -167,9 +167,9 @@ const initChart = () => {
tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } }, tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
legend: { data: ['收入', '支出', '支出占比'], top: 10, textStyle: { fontSize: 12 } }, legend: { data: ['收入', '支出', '支出占比'], top: 10, textStyle: { fontSize: 12 } },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '20%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },
@@ -297,9 +297,9 @@ const initChart = () => {
textStyle: { fontSize: 12 } textStyle: { fontSize: 12 }
}, },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '20%', bottom: '1%',
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },

View File

@@ -303,9 +303,9 @@ const initChart = () => {
tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } }, tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
legend: { data: [], top: 10, textStyle: { fontSize: 12 } }, legend: { data: [], top: 10, textStyle: { fontSize: 12 } },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '15%', // 增加底部间距适配日期标签 bottom: '1%', // 增加底部间距适配日期标签
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },
@@ -508,9 +508,9 @@ const initChart = () => {
} }
}, },
grid: { grid: {
left: '8%', left: '2%',
right: '12%', right: '2%',
bottom: '15%', // 增加底部间距适配日期标签 bottom: '1%', // 增加底部间距适配日期标签
top: '20%', top: '20%',
containLabel: true containLabel: true
}, },

View File

@@ -16,17 +16,17 @@
<ChartPie /> <ChartPie />
<ChartLineRatio :formParams="FormValues" /> <ChartLineRatio :formParams="FormValues" />
</div> </div>
<div class="two-column-item">
<ChartLineInc :formParams="FormValues" />
<ChartLineExp :formParams="FormValues" />
</div>
<div class="single-chart-item">
<ChartLineType :formParams="FormValues" />
</div>
<div class="two-column-item"> <div class="two-column-item">
<ChartBarAccount :formParams="FormValues" /> <ChartBarAccount :formParams="FormValues" />
<ChartBarCycle :formParams="FormValues" /> <ChartBarCycle :formParams="FormValues" />
</div> </div>
<div class="two-column-item">
<ChartLineInc :formParams="FormValues" />
<ChartLineExp :formParams="FormValues" />
</div>
</div>
<div class="single-chart-item">
<ChartLineType :formParams="FormValues" />
</div> </div>
</PageWrapper> </PageWrapper>
</template> </template>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:dataReport:edit'" :okAuth="'biz:dataReport:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:dbConfig:edit'" :okAuth="'biz:dbConfig:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:execScript:edit'" :okAuth="'biz:execScript:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:monitorAccount:edit'" :okAuth="'biz:monitorAccount:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:monitorHost:edit'" :okAuth="'biz:monitorHost:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:listItem:edit'" :okAuth="'biz:listItem:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:mailSent:edit'" :okAuth="'biz:mailSent:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:meetingInfo:edit'" :okAuth="'biz:meetingInfo:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:projectInfo:edit'" :okAuth="'biz:projectInfo:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:projectReport:edit'" :okAuth="'biz:projectReport:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:projectRequirements:edit'" :okAuth="'biz:projectRequirements:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:resumeEmployee:edit'" :okAuth="'biz:resumeEmployee:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:mailAccount:edit'" :okAuth="'biz:mailAccount:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:quickLogin:edit'" :okAuth="'biz:quickLogin:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'biz:websiteStorage:edit'" :okAuth="'biz:websiteStorage:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -9,6 +9,7 @@
:showFooter="true" :showFooter="true"
:showOkBtn="false" :showOkBtn="false"
@register="registerModal" @register="registerModal"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -48,9 +48,10 @@ const searchForm: FormProps<BizResumeEmployee> = {
{ {
label: t('性别'), label: t('性别'),
field: 'sex', field: 'sex',
component: 'RadioGroup', component: 'Select',
componentProps: { componentProps: {
dictType: 'sys_user_sex', dictType: 'sys_user_sex',
allowClear: true,
}, },
}, },
{ {

View File

@@ -26,30 +26,12 @@ const searchForm: FormProps = {
label: t('状态'), label: t('状态'),
field: 'status', field: 'status',
component: 'Select', component: 'Select',
defaultValue: '0',
componentProps: { componentProps: {
dictType: 'sys_user_status', dictType: 'sys_user_status',
allowClear: true, allowClear: true,
}, },
}, },
{
field: 'none',
component: 'None',
},
{
label: t('手机'),
field: 'mobile',
component: 'Input',
},
{
label: t('邮箱'),
field: 'email',
component: 'Input',
},
{
label: t('电话'),
field: 'phone',
component: 'Input',
},
], ],
}; };

View File

@@ -10,6 +10,7 @@
:okAuth="'erp:account:edit'" :okAuth="'erp:account:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'erp:accountTransfer:edit'" :okAuth="'erp:accountTransfer:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="70%" width="70%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'erp:category:edit'" :okAuth="'erp:category:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>

View File

@@ -10,6 +10,7 @@
:okAuth="'erp:transactionFlow:edit'" :okAuth="'erp:transactionFlow:edit'"
@register="registerModal" @register="registerModal"
@ok="handleSubmit" @ok="handleSubmit"
defaultFullscreen="true"
width="60%" width="60%"
> >
<template #title> <template #title>