accountRoute.js 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295
  1. app.config(['$stateProvider', function ($stateProvider) {
  2. $stateProvider
  3. /*设置名称*/
  4. .state('setname', {
  5. cache: false,
  6. url: '/setname',
  7. templateUrl: 'modules/account/views/setName.html',
  8. controller: 'SetNameCtrl',
  9. resolve: {
  10. setname: function (LoadJsService) {
  11. return LoadJsService.loadSequence("SetNameArgs");
  12. }
  13. },
  14. params: {userid: 0, username: null, userpwd: null}
  15. })
  16. /*我的收藏*/
  17. .state('mycollection', {
  18. cache: false,
  19. url: '/mycollection',
  20. templateUrl: 'modules/account/views/myCollection.html',
  21. controller: 'MyCollectionCtrl',
  22. resolve: {
  23. mycollection: function (LoadJsService) {
  24. return LoadJsService.loadSequence("MyCollectionArgs");
  25. }
  26. },
  27. params: {tabindex: 0}
  28. })
  29. .state('noticeCusServ', {
  30. cache: false,
  31. url: '/noticeCusServ',
  32. templateUrl: 'modules/account/views/noticeCusServ.html',
  33. controller: 'noticeCusServCtrl',
  34. resolve: {
  35. noticeCusServ: function (LoadJsService) {
  36. return LoadJsService.loadSequence("noticeCusServArgs");
  37. }
  38. }
  39. })
  40. .state('noticeService', {
  41. cache: false,
  42. url: '/noticeService',
  43. templateUrl: 'modules/account/views/noticeService.html',
  44. controller: 'noticeServiceCtrl',
  45. resolve: {
  46. noticeService: function (LoadJsService) {
  47. return LoadJsService.loadSequence("noticeServiceArgs");
  48. }
  49. }
  50. })
  51. .state('noticeServiceDetail', {
  52. cache: false,
  53. url: '/noticeServiceDetail',
  54. templateUrl: 'modules/account/views/noticeServiceDetail.html',
  55. controller: 'noticeServiceDetailCtrl',
  56. resolve: {
  57. noticeServiceDetail: function (LoadJsService) {
  58. return LoadJsService.loadSequence("noticeServiceDetailArgs");
  59. }
  60. },
  61. params: {epidemic: ''}
  62. })
  63. /*我的喜好*/
  64. .state('myfav', {
  65. cache: false,
  66. url: '/myfav',
  67. templateUrl: 'modules/account/views/myFav.html',
  68. controller: 'MyFavCtrl',
  69. resolve: {
  70. myfav: function (LoadJsService) {
  71. return LoadJsService.loadSequence("MyFavCtrl");
  72. }
  73. }
  74. })
  75. /*设置*/
  76. .state('set', {
  77. cache: false,
  78. url: '/set',
  79. templateUrl: 'modules/account/views/accountSet.html',
  80. controller: 'SetCtrl',
  81. resolve: {
  82. set: function (LoadJsService) {
  83. return LoadJsService.loadSequence("SetCtrl");
  84. }
  85. }
  86. })
  87. /*日志*/
  88. .state('log', {
  89. cache: false,
  90. url: '/log',
  91. templateUrl: 'modules/account/views/log.html',
  92. controller: 'logCtrl',
  93. resolve: {
  94. set: function (LoadJsService) {
  95. return LoadJsService.loadSequence("logArgs");
  96. }
  97. }
  98. })
  99. /*一键上传*/
  100. .state('Import', {
  101. cache: false,
  102. url: '/Import/:listparams',
  103. templateUrl: 'modules/account/views/Import.html',
  104. controller: 'ImportCtrl',
  105. resolve: {
  106. Import: function (LoadJsService) {
  107. return LoadJsService.loadSequence("ImportArgs");
  108. }
  109. },
  110. params: {listparams:null}
  111. })
  112. /*一键上传详情*/
  113. .state('ImportEdit', {
  114. cache: false,
  115. url: '/ImportEdit/:listparams',
  116. templateUrl: 'modules/account/views/ImportEdit.html',
  117. controller: 'ImportEditCtrl',
  118. resolve: {
  119. ImportEdit: function (LoadJsService) {
  120. return LoadJsService.loadSequence("ImportEditArgs");
  121. }
  122. },
  123. params: {listparams:null}
  124. })
  125. /*我的消息*/
  126. .state('mymessage', {
  127. cache: false,
  128. url: '/mymessage',
  129. templateUrl: 'modules/account/views/myMessage.html',
  130. controller: 'MyMessageCtrl',
  131. resolve: {
  132. mymessage: function (LoadJsService) {
  133. return LoadJsService.loadSequence("MyMessageArgs");
  134. }
  135. }
  136. })
  137. /*编辑资料*/
  138. .state('editdata', {
  139. cache: false,
  140. url: '/editdata',
  141. params: {"userInfo": null},
  142. templateUrl: 'modules/account/views/editData.html',
  143. controller: 'EditDataCtrl',
  144. resolve: {
  145. editdata: function (LoadJsService) {
  146. return LoadJsService.loadSequence("EditDataArgs");
  147. }
  148. }
  149. })
  150. /*修改密码*/
  151. .state('updatepwd', {
  152. cache: false,
  153. url: '/updatepwd',
  154. params: {"data": null},
  155. templateUrl: 'modules/account/views/updatepwd.html',
  156. controller: 'EditDataCtrl',
  157. resolve: {
  158. editdata: function (LoadJsService) {
  159. return LoadJsService.loadSequence("EditDataArgs");
  160. }
  161. }
  162. })
  163. /*用户主页*/
  164. .state('publisher', {
  165. cache: false,
  166. url: '/publisher',
  167. templateUrl: 'modules/account/views/publisher.html',
  168. controller: 'PublisherCtrl',
  169. resolve: {
  170. publisher: function (LoadJsService) {
  171. return LoadJsService.loadSequence("PublisherArgs");
  172. }
  173. },
  174. params: {Id: null}
  175. })
  176. .state('reward', {
  177. cache: false,
  178. url: '/reward',
  179. templateUrl: 'modules/account/views/reward.html',
  180. controller: 'rewardCtrl',
  181. resolve: {
  182. reward: function (LoadJsService) {
  183. return LoadJsService.loadSequence("rewardArgs");
  184. }
  185. },
  186. })
  187. /*我的-关注、粉丝、访客*/
  188. .state('fancenter', {
  189. cache: false,
  190. url: '/fancenter',
  191. templateUrl: 'modules/account/views/fanCenter.html',
  192. controller: 'FanCenterCtrl',
  193. resolve: {
  194. fancenter: function (LoadJsService) {
  195. return LoadJsService.loadSequence("FanCenterArgs");
  196. }
  197. },
  198. params: {act: "", userid: 0}
  199. })
  200. /*评论*/
  201. .state('comment', {
  202. cache: false,
  203. url: '/comment',
  204. templateUrl: 'modules/account/views/comment.html',
  205. controller: 'CommentCtrl',
  206. resolve: {
  207. comment: function (LoadJsService) {
  208. return LoadJsService.loadSequence("CommenArgs");
  209. }
  210. },
  211. params: {mode: 2, infoid: 0, infotype: 0, sortkey: 0, sorttype: "", comfrom: ''}
  212. })
  213. .state('commitment', {
  214. cache: false,
  215. url: '/commitment',
  216. templateUrl: 'modules/account/views/commitment.html',
  217. controller: 'commitmentCtrl',
  218. resolve: {
  219. commitment: function (LoadJsService) {
  220. return LoadJsService.loadSequence("commitmentArgs");
  221. }
  222. },
  223. params: {formlist: ''}
  224. })
  225. .state('liyangLetter', {
  226. cache: false,
  227. url: '/commitment',
  228. templateUrl: 'modules/account/views/liyangLetter.html',
  229. controller: 'liyangLetterCtrl',
  230. resolve: {
  231. liyangLetter: function (LoadJsService) {
  232. return LoadJsService.loadSequence("liyangLetterArgs");
  233. }
  234. },
  235. })
  236. .state('demandRewardDetail', {
  237. cache: false,
  238. url: '/demandRewardDetail',
  239. templateUrl: 'modules/account/views/demandRewardDetail.html',
  240. controller: 'demandRewardDetailCtrl',
  241. resolve: {
  242. demandRewardDetail: function (LoadJsService) {
  243. return LoadJsService.loadSequence("demandRewardDetailArgs");
  244. }
  245. },
  246. params: {resid: 0, comefrom: "", list: "", flag: ''}
  247. })
  248. .state('demandRewardCheck', {
  249. cache: false,
  250. url: '/demandRewardCheck',
  251. templateUrl: 'modules/account/views/demandRewardCheck.html',
  252. controller: 'demandRewardCheckCtrl',
  253. resolve: {
  254. demandRewardCheck: function (LoadJsService) {
  255. return LoadJsService.loadSequence("demandRewardCheckArgs");
  256. }
  257. },
  258. })
  259. .state('technicalRewardCheck', {
  260. cache: false,
  261. url: '/technicalRewardCheck',
  262. templateUrl: 'modules/account/views/technicalRewardCheck.html',
  263. controller: 'technicalRewardCheckCtrl',
  264. resolve: {
  265. technicalRewardCheck: function (LoadJsService) {
  266. return LoadJsService.loadSequence("technicalRewardCheckArgs");
  267. }
  268. },
  269. params: {comefrom: ""}
  270. })
  271. .state('signDemandContract', {
  272. cache: false,
  273. url: '/signDemandContract',
  274. templateUrl: 'modules/account/views/signDemandContract.html',
  275. controller: 'signDemandContractCtrl',
  276. resolve: {
  277. signDemandContract: function (LoadJsService) {
  278. return LoadJsService.loadSequence("signDemandContractArgs");
  279. }
  280. },
  281. params: {
  282. resid: 0,
  283. pageTitle: "",
  284. code: 0,
  285. type: 5100,
  286. id: 0,
  287. action: 'submit',
  288. pagesize: 15,
  289. pagenum: 1,
  290. companyName: '',
  291. comfrom: '',
  292. url: ''
  293. }
  294. })
  295. .state('signDemandContractDetail', {
  296. cache: false,
  297. url: '/signDemandContract',
  298. templateUrl: 'modules/account/views/signDemandContractDetail.html',
  299. controller: 'signDemandContractDetailCtrl',
  300. resolve: {
  301. signDemandContractDetail: function (LoadJsService) {
  302. return LoadJsService.loadSequence("signDemandContractDetailArgs");
  303. }
  304. },
  305. params: {
  306. contract: ""
  307. }
  308. })
  309. .state('technicalawardapplication', {
  310. cache: false,
  311. url: '/technicalawardapplication',
  312. templateUrl: 'modules/account/views/technicalawardapplication.html',
  313. controller: 'technicalawardapplicationCtrl',
  314. resolve: {
  315. technicalawardapplication: function (LoadJsService) {
  316. return LoadJsService.loadSequence("technicalawardapplicationArgs");
  317. }
  318. },
  319. params: {
  320. resid: 0,
  321. pageTitle: "",
  322. code: 0,
  323. type: 5100,
  324. id: 0,
  325. action: 'submit',
  326. pagesize: 15,
  327. pagenum: 1,
  328. companyName: '',
  329. comfrom: '',
  330. url: '',
  331. restype: 0,
  332. list: '',
  333. flag: ''
  334. }
  335. })
  336. /*账号绑定与修改密码*/
  337. .state('BindOnAccount', {
  338. cache: false,
  339. url: '/BindOnAccount',
  340. templateUrl: 'modules/account/views/BindOnAccount.html',
  341. controller: 'BindOnAccountCtrl',
  342. resolve: {
  343. BindOnAccount: function (LoadJsService) {
  344. return LoadJsService.loadSequence("BindOnAccountCtrl");
  345. }
  346. }
  347. })
  348. /*关于我们页面*/
  349. .state('aboutUs', {
  350. cache: false,
  351. url: '/aboutUs',
  352. templateUrl: 'modules/account/views/aboutUs.html',
  353. controller: 'aboutUsCtrl',
  354. resolve: {
  355. aboutUs: function (LoadJsService) {
  356. return LoadJsService.loadSequence("aboutUsCtrl");
  357. }
  358. }
  359. })
  360. .state('notice', {
  361. cache: false,
  362. url: '/notice',
  363. templateUrl: 'modules/account/views/notice.html',
  364. controller: 'noticeCtrl',
  365. resolve: {
  366. notice: function (LoadJsService) {
  367. return LoadJsService.loadSequence("noticeArgs");
  368. }
  369. }
  370. })
  371. .state('noticeDetail', {
  372. cache: false,
  373. url: '/noticeDetail',
  374. templateUrl: 'modules/account/views/noticeDetail.html',
  375. controller: 'noticeDetailCtrl',
  376. resolve: {
  377. notice: function (LoadJsService) {
  378. return LoadJsService.loadSequence("noticeDetailArgs");
  379. }
  380. },
  381. params: {list: '', otherinfo: ''}
  382. })
  383. /*功能介绍页面*/
  384. .state('funcintro', {
  385. cache: false,
  386. url: '/funcintro',
  387. templateUrl: 'modules/account/views/funcIntroList.html',
  388. controller: 'FuncIntroListCtrl',
  389. resolve: {
  390. funcintro: function (LoadJsService) {
  391. return LoadJsService.loadSequence("FuncIntroListArgs");
  392. }
  393. }
  394. })
  395. /*功能介绍详情页面*/
  396. .state('funcintrodetail', {
  397. cache: false,
  398. url: '/funcintrodetail',
  399. templateUrl: 'modules/account/views/funcIntroDetail.html',
  400. controller: 'FuncIntroDetailCtrl',
  401. resolve: {
  402. funcintrodetail: function (LoadJsService) {
  403. return LoadJsService.loadSequence("FuncIntroDetailCtrl");
  404. }
  405. },
  406. params: {funcint: null}
  407. })
  408. /*地区省选择页面*/
  409. .state('chooseProvince', {
  410. cache: false,
  411. url: '/chooseProvince',
  412. templateUrl: 'modules/account/views/chooseProvince.html',
  413. controller: 'ChooseProvinceCtrl',
  414. resolve: {
  415. chooseProvince: function (LoadJsService) {
  416. return LoadJsService.loadSequence("ChooseProvinceArgs");
  417. }
  418. }
  419. })
  420. /*地区地级市选择页面*/
  421. .state('chooseCity', {
  422. cache: false,
  423. url: '/chooseCity',
  424. templateUrl: 'modules/account/views/chooseCity.html',
  425. controller: 'ChooseCityCtrl',
  426. resolve: {
  427. chooseCity: function (LoadJsService) {
  428. return LoadJsService.loadSequence("ChooseCityArgs");
  429. }
  430. },
  431. params: {provinceid: null}
  432. })
  433. /*联系方式页面*/
  434. .state('connectUs', {
  435. cache: false,
  436. url: '/connectUs',
  437. templateUrl: 'modules/account/views/connectUs.html',
  438. controller: 'connectUsCtrl',
  439. resolve: {
  440. connectUs: function (LoadJsService) {
  441. return LoadJsService.loadSequence("connectUsCtrl");
  442. }
  443. }
  444. })
  445. .state('linkus', {
  446. cache: false,
  447. url: '/linkus',
  448. templateUrl: 'modules/account/views/linkus.html',
  449. controller: 'linkusCtrl',
  450. resolve: {
  451. linkus: function (LoadJsService) {
  452. return LoadJsService.loadSequence("linkusCtrl");
  453. }
  454. }
  455. })
  456. /*我的介绍编辑页面*/
  457. .state('infoBook', {
  458. cache: false,
  459. url: '/infoBook',
  460. templateUrl: 'modules/account/views/infoBook.html',
  461. controller: 'infoBookCtrl',
  462. resolve: {
  463. infoBook: function (LoadJsService) {
  464. return LoadJsService.loadSequence("infoBookArgs");
  465. }
  466. }
  467. })
  468. /*我的发布页面*/
  469. .state('myPublish', {
  470. cache: false,
  471. url: '/myPublish',
  472. templateUrl: 'modules/account/views/myPublish.html',
  473. controller: 'myPublishCtrl',
  474. resolve: {
  475. myPublish: function (LoadJsService) {
  476. return LoadJsService.loadSequence("myPublishArgs");
  477. }
  478. }
  479. })
  480. /*权限审批页面*/
  481. .state('authorityApply', {
  482. cache: false,
  483. url: '/authorityApply/:content/:messageId/:type',
  484. templateUrl: 'modules/account/views/authorityApply.html',
  485. controller: 'authorityApplyCtrl',
  486. resolve: {
  487. authorityApply: function (LoadJsService) {
  488. return LoadJsService.loadSequence("authorityApplyCtrl");
  489. }
  490. },
  491. params: {content: "", messageId: {}, type: 0}
  492. })
  493. /*会员认证信息 2018*/
  494. .state('identifySystem', {
  495. cache: false,
  496. url: '/identifySystem',
  497. templateUrl: 'modules/account/views/identifySystem.html',
  498. controller: 'identifySystemCtrl',
  499. resolve: {
  500. identifySystemArgs: function (LoadJsService) {
  501. return LoadJsService.loadSequence("identifySystemCtrl");
  502. }
  503. },
  504. })
  505. .state('myCheck', {
  506. cache: false,
  507. url: '/myCheck',
  508. templateUrl: 'modules/account/views/myCheck.html',
  509. controller: 'myCheckCtrl',
  510. resolve: {
  511. myCheckArgs: function (LoadJsService) {
  512. return LoadJsService.loadSequence("myCheckCtrl");
  513. }
  514. },
  515. })
  516. /*会员认详情 2018*/
  517. .state('identifyDetail', {
  518. cache: false,
  519. url: '/identifyDetail',
  520. templateUrl: 'modules/account/views/identifyDetail.html',
  521. controller: 'identifyDetailCtrl',
  522. resolve: {
  523. identifyDetailArgs: function (LoadJsService) {
  524. return LoadJsService.loadSequence("identifyDetailCtrl");
  525. }
  526. },
  527. params: {pageTitle: "", code: 0, action: ''}
  528. })
  529. .state('techDemandDetail', {
  530. cache: false,
  531. url: '/techDemandDetail',
  532. templateUrl: 'modules/account/views/techDemandDetail.html',
  533. controller: 'techDemandDetailCtrl',
  534. resolve: {
  535. techDemandDetailArgs: function (LoadJsService) {
  536. return LoadJsService.loadSequence("techDemandDetailCtrl");
  537. }
  538. },
  539. })
  540. .state('techDemandCheck', {
  541. cache: false,
  542. url: '/techDemandCheck',
  543. templateUrl: 'modules/account/views/techDemandCheck.html',
  544. controller: 'techDemandCheckCtrl',
  545. resolve: {
  546. techDemandCheckArgs: function (LoadJsService) {
  547. return LoadJsService.loadSequence("techDemandCheckCtrl");
  548. }
  549. },
  550. params: {id: 0, checkShow: 0, comefrom: "", list: ""}
  551. })
  552. .state('techDemandCheckAgain', {
  553. cache: false,
  554. url: '/techDemandCheckAgain',
  555. templateUrl: 'modules/account/views/techDemandCheckAgain.html',
  556. controller: 'techDemandCheckAgainCtrl',
  557. resolve: {
  558. techDemandCheckAgainArgs: function (LoadJsService) {
  559. return LoadJsService.loadSequence("techDemandCheckAgainCtrl");
  560. }
  561. },
  562. params: {id: 0, checkShow: 0, resubmitData: ''}
  563. })
  564. .state('techDemandCheckDetail', {
  565. cache: false,
  566. url: '/techDemandCheckDetail',
  567. templateUrl: 'modules/account/views/techDemandCheckDetail.html',
  568. controller: 'techDemandCheckDetailCtrl',
  569. resolve: {
  570. techDemandCheckDetailArgs: function (LoadJsService) {
  571. return LoadJsService.loadSequence("techDemandCheckDetailCtrl");
  572. }
  573. },
  574. params: {id: 0}
  575. })
  576. .state('technicalCheckDetail', {
  577. cache: false,
  578. url: '/technicalCheckDetail',
  579. templateUrl: 'modules/account/views/technicalCheckDetail.html',
  580. controller: 'technicalCheckDetailCtrl',
  581. resolve: {
  582. technicalCheckDetailArgs: function (LoadJsService) {
  583. return LoadJsService.loadSequence("technicalCheckDetailCtrl");
  584. }
  585. },
  586. params: {id: 0, comefrom: ''}
  587. })
  588. .state('toDeclare', {
  589. cache: false,
  590. url: '/toDeclare/:list',
  591. templateUrl: 'modules/account/views/toDeclare.html',
  592. controller: 'toDeclareCtrl',
  593. resolve: {
  594. toDeclareArgs: function (LoadJsService) {
  595. return LoadJsService.loadSequence("toDeclareCtrl");
  596. }
  597. },
  598. params: {list: '', picturelist: '', by2: ''}
  599. })
  600. //桐庐技术经纪人认证
  601. .state('identifyFormForTongLu', {
  602. cache: false,
  603. url: '/identifyFormForTongLu',
  604. templateUrl: 'modules/account/views/identifyFormForTongLu.html',
  605. controller: 'identifyFormForTongLuCtrl',
  606. resolve: {
  607. identifyFormArgs: function (LoadJsService) {
  608. return LoadJsService.loadSequence("identifyFormForTongLuCtrl");
  609. }
  610. },
  611. params: {
  612. pageTitle: "",
  613. code: 0,
  614. type: 5100,
  615. id: 0,
  616. userid:0,
  617. action: 'submit',
  618. pagesize: 15,
  619. pagenum: 1,
  620. companyName: '',
  621. comfrom: '',
  622. url: '',
  623. formlist: ''
  624. }
  625. })
  626. /*认证表单 2018*/
  627. .state('identifyForm', {
  628. cache: false,
  629. url: '/identifyForm',
  630. templateUrl: 'modules/account/views/identifyForm.html',
  631. controller: 'identifyFormCtrl',
  632. resolve: {
  633. identifyFormArgs: function (LoadJsService) {
  634. return LoadJsService.loadSequence("identifyFormCtrl");
  635. }
  636. },
  637. params: {
  638. pageTitle: "",
  639. code: 0,
  640. type: 5100,
  641. id: 0,
  642. action: 'submit',
  643. pagesize: 15,
  644. pagenum: 1,
  645. companyName: '',
  646. comfrom: '',
  647. url: '',
  648. list: ''
  649. }
  650. })
  651. /*认证表单 2018*/
  652. .state('identifyStatus', {
  653. cache: false,
  654. url: '/identifyStatus',
  655. templateUrl: 'modules/account/views/identifyStatus.html',
  656. controller: 'identifyStatusCtrl',
  657. resolve: {
  658. identifyStatusArgs: function (LoadJsService) {
  659. return LoadJsService.loadSequence("identifyStatusCtrl");
  660. }
  661. },
  662. params: {
  663. pageTitle: "",
  664. code: 0,
  665. type: 0,
  666. id: 0,
  667. action: 'submit',
  668. pagesize: 15,
  669. pagenum: 1,
  670. companyName: '',
  671. comfrom: ''
  672. }
  673. })
  674. /*认证审核 2018*/
  675. .state('identifyCheck', {
  676. cache: false,
  677. url: '/identifyCheck',
  678. templateUrl: 'modules/account/views/identifyCheck.html',
  679. controller: 'identifyCheckCtrl',
  680. resolve: {
  681. identifyCheckArgs: function (LoadJsService) {
  682. return LoadJsService.loadSequence("identifyCheckCtrl");
  683. }
  684. },
  685. params: {pageTitle: "", code: 0}
  686. })/*会员认证信息*/
  687. .state('accountQualify', {
  688. cache: false,
  689. url: '/accountQualify',
  690. templateUrl: 'modules/account/views/accountQualify.html',
  691. controller: 'accountQualifyCtrl',
  692. resolve: {
  693. accountQualify: function (LoadJsService) {
  694. return LoadJsService.loadSequence("accountQualifyCtrl");
  695. }
  696. }
  697. })
  698. /*会员认证详细信息*/
  699. .state('accountQualifyContent', {
  700. cache: false,
  701. url: '/accountQualifyContent',
  702. templateUrl: 'modules/account/views/accountQualifyContent.html',
  703. controller: 'accountQualifyContentCtrl',
  704. resolve: {
  705. accountQualifyContent: function (LoadJsService) {
  706. return LoadJsService.loadSequence("accountQualifyContentCtrl");
  707. }
  708. },
  709. params: {messageid: 0}
  710. })
  711. /*上传身份证信息*/
  712. .state('personIdentify', {
  713. cache: false,
  714. url: '/personIdentify',
  715. templateUrl: 'modules/account/views/personIdentify.html',
  716. controller: 'personIdentifyCtrl',
  717. resolve: {
  718. personIdentify: function (LoadJsService) {
  719. return LoadJsService.loadSequence("personIdentifyArgs");
  720. }
  721. },
  722. params: {identify: ""}
  723. })
  724. /*上传单位信息*/
  725. .state('unitIdentify', {
  726. cache: false,
  727. url: '/unitIdentify',
  728. templateUrl: 'modules/account/views/unitIdentify.html',
  729. controller: 'unitIdentifyCtrl',
  730. resolve: {
  731. unitIdentify: function (LoadJsService) {
  732. return LoadJsService.loadSequence("unitIdentifyCtrl");
  733. }
  734. },
  735. params: {orgtype: -1}
  736. })
  737. /*上传在职信息*/
  738. .state('jobIdentify', {
  739. cache: false,
  740. url: '/jobIdentify',
  741. templateUrl: 'modules/account/views/jobIdentify.html',
  742. controller: 'jobIdentifyCtrl',
  743. resolve: {
  744. jobIdentify: function (LoadJsService) {
  745. return LoadJsService.loadSequence("jobIdentifyCtrl");
  746. }
  747. },
  748. params: {job: ""}
  749. })
  750. /*会员中心的首页*/
  751. .state('memberHome', {
  752. cache: false,
  753. url: '/memberHome',
  754. templateUrl: 'modules/account/views/memberHome.html',
  755. controller: 'memberHomeCtrl',
  756. resolve: {
  757. memberHome: function (LoadJsService) {
  758. return LoadJsService.loadSequence("memberHomeCtrl");
  759. }
  760. }
  761. })
  762. /*会员中心的会员介绍页*/
  763. .state('memberComent', {
  764. cache: false,
  765. url: '/memberComent',
  766. templateUrl: 'modules/account/views/memberComent.html',
  767. controller: 'memberComentCtrl',
  768. resolve: {
  769. memberComent: function (LoadJsService) {
  770. return LoadJsService.loadSequence("memberComentCtrl");
  771. }
  772. },
  773. params: {type: 0}
  774. })
  775. /*权益说明页面*/
  776. .state('memberRightExplain', {
  777. cache: false,
  778. url: '/memberRightExplain',
  779. templateUrl: 'modules/account/views/memberRightExplain.html',
  780. controller: 'memberRightExplainCtrl',
  781. resolve: {
  782. memberRightExplain: function (LoadJsService) {
  783. return LoadJsService.loadSequence("memberRightExplainCtrl");
  784. }
  785. }
  786. })
  787. /*权益详情页*/
  788. .state('rightDetails', {
  789. cache: false,
  790. url: '/rightDetails',
  791. templateUrl: 'modules/account/views/rightDetails.html',
  792. controller: 'rightDetailsCtrl',
  793. resolve: {
  794. rightDetails: function (LoadJsService) {
  795. return LoadJsService.loadSequence("rightDetailsCtrl");
  796. }
  797. },
  798. params: {index: 0}
  799. })
  800. /*升级管理页面*/
  801. .state('upGradeMangement', {
  802. cache: false,
  803. url: '/upGradeMangement',
  804. templateUrl: 'modules/account/views/upGradeMangement.html',
  805. controller: 'upGradeMangementCtrl',
  806. resolve: {
  807. upGradeMangement: function (LoadJsService) {
  808. return LoadJsService.loadSequence("upGradeMangementCtrl");
  809. }
  810. },
  811. params: {totalcurrency: 0}
  812. })
  813. /*设置普适币支付密码页面*/
  814. .state('payPsMoneyPassword', {
  815. cache: false,
  816. url: '/payPsMoneyPassword',
  817. templateUrl: 'modules/account/views/payPsMoneyPassword.html',
  818. controller: 'payPsMoneyPasswordCtrl',
  819. resolve: {
  820. upGradeMangement: function (LoadJsService) {
  821. return LoadJsService.loadSequence("payPsMoneyPasswordCtrl");
  822. }
  823. }
  824. })
  825. /*后台客服审核页面*/
  826. .state('myAuditMessage', {
  827. cache: false,
  828. url: '/myAuditMessage',
  829. templateUrl: 'modules/account/views/myAuditMessage.html',
  830. controller: 'myAuditMessageCtrl',
  831. resolve: {
  832. myAuditMessage: function (LoadJsService) {
  833. return LoadJsService.loadSequence("myAuditMessageCtrl");
  834. }
  835. }
  836. })
  837. /*后台客服审核内容页面*/
  838. .state('auditContent', {
  839. cache: false,
  840. url: '/auditContent',
  841. templateUrl: 'modules/account/views/auditContent.html',
  842. controller: 'auditContentCtrl',
  843. resolve: {
  844. auditContent: function (LoadJsService) {
  845. return LoadJsService.loadSequence("auditContentCtrl");
  846. }
  847. },
  848. params: {messageid: 0}
  849. })
  850. /*设置子账号超级管理员*/
  851. .state('accountSetChild', {
  852. cache: false,
  853. url: '/accountSetChild',
  854. templateUrl: 'modules/account/views/accountSetChild.html',
  855. controller: 'accountSetChildCtrl',
  856. resolve: {
  857. accountSetChild: function (LoadJsService) {
  858. return LoadJsService.loadSequence("accountSetChildCtrl");
  859. }
  860. }
  861. })
  862. /*反馈建议*/
  863. .state('newMessagePage', {
  864. cache: false,
  865. url: '/newMessagePage',
  866. templateUrl: 'modules/account/views/newMessagePage.html',
  867. controller: 'newMessagePageCtrl',
  868. resolve: {
  869. newMessagePage: function (LoadJsService) {
  870. return LoadJsService.loadSequence("newMessagePageCtrl");
  871. }
  872. }
  873. })
  874. .state('choiceResource', {
  875. cache: false,
  876. url: '/choiceResource',
  877. templateUrl: 'modules/account/views/choiceResource.html',
  878. controller: 'choiceResourceCtrl',
  879. resolve: {
  880. choiceResource: function (LoadJsService) {
  881. return LoadJsService.loadSequence("choiceResourceCtrl");
  882. }
  883. }
  884. })
  885. .state('aboutSuggestion', {
  886. cache: false,
  887. url: '/aboutSuggestion',
  888. templateUrl: 'modules/account/views/aboutSuggestion.html',
  889. controller: 'aboutSuggestionCtrl',
  890. resolve: {
  891. aboutSuggestion: function (LoadJsService) {
  892. return LoadJsService.loadSequence("aboutSuggestionCtrl");
  893. }
  894. }
  895. })
  896. .state('statisticalcenter', {
  897. cache: false,
  898. url: '/statisticalcenter',
  899. templateUrl: 'modules/account/views/statisticalcenter.html',
  900. controller: 'statisticalcenterCtrl',
  901. resolve: {
  902. statisticalcenter: function (LoadJsService) {
  903. return LoadJsService.loadSequence("statisticalcenterCtrl");
  904. }
  905. },
  906. params:{datalist:null}
  907. })
  908. .state('importOrgInfo', {
  909. cache: false,
  910. url: '/importOrgInfo',
  911. templateUrl: 'modules/account/views/importOrgInfo.html',
  912. controller: 'importOrgInfoCtrl',
  913. resolve: {
  914. importOrgInfo: function (LoadJsService) {
  915. return LoadJsService.loadSequence("importOrgInfoCtrl");
  916. }
  917. },
  918. params: {restype: ''}
  919. })
  920. .state('exportField', {
  921. cache: false,
  922. url: '/exportField',
  923. templateUrl: 'modules/account/views/exportField.html',
  924. controller: 'exportFieldCtrl',
  925. resolve: {
  926. exportField: function (LoadJsService) {
  927. return LoadJsService.loadSequence("exportFieldCtrl");
  928. }
  929. },
  930. params: {reslist: '', uniquelist: ''}
  931. })
  932. .state('quarterlyImport', {
  933. cache: false,
  934. url: '/quarterlyImport',
  935. templateUrl: 'modules/account/views/quarterlyImport.html',
  936. controller: 'quarterlyImportCtrl',
  937. resolve: {
  938. quarterlyImport: function (LoadJsService) {
  939. return LoadJsService.loadSequence("quarterlyImportCtrl");
  940. }
  941. },
  942. params: {importsuccess: 0, orgdatalist: ""}
  943. })
  944. .state('dataAnalysis', {
  945. cache: false,
  946. url: '/dataAnalysis',
  947. templateUrl: 'modules/account/views/dataAnalysis.html',
  948. controller: 'dataAnalysisCtrl',
  949. resolve: {
  950. dataAnalysis: function (LoadJsService) {
  951. return LoadJsService.loadSequence("dataAnalysisCtrl");
  952. }
  953. },
  954. params: {namelist: ''}
  955. })
  956. .state('quarterlyAnalysis', {
  957. cache: false,
  958. url: '/quarterlyAnalysis',
  959. templateUrl: 'modules/account/views/quarterlyAnalysis.html',
  960. controller: 'quarterlyAnalysisCtrl',
  961. resolve: {
  962. quarterlyAnalysis: function (LoadJsService) {
  963. return LoadJsService.loadSequence("quarterlyAnalysisCtrl");
  964. }
  965. },
  966. params: {importsuccess: 0}
  967. })
  968. .state('cooperationSubsidyCheck', {
  969. cache: false,
  970. url: '/cooperationSubsidyCheck',
  971. templateUrl: 'modules/account/views/cooperationSubsidyCheck.html',
  972. controller: 'cooperationSubsidyCheckCtrl',
  973. resolve: {
  974. cooperationSubsidyCheck: function (LoadJsService) {
  975. return LoadJsService.loadSequence("cooperationSubsidyCheckCtrl");
  976. }
  977. }
  978. })
  979. .state('SubsidyauditafteCheck', {
  980. cache: false,
  981. url: '/SubsidyauditafteCheck',
  982. templateUrl: 'modules/account/views/SubsidyauditafteCheck.html',
  983. controller: 'SubsidyauditafteCheckCtrl',
  984. resolve: {
  985. cooperationSubsidyCheck: function (LoadJsService) {
  986. return LoadJsService.loadSequence("SubsidyauditafteCheckCtrl");
  987. }
  988. }
  989. })
  990. .state('SubsidyauditafteExport', {
  991. cache: false,
  992. url: '/SubsidyauditafteExport',
  993. templateUrl: 'modules/account/views/SubsidyauditafteExport.html',
  994. controller: 'SubsidyauditafteExportCtrl',
  995. resolve: {
  996. cooperationSubsidyCheck: function (LoadJsService) {
  997. return LoadJsService.loadSequence("SubsidyauditafteExportCtrl");
  998. }
  999. }
  1000. })
  1001. .state('policySetting', {
  1002. cache: false,
  1003. url: '/policySetting',
  1004. templateUrl: 'modules/account/views/policySetting.html',
  1005. controller: 'policySettingCtrl',
  1006. resolve: {
  1007. policySetting: function (LoadJsService) {
  1008. return LoadJsService.loadSequence("policySettingCtrl");
  1009. }
  1010. },
  1011. params: {list: ''}
  1012. })
  1013. .state('cooperateDetail', {
  1014. cache: false,
  1015. url: '/cooperateDetail/:id',
  1016. templateUrl: 'modules/account/views/cooperateDetail.html',
  1017. controller: 'cooperateDetailCtrl',
  1018. resolve: {
  1019. cooperateDetail: function (LoadJsService) {
  1020. return LoadJsService.loadSequence("cooperateDetailCtrl");
  1021. }
  1022. },
  1023. params: {list: '', id: ''}
  1024. })
  1025. .state('SubsidyauditafteDetail', {
  1026. cache: false,
  1027. url: '/SubsidyauditafteDetail/:id',
  1028. templateUrl: 'modules/account/views/SubsidyauditafteDetail.html',
  1029. controller: 'SubsidyauditafteDetailCtrl',
  1030. resolve: {
  1031. cooperateDetail: function (LoadJsService) {
  1032. return LoadJsService.loadSequence("SubsidyauditafteDetailCtrl");
  1033. }
  1034. },
  1035. params: {list: '', id: ''}
  1036. })
  1037. .state('secondOrgSelfReport', {
  1038. cache: false,
  1039. url: '/secondOrgSelfReport/:connid',
  1040. templateUrl: 'modules/account/views/secondOrgSelfReport.html',
  1041. controller: 'secondOrgSelfReportCtrl',
  1042. resolve: {
  1043. secondOrgSelfReport: function (LoadJsService) {
  1044. return LoadJsService.loadSequence("secondOrgSelfReportCtrl");
  1045. }
  1046. },
  1047. params: {value: '', highorginspection: '', connid: ''}
  1048. })
  1049. .state('orgInspectDetail', {
  1050. cache: false,
  1051. url: '/orgInspectDetail/:connid/:orgInspect',
  1052. templateUrl: 'modules/account/views/orgInspectDetail.html',
  1053. controller: 'orgInspectDetailCtrl',
  1054. resolve: {
  1055. orgInspectDetail: function (LoadJsService) {
  1056. return LoadJsService.loadSequence("orgInspectDetailCtrl");
  1057. }
  1058. },
  1059. params: {orgInspect: "", connnumber: '', connid: ''}
  1060. })
  1061. .state('orgInspectList', {
  1062. cache: false,
  1063. url: '/orgInspectList/:isuserlist',
  1064. templateUrl: 'modules/account/views/orgInspectList.html',
  1065. controller: 'orgInspectListCtrl',
  1066. resolve: {
  1067. orgInspectList: function (LoadJsService) {
  1068. return LoadJsService.loadSequence("orgInspectListCtrl");
  1069. }
  1070. },
  1071. params: {isuserlist: ""}
  1072. })
  1073. .state('orgSelfReport', {
  1074. cache: false,
  1075. url: '/orgSelfReport/:connid/:registerdate',
  1076. templateUrl: 'modules/account/views/orgSelfReport.html',
  1077. controller: 'orgSelfReportCtrl',
  1078. resolve: {
  1079. orgSelfReport: function (LoadJsService) {
  1080. return LoadJsService.loadSequence("orgSelfReportCtrl");
  1081. }
  1082. },
  1083. params: {data: '', scoreConnid: '', highorginspection: '', registerdate: '', connid: ''}
  1084. })
  1085. .state('orgInspect', {
  1086. cache: false,
  1087. url: '/orgInspect',
  1088. templateUrl: 'modules/account/views/orgInspect.html',
  1089. controller: 'orgInspectCtrl',
  1090. resolve: {
  1091. orgInspect: function (LoadJsService) {
  1092. return LoadJsService.loadSequence("orgInspectCtrl");
  1093. }
  1094. },
  1095. params: {value: "", highorginspection: ""}
  1096. })
  1097. .state('newNotification', {
  1098. cache: false,
  1099. url: '/newNotification',
  1100. templateUrl: 'modules/account/views/newNotification.html',
  1101. controller: 'newNotificationCtrl',
  1102. resolve: {
  1103. newNotification: function (LoadJsService) {
  1104. return LoadJsService.loadSequence("newNotificationCtrl");
  1105. }
  1106. },
  1107. params: {notice: ""}
  1108. })
  1109. .state('notificationDetail', {
  1110. cache: false,
  1111. url: '/notificationDetail/:unique',
  1112. templateUrl: 'modules/account/views/notificationDetail.html',
  1113. controller: 'notificationDetailCtrl',
  1114. resolve: {
  1115. notificationDetail: function (LoadJsService) {
  1116. return LoadJsService.loadSequence("notificationDetailCtrl");
  1117. }
  1118. },
  1119. params: {notice: "", unique: 0}
  1120. })
  1121. .state('notification', {
  1122. cache: false,
  1123. url: '/notification',
  1124. templateUrl: 'modules/account/views/notification.html',
  1125. controller: 'notificationCtrl',
  1126. resolve: {
  1127. notification: function (LoadJsService) {
  1128. return LoadJsService.loadSequence("notificationCtrl");
  1129. }
  1130. }
  1131. })
  1132. .state('receiveInfo', {
  1133. cache: false,
  1134. url: '/receiveInfo',
  1135. templateUrl: 'modules/account/views/receiveInfo.html',
  1136. controller: 'receiveInfoCtrl',
  1137. resolve: {
  1138. receiveInfo: function (LoadJsService) {
  1139. return LoadJsService.loadSequence("receiveInfoCtrl");
  1140. }
  1141. },
  1142. params: {smsList: ""}
  1143. })
  1144. .state('noticeHelper', {
  1145. cache: false,
  1146. url: '/noticeHelper',
  1147. templateUrl: 'modules/account/views/noticeHelper.html',
  1148. controller: 'noticeHelperCtrl',
  1149. resolve: {
  1150. noticeHelper: function (LoadJsService) {
  1151. return LoadJsService.loadSequence("noticeHelperCtrl");
  1152. }
  1153. },
  1154. params: {list: ""}
  1155. })
  1156. .state('sendMessage', {
  1157. cache: false,
  1158. url: '/sendMessage',
  1159. templateUrl: 'modules/account/views/sendMessage.html',
  1160. controller: 'sendMessageCtrl',
  1161. resolve: {
  1162. sendMessage: function (LoadJsService) {
  1163. return LoadJsService.loadSequence("sendMessageCtrl");
  1164. }
  1165. },
  1166. params: {resourcelist: "", job: "", resrole: ""}
  1167. })
  1168. /*反馈建议审核内容页面*/
  1169. .state('auditSuggestion', {
  1170. cache: false,
  1171. url: '/auditSuggestion',
  1172. templateUrl: 'modules/account/views/auditSuggestion.html',
  1173. controller: 'auditSuggestionCtrl',
  1174. resolve: {
  1175. auditContent: function (LoadJsService) {
  1176. return LoadJsService.loadSequence("auditSuggestionCtrl");
  1177. }
  1178. },
  1179. params: {messageid: 0, targetid: 0, type: ""}
  1180. })
  1181. /*选择单位类型*/
  1182. .state('chooseUnitType', {
  1183. cache: false,
  1184. url: '/chooseUnitType',
  1185. templateUrl: 'modules/account/views/chooseUnitType.html',
  1186. controller: 'chooseUnitTypeCtrl',
  1187. resolve: {
  1188. chooseUnitType: function (LoadJsService) {
  1189. return LoadJsService.loadSequence("chooseUnitTypeCtrl");
  1190. }
  1191. }
  1192. })
  1193. /*会员认证结果页*/
  1194. .state('successIdentify', {
  1195. cache: false,
  1196. url: '/successIdentify',
  1197. templateUrl: 'modules/account/views/successIdentify.html',
  1198. controller: 'successIdentifyCtrl',
  1199. resolve: {
  1200. successIdentify: function (LoadJsService) {
  1201. return LoadJsService.loadSequence("successIdentifyCtrl");
  1202. }
  1203. }
  1204. })
  1205. /*我的信息*/
  1206. .state('myInformation', {
  1207. cache: false,
  1208. url: '/myInformation',
  1209. templateUrl: 'modules/account/views/myInformation.html',
  1210. controller: 'myInformationCtrl',
  1211. resolve: {
  1212. myInformation: function (LoadJsService) {
  1213. return LoadJsService.loadSequence("myInformationCtrl");
  1214. }
  1215. }
  1216. })
  1217. /*所有消息*/
  1218. .state('myMessageListCategory', {
  1219. cache: false,
  1220. url: '/myMessageListCategory',
  1221. templateUrl: 'modules/account/views/myMessageListCategory.html',
  1222. controller: 'myMessageListCategoryCtrl',
  1223. resolve: {
  1224. myMessageListCategory: function (LoadJsService) {
  1225. return LoadJsService.loadSequence("myMessageListCategoryArgs");
  1226. }
  1227. },
  1228. params: {messageIndex: -1}
  1229. })
  1230. //统计编辑页面
  1231. .state('Statisticseditor', {
  1232. cache: false,
  1233. url: '/Statisticseditor',
  1234. templateUrl: 'modules/account/views/StatisticseditorCtrl.html',
  1235. controller: 'StatisticseditorCtrl',
  1236. resolve: {
  1237. Statisticseditor: function (LoadJsService) {
  1238. return LoadJsService.loadSequence("StatisticseditorCtrl");
  1239. }
  1240. },
  1241. params: {mapList:null,tableList:null,datalist:null}
  1242. })
  1243. //工商局信息一件更新页面
  1244. .state('Businessdata', {
  1245. cache: false,
  1246. url: '/Businessdata',
  1247. templateUrl: 'modules/account/views/Businessdata.html',
  1248. controller: 'BusinessdataCtrl',
  1249. resolve: {
  1250. Statisticseditor: function (LoadJsService) {
  1251. return LoadJsService.loadSequence("BusinessdataCtrl");
  1252. }
  1253. },
  1254. params: {mapList:null,tableList:null,datalist:null}
  1255. })
  1256. //技术合同导入
  1257. .state('Teclcontract', {
  1258. cache: false,
  1259. url: '/Teclcontract',
  1260. templateUrl: 'modules/account/views/Teclcontract.html',
  1261. controller: 'TeclcontractCtrl',
  1262. resolve: {
  1263. Statisticseditor: function (LoadJsService) {
  1264. return LoadJsService.loadSequence("TeclcontractCtrl");
  1265. }
  1266. },
  1267. params: {mapList:null,tableList:null,datalist:null}
  1268. })
  1269. .state('Teclcontractlist', {
  1270. cache: false,
  1271. url: '/Teclcontractlist',
  1272. templateUrl: 'modules/account/views/Teclcontractlist.html',
  1273. controller: 'TeclcontractlistCtrl',
  1274. resolve: {
  1275. Statisticseditor: function (LoadJsService) {
  1276. return LoadJsService.loadSequence("TeclcontractlistCtrl");
  1277. }
  1278. },
  1279. params: {mapList:null,tableList:null,datalist:null}
  1280. })
  1281. //通讯页面
  1282. .state('chitchat', {
  1283. cache: false,
  1284. url: '/chitchat',
  1285. templateUrl: 'modules/account/views/chitchat.html',
  1286. controller: 'chitchatCtrl',
  1287. resolve: {
  1288. Statisticseditor: function (LoadJsService) {
  1289. return LoadJsService.loadSequence("chitchatCtrl");
  1290. }
  1291. },
  1292. params: {mapList:null,tableList:null,datalist:null}
  1293. })
  1294. }]);