12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295 |
- app.config(['$stateProvider', function ($stateProvider) {
- $stateProvider
- /*设置名称*/
- .state('setname', {
- cache: false,
- url: '/setname',
- templateUrl: 'modules/account/views/setName.html',
- controller: 'SetNameCtrl',
- resolve: {
- setname: function (LoadJsService) {
- return LoadJsService.loadSequence("SetNameArgs");
- }
- },
- params: {userid: 0, username: null, userpwd: null}
- })
- /*我的收藏*/
- .state('mycollection', {
- cache: false,
- url: '/mycollection',
- templateUrl: 'modules/account/views/myCollection.html',
- controller: 'MyCollectionCtrl',
- resolve: {
- mycollection: function (LoadJsService) {
- return LoadJsService.loadSequence("MyCollectionArgs");
- }
- },
- params: {tabindex: 0}
- })
- .state('noticeCusServ', {
- cache: false,
- url: '/noticeCusServ',
- templateUrl: 'modules/account/views/noticeCusServ.html',
- controller: 'noticeCusServCtrl',
- resolve: {
- noticeCusServ: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeCusServArgs");
- }
- }
- })
- .state('noticeService', {
- cache: false,
- url: '/noticeService',
- templateUrl: 'modules/account/views/noticeService.html',
- controller: 'noticeServiceCtrl',
- resolve: {
- noticeService: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeServiceArgs");
- }
- }
- })
- .state('noticeServiceDetail', {
- cache: false,
- url: '/noticeServiceDetail',
- templateUrl: 'modules/account/views/noticeServiceDetail.html',
- controller: 'noticeServiceDetailCtrl',
- resolve: {
- noticeServiceDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeServiceDetailArgs");
- }
- },
- params: {epidemic: ''}
- })
- /*我的喜好*/
- .state('myfav', {
- cache: false,
- url: '/myfav',
- templateUrl: 'modules/account/views/myFav.html',
- controller: 'MyFavCtrl',
- resolve: {
- myfav: function (LoadJsService) {
- return LoadJsService.loadSequence("MyFavCtrl");
- }
- }
- })
- /*设置*/
- .state('set', {
- cache: false,
- url: '/set',
- templateUrl: 'modules/account/views/accountSet.html',
- controller: 'SetCtrl',
- resolve: {
- set: function (LoadJsService) {
- return LoadJsService.loadSequence("SetCtrl");
- }
- }
- })
- /*日志*/
- .state('log', {
- cache: false,
- url: '/log',
- templateUrl: 'modules/account/views/log.html',
- controller: 'logCtrl',
- resolve: {
- set: function (LoadJsService) {
- return LoadJsService.loadSequence("logArgs");
- }
- }
- })
- /*一键上传*/
- .state('Import', {
- cache: false,
- url: '/Import/:listparams',
- templateUrl: 'modules/account/views/Import.html',
- controller: 'ImportCtrl',
- resolve: {
- Import: function (LoadJsService) {
- return LoadJsService.loadSequence("ImportArgs");
- }
- },
- params: {listparams:null}
- })
- /*一键上传详情*/
- .state('ImportEdit', {
- cache: false,
- url: '/ImportEdit/:listparams',
- templateUrl: 'modules/account/views/ImportEdit.html',
- controller: 'ImportEditCtrl',
- resolve: {
- ImportEdit: function (LoadJsService) {
- return LoadJsService.loadSequence("ImportEditArgs");
- }
- },
- params: {listparams:null}
- })
- /*我的消息*/
- .state('mymessage', {
- cache: false,
- url: '/mymessage',
- templateUrl: 'modules/account/views/myMessage.html',
- controller: 'MyMessageCtrl',
- resolve: {
- mymessage: function (LoadJsService) {
- return LoadJsService.loadSequence("MyMessageArgs");
- }
- }
- })
- /*编辑资料*/
- .state('editdata', {
- cache: false,
- url: '/editdata',
- params: {"userInfo": null},
- templateUrl: 'modules/account/views/editData.html',
- controller: 'EditDataCtrl',
- resolve: {
- editdata: function (LoadJsService) {
- return LoadJsService.loadSequence("EditDataArgs");
- }
- }
- })
- /*修改密码*/
- .state('updatepwd', {
- cache: false,
- url: '/updatepwd',
- params: {"data": null},
- templateUrl: 'modules/account/views/updatepwd.html',
- controller: 'EditDataCtrl',
- resolve: {
- editdata: function (LoadJsService) {
- return LoadJsService.loadSequence("EditDataArgs");
- }
- }
- })
- /*用户主页*/
- .state('publisher', {
- cache: false,
- url: '/publisher',
- templateUrl: 'modules/account/views/publisher.html',
- controller: 'PublisherCtrl',
- resolve: {
- publisher: function (LoadJsService) {
- return LoadJsService.loadSequence("PublisherArgs");
- }
- },
- params: {Id: null}
- })
- .state('reward', {
- cache: false,
- url: '/reward',
- templateUrl: 'modules/account/views/reward.html',
- controller: 'rewardCtrl',
- resolve: {
- reward: function (LoadJsService) {
- return LoadJsService.loadSequence("rewardArgs");
- }
- },
- })
- /*我的-关注、粉丝、访客*/
- .state('fancenter', {
- cache: false,
- url: '/fancenter',
- templateUrl: 'modules/account/views/fanCenter.html',
- controller: 'FanCenterCtrl',
- resolve: {
- fancenter: function (LoadJsService) {
- return LoadJsService.loadSequence("FanCenterArgs");
- }
- },
- params: {act: "", userid: 0}
- })
- /*评论*/
- .state('comment', {
- cache: false,
- url: '/comment',
- templateUrl: 'modules/account/views/comment.html',
- controller: 'CommentCtrl',
- resolve: {
- comment: function (LoadJsService) {
- return LoadJsService.loadSequence("CommenArgs");
- }
- },
- params: {mode: 2, infoid: 0, infotype: 0, sortkey: 0, sorttype: "", comfrom: ''}
- })
- .state('commitment', {
- cache: false,
- url: '/commitment',
- templateUrl: 'modules/account/views/commitment.html',
- controller: 'commitmentCtrl',
- resolve: {
- commitment: function (LoadJsService) {
- return LoadJsService.loadSequence("commitmentArgs");
- }
- },
- params: {formlist: ''}
- })
- .state('liyangLetter', {
- cache: false,
- url: '/commitment',
- templateUrl: 'modules/account/views/liyangLetter.html',
- controller: 'liyangLetterCtrl',
- resolve: {
- liyangLetter: function (LoadJsService) {
- return LoadJsService.loadSequence("liyangLetterArgs");
- }
- },
- })
- .state('demandRewardDetail', {
- cache: false,
- url: '/demandRewardDetail',
- templateUrl: 'modules/account/views/demandRewardDetail.html',
- controller: 'demandRewardDetailCtrl',
- resolve: {
- demandRewardDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("demandRewardDetailArgs");
- }
- },
- params: {resid: 0, comefrom: "", list: "", flag: ''}
- })
- .state('demandRewardCheck', {
- cache: false,
- url: '/demandRewardCheck',
- templateUrl: 'modules/account/views/demandRewardCheck.html',
- controller: 'demandRewardCheckCtrl',
- resolve: {
- demandRewardCheck: function (LoadJsService) {
- return LoadJsService.loadSequence("demandRewardCheckArgs");
- }
- },
- })
- .state('technicalRewardCheck', {
- cache: false,
- url: '/technicalRewardCheck',
- templateUrl: 'modules/account/views/technicalRewardCheck.html',
- controller: 'technicalRewardCheckCtrl',
- resolve: {
- technicalRewardCheck: function (LoadJsService) {
- return LoadJsService.loadSequence("technicalRewardCheckArgs");
- }
- },
- params: {comefrom: ""}
- })
- .state('signDemandContract', {
- cache: false,
- url: '/signDemandContract',
- templateUrl: 'modules/account/views/signDemandContract.html',
- controller: 'signDemandContractCtrl',
- resolve: {
- signDemandContract: function (LoadJsService) {
- return LoadJsService.loadSequence("signDemandContractArgs");
- }
- },
- params: {
- resid: 0,
- pageTitle: "",
- code: 0,
- type: 5100,
- id: 0,
- action: 'submit',
- pagesize: 15,
- pagenum: 1,
- companyName: '',
- comfrom: '',
- url: ''
- }
- })
- .state('signDemandContractDetail', {
- cache: false,
- url: '/signDemandContract',
- templateUrl: 'modules/account/views/signDemandContractDetail.html',
- controller: 'signDemandContractDetailCtrl',
- resolve: {
- signDemandContractDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("signDemandContractDetailArgs");
- }
- },
- params: {
- contract: ""
- }
- })
- .state('technicalawardapplication', {
- cache: false,
- url: '/technicalawardapplication',
- templateUrl: 'modules/account/views/technicalawardapplication.html',
- controller: 'technicalawardapplicationCtrl',
- resolve: {
- technicalawardapplication: function (LoadJsService) {
- return LoadJsService.loadSequence("technicalawardapplicationArgs");
- }
- },
- params: {
- resid: 0,
- pageTitle: "",
- code: 0,
- type: 5100,
- id: 0,
- action: 'submit',
- pagesize: 15,
- pagenum: 1,
- companyName: '',
- comfrom: '',
- url: '',
- restype: 0,
- list: '',
- flag: ''
- }
- })
- /*账号绑定与修改密码*/
- .state('BindOnAccount', {
- cache: false,
- url: '/BindOnAccount',
- templateUrl: 'modules/account/views/BindOnAccount.html',
- controller: 'BindOnAccountCtrl',
- resolve: {
- BindOnAccount: function (LoadJsService) {
- return LoadJsService.loadSequence("BindOnAccountCtrl");
- }
- }
- })
- /*关于我们页面*/
- .state('aboutUs', {
- cache: false,
- url: '/aboutUs',
- templateUrl: 'modules/account/views/aboutUs.html',
- controller: 'aboutUsCtrl',
- resolve: {
- aboutUs: function (LoadJsService) {
- return LoadJsService.loadSequence("aboutUsCtrl");
- }
- }
- })
- .state('notice', {
- cache: false,
- url: '/notice',
- templateUrl: 'modules/account/views/notice.html',
- controller: 'noticeCtrl',
- resolve: {
- notice: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeArgs");
- }
- }
- })
- .state('noticeDetail', {
- cache: false,
- url: '/noticeDetail',
- templateUrl: 'modules/account/views/noticeDetail.html',
- controller: 'noticeDetailCtrl',
- resolve: {
- notice: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeDetailArgs");
- }
- },
- params: {list: '', otherinfo: ''}
- })
- /*功能介绍页面*/
- .state('funcintro', {
- cache: false,
- url: '/funcintro',
- templateUrl: 'modules/account/views/funcIntroList.html',
- controller: 'FuncIntroListCtrl',
- resolve: {
- funcintro: function (LoadJsService) {
- return LoadJsService.loadSequence("FuncIntroListArgs");
- }
- }
- })
- /*功能介绍详情页面*/
- .state('funcintrodetail', {
- cache: false,
- url: '/funcintrodetail',
- templateUrl: 'modules/account/views/funcIntroDetail.html',
- controller: 'FuncIntroDetailCtrl',
- resolve: {
- funcintrodetail: function (LoadJsService) {
- return LoadJsService.loadSequence("FuncIntroDetailCtrl");
- }
- },
- params: {funcint: null}
- })
- /*地区省选择页面*/
- .state('chooseProvince', {
- cache: false,
- url: '/chooseProvince',
- templateUrl: 'modules/account/views/chooseProvince.html',
- controller: 'ChooseProvinceCtrl',
- resolve: {
- chooseProvince: function (LoadJsService) {
- return LoadJsService.loadSequence("ChooseProvinceArgs");
- }
- }
- })
- /*地区地级市选择页面*/
- .state('chooseCity', {
- cache: false,
- url: '/chooseCity',
- templateUrl: 'modules/account/views/chooseCity.html',
- controller: 'ChooseCityCtrl',
- resolve: {
- chooseCity: function (LoadJsService) {
- return LoadJsService.loadSequence("ChooseCityArgs");
- }
- },
- params: {provinceid: null}
- })
- /*联系方式页面*/
- .state('connectUs', {
- cache: false,
- url: '/connectUs',
- templateUrl: 'modules/account/views/connectUs.html',
- controller: 'connectUsCtrl',
- resolve: {
- connectUs: function (LoadJsService) {
- return LoadJsService.loadSequence("connectUsCtrl");
- }
- }
- })
- .state('linkus', {
- cache: false,
- url: '/linkus',
- templateUrl: 'modules/account/views/linkus.html',
- controller: 'linkusCtrl',
- resolve: {
- linkus: function (LoadJsService) {
- return LoadJsService.loadSequence("linkusCtrl");
- }
- }
- })
- /*我的介绍编辑页面*/
- .state('infoBook', {
- cache: false,
- url: '/infoBook',
- templateUrl: 'modules/account/views/infoBook.html',
- controller: 'infoBookCtrl',
- resolve: {
- infoBook: function (LoadJsService) {
- return LoadJsService.loadSequence("infoBookArgs");
- }
- }
- })
- /*我的发布页面*/
- .state('myPublish', {
- cache: false,
- url: '/myPublish',
- templateUrl: 'modules/account/views/myPublish.html',
- controller: 'myPublishCtrl',
- resolve: {
- myPublish: function (LoadJsService) {
- return LoadJsService.loadSequence("myPublishArgs");
- }
- }
- })
- /*权限审批页面*/
- .state('authorityApply', {
- cache: false,
- url: '/authorityApply/:content/:messageId/:type',
- templateUrl: 'modules/account/views/authorityApply.html',
- controller: 'authorityApplyCtrl',
- resolve: {
- authorityApply: function (LoadJsService) {
- return LoadJsService.loadSequence("authorityApplyCtrl");
- }
- },
- params: {content: "", messageId: {}, type: 0}
- })
- /*会员认证信息 2018*/
- .state('identifySystem', {
- cache: false,
- url: '/identifySystem',
- templateUrl: 'modules/account/views/identifySystem.html',
- controller: 'identifySystemCtrl',
- resolve: {
- identifySystemArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifySystemCtrl");
- }
- },
- })
- .state('myCheck', {
- cache: false,
- url: '/myCheck',
- templateUrl: 'modules/account/views/myCheck.html',
- controller: 'myCheckCtrl',
- resolve: {
- myCheckArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("myCheckCtrl");
- }
- },
- })
- /*会员认详情 2018*/
- .state('identifyDetail', {
- cache: false,
- url: '/identifyDetail',
- templateUrl: 'modules/account/views/identifyDetail.html',
- controller: 'identifyDetailCtrl',
- resolve: {
- identifyDetailArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifyDetailCtrl");
- }
- },
- params: {pageTitle: "", code: 0, action: ''}
- })
- .state('techDemandDetail', {
- cache: false,
- url: '/techDemandDetail',
- templateUrl: 'modules/account/views/techDemandDetail.html',
- controller: 'techDemandDetailCtrl',
- resolve: {
- techDemandDetailArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("techDemandDetailCtrl");
- }
- },
- })
- .state('techDemandCheck', {
- cache: false,
- url: '/techDemandCheck',
- templateUrl: 'modules/account/views/techDemandCheck.html',
- controller: 'techDemandCheckCtrl',
- resolve: {
- techDemandCheckArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("techDemandCheckCtrl");
- }
- },
- params: {id: 0, checkShow: 0, comefrom: "", list: ""}
- })
- .state('techDemandCheckAgain', {
- cache: false,
- url: '/techDemandCheckAgain',
- templateUrl: 'modules/account/views/techDemandCheckAgain.html',
- controller: 'techDemandCheckAgainCtrl',
- resolve: {
- techDemandCheckAgainArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("techDemandCheckAgainCtrl");
- }
- },
- params: {id: 0, checkShow: 0, resubmitData: ''}
- })
- .state('techDemandCheckDetail', {
- cache: false,
- url: '/techDemandCheckDetail',
- templateUrl: 'modules/account/views/techDemandCheckDetail.html',
- controller: 'techDemandCheckDetailCtrl',
- resolve: {
- techDemandCheckDetailArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("techDemandCheckDetailCtrl");
- }
- },
- params: {id: 0}
- })
- .state('technicalCheckDetail', {
- cache: false,
- url: '/technicalCheckDetail',
- templateUrl: 'modules/account/views/technicalCheckDetail.html',
- controller: 'technicalCheckDetailCtrl',
- resolve: {
- technicalCheckDetailArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("technicalCheckDetailCtrl");
- }
- },
- params: {id: 0, comefrom: ''}
- })
- .state('toDeclare', {
- cache: false,
- url: '/toDeclare/:list',
- templateUrl: 'modules/account/views/toDeclare.html',
- controller: 'toDeclareCtrl',
- resolve: {
- toDeclareArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("toDeclareCtrl");
- }
- },
- params: {list: '', picturelist: '', by2: ''}
- })
- //桐庐技术经纪人认证
- .state('identifyFormForTongLu', {
- cache: false,
- url: '/identifyFormForTongLu',
- templateUrl: 'modules/account/views/identifyFormForTongLu.html',
- controller: 'identifyFormForTongLuCtrl',
- resolve: {
- identifyFormArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifyFormForTongLuCtrl");
- }
- },
- params: {
- pageTitle: "",
- code: 0,
- type: 5100,
- id: 0,
- userid:0,
- action: 'submit',
- pagesize: 15,
- pagenum: 1,
- companyName: '',
- comfrom: '',
- url: '',
- formlist: ''
- }
- })
- /*认证表单 2018*/
- .state('identifyForm', {
- cache: false,
- url: '/identifyForm',
- templateUrl: 'modules/account/views/identifyForm.html',
- controller: 'identifyFormCtrl',
- resolve: {
- identifyFormArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifyFormCtrl");
- }
- },
- params: {
- pageTitle: "",
- code: 0,
- type: 5100,
- id: 0,
- action: 'submit',
- pagesize: 15,
- pagenum: 1,
- companyName: '',
- comfrom: '',
- url: '',
- list: ''
- }
- })
- /*认证表单 2018*/
- .state('identifyStatus', {
- cache: false,
- url: '/identifyStatus',
- templateUrl: 'modules/account/views/identifyStatus.html',
- controller: 'identifyStatusCtrl',
- resolve: {
- identifyStatusArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifyStatusCtrl");
- }
- },
- params: {
- pageTitle: "",
- code: 0,
- type: 0,
- id: 0,
- action: 'submit',
- pagesize: 15,
- pagenum: 1,
- companyName: '',
- comfrom: ''
- }
- })
- /*认证审核 2018*/
- .state('identifyCheck', {
- cache: false,
- url: '/identifyCheck',
- templateUrl: 'modules/account/views/identifyCheck.html',
- controller: 'identifyCheckCtrl',
- resolve: {
- identifyCheckArgs: function (LoadJsService) {
- return LoadJsService.loadSequence("identifyCheckCtrl");
- }
- },
- params: {pageTitle: "", code: 0}
- })/*会员认证信息*/
- .state('accountQualify', {
- cache: false,
- url: '/accountQualify',
- templateUrl: 'modules/account/views/accountQualify.html',
- controller: 'accountQualifyCtrl',
- resolve: {
- accountQualify: function (LoadJsService) {
- return LoadJsService.loadSequence("accountQualifyCtrl");
- }
- }
- })
- /*会员认证详细信息*/
- .state('accountQualifyContent', {
- cache: false,
- url: '/accountQualifyContent',
- templateUrl: 'modules/account/views/accountQualifyContent.html',
- controller: 'accountQualifyContentCtrl',
- resolve: {
- accountQualifyContent: function (LoadJsService) {
- return LoadJsService.loadSequence("accountQualifyContentCtrl");
- }
- },
- params: {messageid: 0}
- })
- /*上传身份证信息*/
- .state('personIdentify', {
- cache: false,
- url: '/personIdentify',
- templateUrl: 'modules/account/views/personIdentify.html',
- controller: 'personIdentifyCtrl',
- resolve: {
- personIdentify: function (LoadJsService) {
- return LoadJsService.loadSequence("personIdentifyArgs");
- }
- },
- params: {identify: ""}
- })
- /*上传单位信息*/
- .state('unitIdentify', {
- cache: false,
- url: '/unitIdentify',
- templateUrl: 'modules/account/views/unitIdentify.html',
- controller: 'unitIdentifyCtrl',
- resolve: {
- unitIdentify: function (LoadJsService) {
- return LoadJsService.loadSequence("unitIdentifyCtrl");
- }
- },
- params: {orgtype: -1}
- })
- /*上传在职信息*/
- .state('jobIdentify', {
- cache: false,
- url: '/jobIdentify',
- templateUrl: 'modules/account/views/jobIdentify.html',
- controller: 'jobIdentifyCtrl',
- resolve: {
- jobIdentify: function (LoadJsService) {
- return LoadJsService.loadSequence("jobIdentifyCtrl");
- }
- },
- params: {job: ""}
- })
- /*会员中心的首页*/
- .state('memberHome', {
- cache: false,
- url: '/memberHome',
- templateUrl: 'modules/account/views/memberHome.html',
- controller: 'memberHomeCtrl',
- resolve: {
- memberHome: function (LoadJsService) {
- return LoadJsService.loadSequence("memberHomeCtrl");
- }
- }
- })
- /*会员中心的会员介绍页*/
- .state('memberComent', {
- cache: false,
- url: '/memberComent',
- templateUrl: 'modules/account/views/memberComent.html',
- controller: 'memberComentCtrl',
- resolve: {
- memberComent: function (LoadJsService) {
- return LoadJsService.loadSequence("memberComentCtrl");
- }
- },
- params: {type: 0}
- })
- /*权益说明页面*/
- .state('memberRightExplain', {
- cache: false,
- url: '/memberRightExplain',
- templateUrl: 'modules/account/views/memberRightExplain.html',
- controller: 'memberRightExplainCtrl',
- resolve: {
- memberRightExplain: function (LoadJsService) {
- return LoadJsService.loadSequence("memberRightExplainCtrl");
- }
- }
- })
- /*权益详情页*/
- .state('rightDetails', {
- cache: false,
- url: '/rightDetails',
- templateUrl: 'modules/account/views/rightDetails.html',
- controller: 'rightDetailsCtrl',
- resolve: {
- rightDetails: function (LoadJsService) {
- return LoadJsService.loadSequence("rightDetailsCtrl");
- }
- },
- params: {index: 0}
- })
- /*升级管理页面*/
- .state('upGradeMangement', {
- cache: false,
- url: '/upGradeMangement',
- templateUrl: 'modules/account/views/upGradeMangement.html',
- controller: 'upGradeMangementCtrl',
- resolve: {
- upGradeMangement: function (LoadJsService) {
- return LoadJsService.loadSequence("upGradeMangementCtrl");
- }
- },
- params: {totalcurrency: 0}
- })
- /*设置普适币支付密码页面*/
- .state('payPsMoneyPassword', {
- cache: false,
- url: '/payPsMoneyPassword',
- templateUrl: 'modules/account/views/payPsMoneyPassword.html',
- controller: 'payPsMoneyPasswordCtrl',
- resolve: {
- upGradeMangement: function (LoadJsService) {
- return LoadJsService.loadSequence("payPsMoneyPasswordCtrl");
- }
- }
- })
- /*后台客服审核页面*/
- .state('myAuditMessage', {
- cache: false,
- url: '/myAuditMessage',
- templateUrl: 'modules/account/views/myAuditMessage.html',
- controller: 'myAuditMessageCtrl',
- resolve: {
- myAuditMessage: function (LoadJsService) {
- return LoadJsService.loadSequence("myAuditMessageCtrl");
- }
- }
- })
- /*后台客服审核内容页面*/
- .state('auditContent', {
- cache: false,
- url: '/auditContent',
- templateUrl: 'modules/account/views/auditContent.html',
- controller: 'auditContentCtrl',
- resolve: {
- auditContent: function (LoadJsService) {
- return LoadJsService.loadSequence("auditContentCtrl");
- }
- },
- params: {messageid: 0}
- })
- /*设置子账号超级管理员*/
- .state('accountSetChild', {
- cache: false,
- url: '/accountSetChild',
- templateUrl: 'modules/account/views/accountSetChild.html',
- controller: 'accountSetChildCtrl',
- resolve: {
- accountSetChild: function (LoadJsService) {
- return LoadJsService.loadSequence("accountSetChildCtrl");
- }
- }
- })
- /*反馈建议*/
- .state('newMessagePage', {
- cache: false,
- url: '/newMessagePage',
- templateUrl: 'modules/account/views/newMessagePage.html',
- controller: 'newMessagePageCtrl',
- resolve: {
- newMessagePage: function (LoadJsService) {
- return LoadJsService.loadSequence("newMessagePageCtrl");
- }
- }
- })
- .state('choiceResource', {
- cache: false,
- url: '/choiceResource',
- templateUrl: 'modules/account/views/choiceResource.html',
- controller: 'choiceResourceCtrl',
- resolve: {
- choiceResource: function (LoadJsService) {
- return LoadJsService.loadSequence("choiceResourceCtrl");
- }
- }
- })
- .state('aboutSuggestion', {
- cache: false,
- url: '/aboutSuggestion',
- templateUrl: 'modules/account/views/aboutSuggestion.html',
- controller: 'aboutSuggestionCtrl',
- resolve: {
- aboutSuggestion: function (LoadJsService) {
- return LoadJsService.loadSequence("aboutSuggestionCtrl");
- }
- }
- })
- .state('statisticalcenter', {
- cache: false,
- url: '/statisticalcenter',
- templateUrl: 'modules/account/views/statisticalcenter.html',
- controller: 'statisticalcenterCtrl',
- resolve: {
- statisticalcenter: function (LoadJsService) {
- return LoadJsService.loadSequence("statisticalcenterCtrl");
- }
- },
- params:{datalist:null}
- })
- .state('importOrgInfo', {
- cache: false,
- url: '/importOrgInfo',
- templateUrl: 'modules/account/views/importOrgInfo.html',
- controller: 'importOrgInfoCtrl',
- resolve: {
- importOrgInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("importOrgInfoCtrl");
- }
- },
- params: {restype: ''}
- })
- .state('exportField', {
- cache: false,
- url: '/exportField',
- templateUrl: 'modules/account/views/exportField.html',
- controller: 'exportFieldCtrl',
- resolve: {
- exportField: function (LoadJsService) {
- return LoadJsService.loadSequence("exportFieldCtrl");
- }
- },
- params: {reslist: '', uniquelist: ''}
- })
- .state('quarterlyImport', {
- cache: false,
- url: '/quarterlyImport',
- templateUrl: 'modules/account/views/quarterlyImport.html',
- controller: 'quarterlyImportCtrl',
- resolve: {
- quarterlyImport: function (LoadJsService) {
- return LoadJsService.loadSequence("quarterlyImportCtrl");
- }
- },
- params: {importsuccess: 0, orgdatalist: ""}
- })
- .state('dataAnalysis', {
- cache: false,
- url: '/dataAnalysis',
- templateUrl: 'modules/account/views/dataAnalysis.html',
- controller: 'dataAnalysisCtrl',
- resolve: {
- dataAnalysis: function (LoadJsService) {
- return LoadJsService.loadSequence("dataAnalysisCtrl");
- }
- },
- params: {namelist: ''}
- })
- .state('quarterlyAnalysis', {
- cache: false,
- url: '/quarterlyAnalysis',
- templateUrl: 'modules/account/views/quarterlyAnalysis.html',
- controller: 'quarterlyAnalysisCtrl',
- resolve: {
- quarterlyAnalysis: function (LoadJsService) {
- return LoadJsService.loadSequence("quarterlyAnalysisCtrl");
- }
- },
- params: {importsuccess: 0}
- })
- .state('cooperationSubsidyCheck', {
- cache: false,
- url: '/cooperationSubsidyCheck',
- templateUrl: 'modules/account/views/cooperationSubsidyCheck.html',
- controller: 'cooperationSubsidyCheckCtrl',
- resolve: {
- cooperationSubsidyCheck: function (LoadJsService) {
- return LoadJsService.loadSequence("cooperationSubsidyCheckCtrl");
- }
- }
- })
- .state('SubsidyauditafteCheck', {
- cache: false,
- url: '/SubsidyauditafteCheck',
- templateUrl: 'modules/account/views/SubsidyauditafteCheck.html',
- controller: 'SubsidyauditafteCheckCtrl',
- resolve: {
- cooperationSubsidyCheck: function (LoadJsService) {
- return LoadJsService.loadSequence("SubsidyauditafteCheckCtrl");
- }
- }
- })
- .state('SubsidyauditafteExport', {
- cache: false,
- url: '/SubsidyauditafteExport',
- templateUrl: 'modules/account/views/SubsidyauditafteExport.html',
- controller: 'SubsidyauditafteExportCtrl',
- resolve: {
- cooperationSubsidyCheck: function (LoadJsService) {
- return LoadJsService.loadSequence("SubsidyauditafteExportCtrl");
- }
- }
- })
- .state('policySetting', {
- cache: false,
- url: '/policySetting',
- templateUrl: 'modules/account/views/policySetting.html',
- controller: 'policySettingCtrl',
- resolve: {
- policySetting: function (LoadJsService) {
- return LoadJsService.loadSequence("policySettingCtrl");
- }
- },
- params: {list: ''}
- })
- .state('cooperateDetail', {
- cache: false,
- url: '/cooperateDetail/:id',
- templateUrl: 'modules/account/views/cooperateDetail.html',
- controller: 'cooperateDetailCtrl',
- resolve: {
- cooperateDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("cooperateDetailCtrl");
- }
- },
- params: {list: '', id: ''}
- })
- .state('SubsidyauditafteDetail', {
- cache: false,
- url: '/SubsidyauditafteDetail/:id',
- templateUrl: 'modules/account/views/SubsidyauditafteDetail.html',
- controller: 'SubsidyauditafteDetailCtrl',
- resolve: {
- cooperateDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("SubsidyauditafteDetailCtrl");
- }
- },
- params: {list: '', id: ''}
- })
- .state('secondOrgSelfReport', {
- cache: false,
- url: '/secondOrgSelfReport/:connid',
- templateUrl: 'modules/account/views/secondOrgSelfReport.html',
- controller: 'secondOrgSelfReportCtrl',
- resolve: {
- secondOrgSelfReport: function (LoadJsService) {
- return LoadJsService.loadSequence("secondOrgSelfReportCtrl");
- }
- },
- params: {value: '', highorginspection: '', connid: ''}
- })
- .state('orgInspectDetail', {
- cache: false,
- url: '/orgInspectDetail/:connid/:orgInspect',
- templateUrl: 'modules/account/views/orgInspectDetail.html',
- controller: 'orgInspectDetailCtrl',
- resolve: {
- orgInspectDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("orgInspectDetailCtrl");
- }
- },
- params: {orgInspect: "", connnumber: '', connid: ''}
- })
- .state('orgInspectList', {
- cache: false,
- url: '/orgInspectList/:isuserlist',
- templateUrl: 'modules/account/views/orgInspectList.html',
- controller: 'orgInspectListCtrl',
- resolve: {
- orgInspectList: function (LoadJsService) {
- return LoadJsService.loadSequence("orgInspectListCtrl");
- }
- },
- params: {isuserlist: ""}
- })
- .state('orgSelfReport', {
- cache: false,
- url: '/orgSelfReport/:connid/:registerdate',
- templateUrl: 'modules/account/views/orgSelfReport.html',
- controller: 'orgSelfReportCtrl',
- resolve: {
- orgSelfReport: function (LoadJsService) {
- return LoadJsService.loadSequence("orgSelfReportCtrl");
- }
- },
- params: {data: '', scoreConnid: '', highorginspection: '', registerdate: '', connid: ''}
- })
- .state('orgInspect', {
- cache: false,
- url: '/orgInspect',
- templateUrl: 'modules/account/views/orgInspect.html',
- controller: 'orgInspectCtrl',
- resolve: {
- orgInspect: function (LoadJsService) {
- return LoadJsService.loadSequence("orgInspectCtrl");
- }
- },
- params: {value: "", highorginspection: ""}
- })
- .state('newNotification', {
- cache: false,
- url: '/newNotification',
- templateUrl: 'modules/account/views/newNotification.html',
- controller: 'newNotificationCtrl',
- resolve: {
- newNotification: function (LoadJsService) {
- return LoadJsService.loadSequence("newNotificationCtrl");
- }
- },
- params: {notice: ""}
- })
- .state('notificationDetail', {
- cache: false,
- url: '/notificationDetail/:unique',
- templateUrl: 'modules/account/views/notificationDetail.html',
- controller: 'notificationDetailCtrl',
- resolve: {
- notificationDetail: function (LoadJsService) {
- return LoadJsService.loadSequence("notificationDetailCtrl");
- }
- },
- params: {notice: "", unique: 0}
- })
- .state('notification', {
- cache: false,
- url: '/notification',
- templateUrl: 'modules/account/views/notification.html',
- controller: 'notificationCtrl',
- resolve: {
- notification: function (LoadJsService) {
- return LoadJsService.loadSequence("notificationCtrl");
- }
- }
- })
- .state('receiveInfo', {
- cache: false,
- url: '/receiveInfo',
- templateUrl: 'modules/account/views/receiveInfo.html',
- controller: 'receiveInfoCtrl',
- resolve: {
- receiveInfo: function (LoadJsService) {
- return LoadJsService.loadSequence("receiveInfoCtrl");
- }
- },
- params: {smsList: ""}
- })
- .state('noticeHelper', {
- cache: false,
- url: '/noticeHelper',
- templateUrl: 'modules/account/views/noticeHelper.html',
- controller: 'noticeHelperCtrl',
- resolve: {
- noticeHelper: function (LoadJsService) {
- return LoadJsService.loadSequence("noticeHelperCtrl");
- }
- },
- params: {list: ""}
- })
- .state('sendMessage', {
- cache: false,
- url: '/sendMessage',
- templateUrl: 'modules/account/views/sendMessage.html',
- controller: 'sendMessageCtrl',
- resolve: {
- sendMessage: function (LoadJsService) {
- return LoadJsService.loadSequence("sendMessageCtrl");
- }
- },
- params: {resourcelist: "", job: "", resrole: ""}
- })
- /*反馈建议审核内容页面*/
- .state('auditSuggestion', {
- cache: false,
- url: '/auditSuggestion',
- templateUrl: 'modules/account/views/auditSuggestion.html',
- controller: 'auditSuggestionCtrl',
- resolve: {
- auditContent: function (LoadJsService) {
- return LoadJsService.loadSequence("auditSuggestionCtrl");
- }
- },
- params: {messageid: 0, targetid: 0, type: ""}
- })
- /*选择单位类型*/
- .state('chooseUnitType', {
- cache: false,
- url: '/chooseUnitType',
- templateUrl: 'modules/account/views/chooseUnitType.html',
- controller: 'chooseUnitTypeCtrl',
- resolve: {
- chooseUnitType: function (LoadJsService) {
- return LoadJsService.loadSequence("chooseUnitTypeCtrl");
- }
- }
- })
- /*会员认证结果页*/
- .state('successIdentify', {
- cache: false,
- url: '/successIdentify',
- templateUrl: 'modules/account/views/successIdentify.html',
- controller: 'successIdentifyCtrl',
- resolve: {
- successIdentify: function (LoadJsService) {
- return LoadJsService.loadSequence("successIdentifyCtrl");
- }
- }
- })
- /*我的信息*/
- .state('myInformation', {
- cache: false,
- url: '/myInformation',
- templateUrl: 'modules/account/views/myInformation.html',
- controller: 'myInformationCtrl',
- resolve: {
- myInformation: function (LoadJsService) {
- return LoadJsService.loadSequence("myInformationCtrl");
- }
- }
- })
- /*所有消息*/
- .state('myMessageListCategory', {
- cache: false,
- url: '/myMessageListCategory',
- templateUrl: 'modules/account/views/myMessageListCategory.html',
- controller: 'myMessageListCategoryCtrl',
- resolve: {
- myMessageListCategory: function (LoadJsService) {
- return LoadJsService.loadSequence("myMessageListCategoryArgs");
- }
- },
- params: {messageIndex: -1}
- })
- //统计编辑页面
- .state('Statisticseditor', {
- cache: false,
- url: '/Statisticseditor',
- templateUrl: 'modules/account/views/StatisticseditorCtrl.html',
- controller: 'StatisticseditorCtrl',
- resolve: {
- Statisticseditor: function (LoadJsService) {
- return LoadJsService.loadSequence("StatisticseditorCtrl");
- }
- },
- params: {mapList:null,tableList:null,datalist:null}
- })
- //工商局信息一件更新页面
- .state('Businessdata', {
- cache: false,
- url: '/Businessdata',
- templateUrl: 'modules/account/views/Businessdata.html',
- controller: 'BusinessdataCtrl',
- resolve: {
- Statisticseditor: function (LoadJsService) {
- return LoadJsService.loadSequence("BusinessdataCtrl");
- }
- },
- params: {mapList:null,tableList:null,datalist:null}
- })
- //技术合同导入
- .state('Teclcontract', {
- cache: false,
- url: '/Teclcontract',
- templateUrl: 'modules/account/views/Teclcontract.html',
- controller: 'TeclcontractCtrl',
- resolve: {
- Statisticseditor: function (LoadJsService) {
- return LoadJsService.loadSequence("TeclcontractCtrl");
- }
- },
- params: {mapList:null,tableList:null,datalist:null}
- })
- .state('Teclcontractlist', {
- cache: false,
- url: '/Teclcontractlist',
- templateUrl: 'modules/account/views/Teclcontractlist.html',
- controller: 'TeclcontractlistCtrl',
- resolve: {
- Statisticseditor: function (LoadJsService) {
- return LoadJsService.loadSequence("TeclcontractlistCtrl");
- }
- },
- params: {mapList:null,tableList:null,datalist:null}
- })
- //通讯页面
- .state('chitchat', {
- cache: false,
- url: '/chitchat',
- templateUrl: 'modules/account/views/chitchat.html',
- controller: 'chitchatCtrl',
- resolve: {
- Statisticseditor: function (LoadJsService) {
- return LoadJsService.loadSequence("chitchatCtrl");
- }
- },
- params: {mapList:null,tableList:null,datalist:null}
- })
- }]);
|