fix: 移除过渡效果

This commit is contained in:
liulujian 2026-07-05 18:21:30 +08:00
parent 9b065eaa3e
commit 01873d85c1
2 changed files with 4 additions and 17 deletions

View File

@ -7,7 +7,7 @@
-- 说明bqjh 英文逗号分隔lyqd_dm=migration
-- ============================================================
DELETE FROM txw_mhzc_gxnl_slxxb WHERE lyqd_dm = 'migration';
DELETE FROM txw_mhzc_gxnl_slxxb;
-- 地方发改部门 (flDm=01, 29条)
INSERT INTO txw_mhzc_gxnl_slxxb (wz_uuid, bt, wz_lj, jj, gxnl_fl_dm, gxnl_fl_mc, bqjh, qymc, zt, sjzt, lyqd_dm, pxh, llcs, sccs, bbh, yxbz, lrrq) VALUES ('392bb9b09d40423ba06bd6b9ced2c1d2', '山东省发展和改革委员会', 'http://fgw.shandong.gov.cn/', '', '01', '地方发改部门', '地方发改,低碳,双碳落地', '地方发改部门', '2', 'Y', 'migration', 29, 0, 0, 0, 'Y', NOW());

View File

@ -10,11 +10,9 @@
]"
>
<div class="portal-route-outlet">
<transition name="page-fade" mode="out-in">
<keep-alive :exclude="keepAliveExclude">
<router-view @gotoIfreamPage="gotoIfreamPage" @gotoPage="gotoPage" />
</keep-alive>
</transition>
<keep-alive :exclude="keepAliveExclude">
<router-view @gotoIfreamPage="gotoIfreamPage" @gotoPage="gotoPage" />
</keep-alive>
</div>
<Footer v-if="showPortalFooter" class="portal-layout-footer" />
</div>
@ -459,14 +457,3 @@ export default {
}
</style>
<style>
/* 页面路由过渡动画 — 纯 opacity 淡入淡出,不用 transform 避免破坏 fixed 定位 */
.page-fade-enter-active,
.page-fade-leave-active {
transition: opacity 0.18s ease;
}
.page-fade-enter,
.page-fade-leave-to {
opacity: 0;
}
</style>