diff --git a/src/views/Statics/StaticsRouter.js b/src/views/Statics/StaticsRouter.js index f128141..491b53a 100644 --- a/src/views/Statics/StaticsRouter.js +++ b/src/views/Statics/StaticsRouter.js @@ -26,6 +26,12 @@ import Dbafec from "./Dbafec"; import Dbefec from "./Dbefec"; import Dbdfec from "./Dbdfec"; +import Infgtx from "./Infgtx"; +import Dbigtx from "./Dbigtx"; +import Dbagtx from "./Dbagtx"; +import Dbegtx from "./Dbegtx"; +import Dbdgtx from "./Dbdgtx"; + const StaticsRouter = [ { path: 'infpty', component: Infpty, name: 'StaticsInfpty', meta: { title: '客户查询' } }, { path: 'dbapty', component: Dbapty, name: 'StaticsDbapty', meta: { title: '客户新增' } }, @@ -55,6 +61,12 @@ const StaticsRouter = [ { path: 'dbifec/:inr', component: Dbifec, name: 'StaticsDbifec', meta: { title: (tag) => { return '费率详情: ' + tag.params.inr } } }, { path: 'dbefec/:inr', component: Dbefec, name: 'StaticsDbefec', meta: { title: (tag) => { return '费率修改: ' + tag.params.inr } } }, { path: 'dbdfec/:inr', component: Dbdfec, name: 'StaticsDbdfec', meta: { title: (tag) => { return '费率删除: ' + tag.params.inr } } }, + + { path: 'infgtx', component: Infgtx, name: 'StaticsInfgtx', meta: { title: '保函文本查询' } }, + { path: 'dbagtx', component: Dbagtx, name: 'StaticsDbagtx', meta: { title: '保函文本新增' } }, + { path: 'dbigtx/:inr', component: Dbigtx, name: 'StaticsDbigtx', meta: { title: (tag) => { return '保函文本详情: ' + tag.params.inr } } }, + { path: 'dbegtx/:inr', component: Dbegtx, name: 'StaticsDbegtx', meta: { title: (tag) => { return '保函文本修改: ' + tag.params.inr } } }, + { path: 'dbdgtx/:inr', component: Dbdgtx, name: 'StaticsDbdgtx', meta: { title: (tag) => { return '保函文本删除: ' + tag.params.inr } } }, ] export default StaticsRouter