Merge branch 'feat/new-ui-1' of https://git.liantu.tech/xiaoyu/txw into feat/new-ui-1

This commit is contained in:
Lenticular Studio Agent 2026-07-05 18:23:56 +08:00
commit a49065f4cf
2 changed files with 4 additions and 17 deletions

View File

@ -7,7 +7,7 @@
-- 说明bqjh 英文逗号分隔lyqd_dm=migration -- 说明bqjh 英文逗号分隔lyqd_dm=migration
-- ============================================================ -- ============================================================
DELETE FROM txw_mhzc_gxnl_slxxb WHERE lyqd_dm = 'migration'; DELETE FROM txw_mhzc_gxnl_slxxb;
-- 地方发改部门 (flDm=01, 29条) -- 地方发改部门 (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()); 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"> <div class="portal-route-outlet">
<transition name="page-fade" mode="out-in">
<keep-alive :exclude="keepAliveExclude"> <keep-alive :exclude="keepAliveExclude">
<router-view @gotoIfreamPage="gotoIfreamPage" @gotoPage="gotoPage" /> <router-view @gotoIfreamPage="gotoIfreamPage" @gotoPage="gotoPage" />
</keep-alive> </keep-alive>
</transition>
</div> </div>
<Footer v-if="showPortalFooter" class="portal-layout-footer" /> <Footer v-if="showPortalFooter" class="portal-layout-footer" />
</div> </div>
@ -459,14 +457,3 @@ export default {
} }
</style> </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>