123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643 |
- app.config(['$stateProvider', function ($stateProvider) {
- $stateProvider
- /*对接宝新主页*/
- .state('abutmentHome', {
- cache: false,
- url: '/abutmentHome',
- templateUrl: 'modules/tools/views/AbutmentHome.html',
- controller: 'AbutmentHomeCtrl',
- resolve: {
- AbutmentHomeCtrl: function (LoadJsService) {
- return LoadJsService.loadSequence("AbutmentHomeArgs");
- }
- },
- params: {folder: null}
- })
- .state('conninfolist', {
- cache: false,
- url: '/conninfolist',
- templateUrl: 'modules/tools/views/connInfoList.html',
- controller: 'connInfoListCtrl',
- resolve: {
- conninfolist: function (LoadJsService) {
- return LoadJsService.loadSequence("ConnInfoListArgs");
- }
- },
- params: {folder: null}
- })
- /*对接宝新建项目*/
- .state('addList', {
- cache: false,
- url: '/addList',
- templateUrl: 'modules/tools/views/addList.html',
- controller: 'addListCtrl',
- resolve: {
- addList: function (LoadJsService) {
- return LoadJsService.loadSequence("AddListArgs");
- }
- },
- params: {type: ""}
- })
- /*修改对接宝信息*/
- .state('editconninfo', {
- cache: false,
- url: '/editconninfo',
- templateUrl: 'modules/tools/views/editconninfo.html',
- controller: 'editConninfoCtrl',
- resolve: {
- editconninfo: function (LoadJsService) {
- return LoadJsService.loadSequence("EditConninfoArgs");
- }
- },
- params: {infoid: "", type: null}
- })
- /*对接宝参加单位*/
- .state('ParticipatingUnits', {
- cache: false,
- url: '/ParticipatingUnits',
- templateUrl: 'modules/tools/views/ParticipatingUnits.html',
- controller: 'ParticipatingUnitsCtrl',
- resolve: {
- ParticipatingUnits: function (LoadJsService) {
- return LoadJsService.loadSequence("ParticipatingArgs");
- }
- },
- params: {company: null, index: null}
- })
- /*对接宝对接主题*/
- .state('DockingTheme', {
- cache: false,
- url: '/DockingTheme',
- templateUrl: 'modules/tools/views/DockingTheme.html',
- controller: 'DockingThemeCtrl',
- resolve: {
- DockingTheme: function (LoadJsService) {
- return LoadJsService.loadSequence("DockingThemeArgs");
- }
- },
- params: {theme: null, index: null}
- })
- /*对接宝对接详情页*/
- .state('Dockingdetails', {
- cache: false,
- url: '/Dockingdetails',
- templateUrl: 'modules/tools/views/Dockingdetails.html',
- controller: 'DockingdetailsCtrl',
- resolve: {
- Dockingdetails: function (LoadJsService) {
- return LoadJsService.loadSequence("DockingdetailsArgs");
- }
- },
- params: {infoid: null, type: null, creator: ""}
- })
- /*对接宝删除文件夹*/
- .state('removeFolders', {
- cache: false,
- url: '/removeFolders',
- templateUrl: 'modules/tools/views/removeFolders.html',
- controller: 'removeFoldersCtrl',
- resolve: {
- Dockingdetails: function (LoadJsService) {
- return LoadJsService.loadSequence("RemoveFoldersArgs");
- }
- },
- params: {folder: {}}
- })
- /*废纸篓页面*/
- .state('wastepaper', {
- cache: false,
- url: '/wastepaper',
- templateUrl: 'modules/tools/views/wastepaper.html',
- controller: 'wastepaperCtrl',
- resolve: {
- Dockingdetails: function (LoadJsService) {
- return LoadJsService.loadSequence("wastepaperCtrl");
- }
- }
- })
- /*对接宝搜索页面*/
- .state('connsearch', {
- cache: false,
- url: '/connsearch',
- templateUrl: 'modules/tools/views/connSearch.html',
- controller: 'ConnSearchCtrl',
- resolve: {
- connsearch: function (LoadJsService) {
- return LoadJsService.loadSequence("ConnSearchCtrl");
- }
- },
- params: {folderid: 0, localfolderid: "0"}
- })
- /*对接宝搜索结果页面*/
- .state('connsearchresult', {
- cache: true,
- url: '/connsearchresult',
- templateUrl: 'modules/tools/views/connSearchResult.html',
- controller: 'ConnSearchResultCtrl',
- resolve: {
- connsearchresult: function (LoadJsService) {
- return LoadJsService.loadSequence("ConnSearchArgs");
- }
- },
- params: {key: "", folderid: 0, localfolderid: "0"}
- })
- /*设置权限页面*/
- .state('Authority', {
- cache: false,
- url: '/Authority',
- templateUrl: 'modules/tools/views/Authority.html',
- controller: 'AuthorityCtrl',
- resolve: {
- Authority: function (LoadJsService) {
- return LoadJsService.loadSequence("AuthorityCtrl");
- }
- }
- })
- /*云共享页面*/
- .state('cloudFolderList', {
- cache: false,
- url: '/cloudFolderList',
- templateUrl: 'modules/tools/views/CloudFolderList.html',
- controller: 'CloudFolderListCtrl',
- resolve: {
- cloudFolderList: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudFolderListArgs");
- }
- }
- })
- /*云文件夹详情*/
- .state('cloudFolderDetail', {
- cache: false,
- url: '/cloudFolderDetail',
- templateUrl: 'modules/tools/views/CloudFolderDetail.html',
- controller: 'CloudFolderDetailCtrl',
- resolve: {
- cloudFolderDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudFolderDetailArgs");
- }
- },
- params: {folder: null}
- })
- /*云文件夹编辑*/
- .state('cloudFolderEdit', {
- cache: false,
- url: '/cloudFolderEdit',
- templateUrl: 'modules/tools/views/CloudFolderEdit.html',
- controller: 'CloudFolderEditCtrl',
- resolve: {
- cloudFolderEdit: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudFolderEditArgs");
- }
- },
- params: {clfolder: null}
- })
- /*新建云文件夹*/
- .state('cloudFolderCreate', {
- cache: false,
- url: '/cloudFolderCreate',
- templateUrl: 'modules/tools/views/CloudFolderCreate.html',
- controller: 'CloudFolderCreateCtrl',
- resolve: {
- cloudFolderCreate: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudFolderCreateArgs");
- }
- }
- })
- /*云文件夹中新建对接信息*/
- .state('cloudAddConnInfo', {
- cache: false,
- url: '/cloudAddConnInfo',
- templateUrl: 'modules/tools/views/CloudAddConnInfo.html',
- controller: 'CloudAddConnInfoCtrl',
- resolve: {
- cloudAddConnInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudAddConnInfoArgs");
- }
- }
- })
- /*添加名片信息*/
- .state('addListCard', {
- cache: false,
- url: '/addListCard',
- templateUrl: 'modules/tools/views/addListCard.html',
- controller: 'addListCardCtrl',
- resolve: {
- addListCard: function (LoadJsService) {
- return LoadJsService.loadSequence("addListCardArgs");
- }
- },
- params: {index: -1}
- })
- /*添加名片信息*/
- .state('editListCard', {
- cache: false,
- url: '/editListCard',
- templateUrl: 'modules/tools/views/editListCard.html',
- controller: 'editListCardCtrl',
- resolve: {
- editListCard: function (LoadJsService) {
- return LoadJsService.loadSequence("editListCardArgs");
- }
- },
- params: {index: -1}
- })
- /*云共享编辑页面*/
- .state('cloudEditconninfo', {
- cache: false,
- url: '/cloudEditconninfo',
- templateUrl: 'modules/tools/views/Cloudeditconninfo.html',
- controller: 'CloudeditconninfoCtrl',
- resolve: {
- cloudEditconninfo: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudeditconninfoCtrl");
- }
- },
- params: {infoid: null}
- })
- /*云共享文件夹里的详情页面*/
- .state('cloudDockingdetail', {
- cache: false,
- url: '/cloudDockingdetail',
- templateUrl: 'modules/tools/views/CloudDockingdetails.html',
- controller: 'CloudDockingdetailsCtrl',
- resolve: {
- cloudDockingdetail: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudDockingdetailArgs");
- }
- },
- params: {infoid: null, infocomefrom: "", creator: 0}
- })
- /*云共享分享设置页面*/
- .state('CloudShareSet', {
- cache: false,
- url: '/CloudShareSet',
- templateUrl: 'modules/tools/views/CloudShareSet.html',
- controller: 'CloudShareSetCtrl',
- resolve: {
- CloudShareSet: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudShareSetArgs");
- }
- },
- params: {infoid: 0}
- })
- /*云共享权限设置页面*/
- .state('CloudAuthoritySet', {
- cache: false,
- url: '/CloudAuthoritySet',
- templateUrl: 'modules/tools/views/CloudAuthoritySet.html',
- controller: 'CloudAuthoritySetCtrl',
- resolve: {
- CloudAuthoritySet: function (LoadJsService) {
- return LoadJsService.loadSequence("CloudAuthoritySetCtrl");
- }
- },
- params: {infoid: null}
- })
- /*对接记录评价(进度对接业务)*/
- .state('toolDiscuss', {
- cache: false,
- url: '/toolDiscuss',
- templateUrl: 'modules/tools/views/toolDiscuss.html',
- controller: 'toolDiscussCtrl',
- resolve: {
- toolDiscuss: function (LoadJsService) {
- return LoadJsService.loadSequence("toolDiscussCtrl");
- }
- },
- params: {infoid: 0, infotype: 0, comlen: 0, recourcecomefrom: "", isedit: false}
- })
- /*对接中发布评价(对接业务)*/
- .state('releaseComment', {
- cache: false,
- url: '/releaseComment',
- templateUrl: 'modules/tools/views/releaseComment.html',
- controller: 'releaseCommentCtrl',
- resolve: {
- releaseComment: function (LoadJsService) {
- return LoadJsService.loadSequence("releaseCommentCtrl");
- }
- },
- params: {infoid: 0, infotype: 0, comlen: 0, recourcecomefrom: ""}
- })
- /*对接宝分享选择文件夹页面*/
- .state('chooseShareFolder', {
- cache: false,
- url: '/chooseShareFolder',
- templateUrl: 'modules/tools/views/chooseShareFolder.html',
- controller: 'chooseShareFolderCtrl',
- resolve: {
- chooseShareFolder: function (LoadJsService) {
- return LoadJsService.loadSequence("chooseShareFolderArgs");
- }
- },
- params: {chereslist: [], folderid: 0, isCloud: -1}
- })
- /*对接宝设置文件夹页面*/
- .state('buildNewFolder', {
- cache: false,
- url: '/buildNewFolder',
- templateUrl: 'modules/tools/views/buildNewFolder.html',
- controller: 'buildNewFolderCtrl',
- resolve: {
- buildNewFolder: function (LoadJsService) {
- return LoadJsService.loadSequence("buildNewFolderCtrl");
- }
- }
- })
- /*新建需求跟进表*/
- .state('ActivitySchedule', {
- cache: false,
- url: '/ActivitySchedule',
- templateUrl: 'modules/tools/views/ActivitySchedule.html',
- controller: 'ActivityScheduleCtrl',
- resolve: {
- ActivitySchedule: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivityScheduleCtrl");
- }
- },
- params: {infoid: 0, companylist: [], reqlist: []}
- })
- /*修改需求跟进表*/
- .state('ActivityScheduleEdit', {
- cache: false,
- url: '/ActivityScheduleEdit',
- templateUrl: 'modules/tools/views/ActivityScheduleEdit.html',
- controller: 'ActivityScheduleEditCtrl',
- resolve: {
- ActivityScheduleEdit: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivityScheduleEditCtrl");
- }
- },
- params: {folupid: 0, companylist: [], reqlist: []}
- })
- /*需求跟进表总展示*/
- .state('ActivtyScheduleHome', {
- cache: false,
- url: '/ActivtyScheduleHome',
- templateUrl: 'modules/tools/views/ActivtyScheduleHome.html',
- controller: 'ActivtyScheduleHomeCtrl',
- resolve: {
- ActivtyScheduleHome: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivtyScheduleHomeCtrl");
- }
- },
- params: {infoid: 0, companylist: [], reqlist: []}
- })
- /*我的活动备案表*/
- .state('ActivtyReport', {
- cache: false,
- url: '/ActivtyReport',
- templateUrl: 'modules/tools/views/ActivtyReport.html',
- controller: 'ActivtyReportCtrl',
- resolve: {
- ActivtyTableTemplate: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivtyReportCtrl");
- }
- },
- params: {konreid: 0}
- })
- /*政府超级管理员查看活动*/
- .state('ActivityScheduleAccount', {
- cache: false,
- url: '/ActivityScheduleAccount',
- templateUrl: 'modules/tools/views/ActivityScheduleAccount.html',
- controller: 'ActivityScheduleAccountCtrl',
- resolve: {
- ActivityScheduleAccount: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivityScheduleAccountCtrl");
- }
- },
- params: {infoid: 0}
- })
- /*政府超级管理员查看备案汇总*/
- .state('ActivityReportAccount', {
- cache: false,
- url: '/ActivityReportAccount',
- templateUrl: 'modules/tools/views/ActivityReportAccount.html',
- controller: 'ActivityReportAccountCtrl',
- resolve: {
- ActivityReportAccount: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivityReportAccountCtrl");
- }
- },
- params: {infoid: 0, role: 0}
- })
- /*修改对接最新状态*/
- .state('addState', {
- cache: false,
- url: '/addState',
- templateUrl: 'modules/tools/views/addState.html',
- controller: 'addStateCtrl',
- resolve: {
- addState: function (LoadJsService) {
- return LoadJsService.loadSequence("addStateCtrl");
- }
- },
- params: {folupid: 0}
- })
- /*活动详情跟进物流详情表*/
- .state('ActivityLogisty', {
- cache: false,
- url: '/ActivityLogisty',
- templateUrl: 'modules/tools/views/ActivityLogisty.html',
- controller: 'ActivityLogistyCtrl',
- resolve: {
- ActivityLogisty: function (LoadJsService) {
- return LoadJsService.loadSequence("ActivityLogistyCtrl");
- }
- },
- params: {folupid: 0, role: 1, orgname: "", docking_content: ""}
- })
- /*资源库的数据来源走访模块表单*/
- .state('visitModularForm', {
- cache: false,
- url: '/visitModularForm',
- templateUrl: 'modules/tools/views/visitModularForm.html',
- controller: 'visitModularFormCtrl',
- resolve: {
- visitModularForm: function (LoadJsService) {
- return LoadJsService.loadSequence("visitModularFormArgs");
- }
- },
- // isedit:对应的是0新增/1编辑/2复制并编辑
- params: {
- isedit:0,
- companyid: 0,
- pageid: 1,
- orgtype: 0,
- connid: 0,
- pagecode:0,
- node:'',
- pageTitle:'',
- title:'',
- comfrom:'',
- restype:0,
- templettype:0,
- resid:0,
- resourcetype:-1,
- innertype:0
- }
- })
- .state('visitModularFormDemand', {
- cache: false,
- url: '/visitModularFormDemand/:pagecode/:pageid/:techtype',
- templateUrl: 'modules/tools/views/visitModularFormDemand.html',
- controller: 'visitModularFormDemandCtrl',
- resolve: {
- visitModularFormDemand: function (LoadJsService) {
- return LoadJsService.loadSequence("visitModularFormDemandArgs");
- }
- },
- // isedit:对应的是0新增/1编辑/2复制并编辑
- params: {
- isedit:0,
- companyid: 0,
- pageid: 1,
- orgtype: 0,
- connid: 0,
- pagecode:0,
- node:'',
- pageTitle:'',
- title:'',
- comfrom:'',
- restype:0,
- templettype:0,
- resid:0,
- resourcetype:-1,
- innertype:0,
- techtype: ''
- }
- })
- /*快速录入的表单入口之基本信息表单*/
- .state('unitOrPersonalBaseInfo', {
- cache: false,
- url: '/unitOrPersonalBaseInfo',
- templateUrl: 'modules/tools/views/unitOrPersonalBaseInfo.html',
- controller: 'unitOrPersonalBaseInfoCtrl',
- resolve: {
- unitOrPersonalBaseInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("unitOrPersonalBaseInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*快速录入的表单入口之需求信息表单*/
- .state('recordDemandInfo', {
- cache: false,
- url: '/recordDemandInfo',
- templateUrl: 'modules/tools/views/recordDemandInfo.html',
- controller: 'recordDemandInfoCtrl',
- resolve: {
- recordDemandInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("recordDemandInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*快速录入的表单入口之成果信息表单*/
- .state('recordAchievementsInfo', {
- cache: false,
- url: '/recordAchievementsInfo',
- templateUrl: 'modules/tools/views/recordAchievementsInfo.html',
- controller: 'recordAchievementsInfoCtrl',
- resolve: {
- recordAchievementsInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("recordAchievementsInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*快速录入的表单入口之产品信息表单*/
- .state('recordProductInfo', {
- cache: false,
- url: '/recordProductInfo',
- templateUrl: 'modules/tools/views/recordProductInfo.html',
- controller: 'recordProductInfoCtrl',
- resolve: {
- recordProductInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("recordProductInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*快速录入的表单入口之专利信息表单*/
- .state('recordPatentInfo', {
- cache: false,
- url: '/recordPatentInfo',
- templateUrl: 'modules/tools/views/recordPatentInfo.html',
- controller: 'recordPatentInfoCtrl',
- resolve: {
- recordPatentInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("recordPatentInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*快速录入的表单入口之人才信息表单*/
- .state('recordTalentInfo', {
- cache: false,
- url: '/recordTalentInfo',
- templateUrl: 'modules/tools/views/recordTalentInfo.html',
- controller: 'recordTalentInfoCtrl',
- resolve: {
- recordTalentInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("recordTalentInfoArgs");
- }
- },
- params: {pageid: 0, connid: 0, isedit: 0}
- })
- /*我的录入页面统计*/
- .state('recordInfoAccount', {
- cache: false,
- url: '/recordInfoAccount',
- templateUrl: 'modules/tools/views/recordInfoAccount.html',
- controller: 'recordInfoAccountCtrl',
- resolve: {
- recordInfoAccount: function (LoadJsService) {
- return LoadJsService.loadSequence("recordInfoAccountArgs");
- }
- }
- })
- /*我的录入详情页*/
- .state('recordInfoDetail', {
- cache: false,
- url: '/recordInfoDetail',
- templateUrl: 'modules/tools/views/recordInfoDetail.html',
- controller: 'recordInfoDetailCtrl',
- resolve: {
- recordInfoDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("recordInfoDetailArgs");
- }
- },
- params: {connid: 0}
- })
- // 录入模型
- .state('typeinInformation', {
- cache: false,
- url: '/typeinInformation',
- templateUrl: 'modules/tools/views/typeinInformation.html',
- controller: 'typeinInformationCtrl',
- resolve: {
- typeinInformationCtrl: function (LoadJsService) {
- return LoadJsService.loadSequence("typeinInformationArgs");
- }
- },
- params: {orgtype:0,pagecode:0,pagename:0,id:0,isedit:0,connid:0,node:0,pageid:0}
- })
- // 溧水录入模型
- .state('typeinAllModal', {
- cache: false,
- url: '/typeinAllModal',
- templateUrl: 'modules/tools/views/typeinAllModal.html',
- controller: 'typeinAllModalCtrl',
- resolve: {
- typeinAllModalCtrl: function (LoadJsService) {
- return LoadJsService.loadSequence("typeinAllModalArgs");
- }
- },
- params: {isedit:0, companyid: 0, pageid: 0, orgtype: 0, connid: 0,pagecode:0,node:'',pageTitle:''}
- })
- }]);
|