toolsRoute.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. app.config(['$stateProvider', function ($stateProvider) {
  2. $stateProvider
  3. /*对接宝新主页*/
  4. .state('abutmentHome', {
  5. cache: false,
  6. url: '/abutmentHome',
  7. templateUrl: 'modules/tools/views/AbutmentHome.html',
  8. controller: 'AbutmentHomeCtrl',
  9. resolve: {
  10. AbutmentHomeCtrl: function (LoadJsService) {
  11. return LoadJsService.loadSequence("AbutmentHomeArgs");
  12. }
  13. },
  14. params: {folder: null}
  15. })
  16. .state('conninfolist', {
  17. cache: false,
  18. url: '/conninfolist',
  19. templateUrl: 'modules/tools/views/connInfoList.html',
  20. controller: 'connInfoListCtrl',
  21. resolve: {
  22. conninfolist: function (LoadJsService) {
  23. return LoadJsService.loadSequence("ConnInfoListArgs");
  24. }
  25. },
  26. params: {folder: null}
  27. })
  28. /*对接宝新建项目*/
  29. .state('addList', {
  30. cache: false,
  31. url: '/addList',
  32. templateUrl: 'modules/tools/views/addList.html',
  33. controller: 'addListCtrl',
  34. resolve: {
  35. addList: function (LoadJsService) {
  36. return LoadJsService.loadSequence("AddListArgs");
  37. }
  38. },
  39. params: {type: ""}
  40. })
  41. /*修改对接宝信息*/
  42. .state('editconninfo', {
  43. cache: false,
  44. url: '/editconninfo',
  45. templateUrl: 'modules/tools/views/editconninfo.html',
  46. controller: 'editConninfoCtrl',
  47. resolve: {
  48. editconninfo: function (LoadJsService) {
  49. return LoadJsService.loadSequence("EditConninfoArgs");
  50. }
  51. },
  52. params: {infoid: "", type: null}
  53. })
  54. /*对接宝参加单位*/
  55. .state('ParticipatingUnits', {
  56. cache: false,
  57. url: '/ParticipatingUnits',
  58. templateUrl: 'modules/tools/views/ParticipatingUnits.html',
  59. controller: 'ParticipatingUnitsCtrl',
  60. resolve: {
  61. ParticipatingUnits: function (LoadJsService) {
  62. return LoadJsService.loadSequence("ParticipatingArgs");
  63. }
  64. },
  65. params: {company: null, index: null}
  66. })
  67. /*对接宝对接主题*/
  68. .state('DockingTheme', {
  69. cache: false,
  70. url: '/DockingTheme',
  71. templateUrl: 'modules/tools/views/DockingTheme.html',
  72. controller: 'DockingThemeCtrl',
  73. resolve: {
  74. DockingTheme: function (LoadJsService) {
  75. return LoadJsService.loadSequence("DockingThemeArgs");
  76. }
  77. },
  78. params: {theme: null, index: null}
  79. })
  80. /*对接宝对接详情页*/
  81. .state('Dockingdetails', {
  82. cache: false,
  83. url: '/Dockingdetails',
  84. templateUrl: 'modules/tools/views/Dockingdetails.html',
  85. controller: 'DockingdetailsCtrl',
  86. resolve: {
  87. Dockingdetails: function (LoadJsService) {
  88. return LoadJsService.loadSequence("DockingdetailsArgs");
  89. }
  90. },
  91. params: {infoid: null, type: null, creator: ""}
  92. })
  93. /*对接宝删除文件夹*/
  94. .state('removeFolders', {
  95. cache: false,
  96. url: '/removeFolders',
  97. templateUrl: 'modules/tools/views/removeFolders.html',
  98. controller: 'removeFoldersCtrl',
  99. resolve: {
  100. Dockingdetails: function (LoadJsService) {
  101. return LoadJsService.loadSequence("RemoveFoldersArgs");
  102. }
  103. },
  104. params: {folder: {}}
  105. })
  106. /*废纸篓页面*/
  107. .state('wastepaper', {
  108. cache: false,
  109. url: '/wastepaper',
  110. templateUrl: 'modules/tools/views/wastepaper.html',
  111. controller: 'wastepaperCtrl',
  112. resolve: {
  113. Dockingdetails: function (LoadJsService) {
  114. return LoadJsService.loadSequence("wastepaperCtrl");
  115. }
  116. }
  117. })
  118. /*对接宝搜索页面*/
  119. .state('connsearch', {
  120. cache: false,
  121. url: '/connsearch',
  122. templateUrl: 'modules/tools/views/connSearch.html',
  123. controller: 'ConnSearchCtrl',
  124. resolve: {
  125. connsearch: function (LoadJsService) {
  126. return LoadJsService.loadSequence("ConnSearchCtrl");
  127. }
  128. },
  129. params: {folderid: 0, localfolderid: "0"}
  130. })
  131. /*对接宝搜索结果页面*/
  132. .state('connsearchresult', {
  133. cache: true,
  134. url: '/connsearchresult',
  135. templateUrl: 'modules/tools/views/connSearchResult.html',
  136. controller: 'ConnSearchResultCtrl',
  137. resolve: {
  138. connsearchresult: function (LoadJsService) {
  139. return LoadJsService.loadSequence("ConnSearchArgs");
  140. }
  141. },
  142. params: {key: "", folderid: 0, localfolderid: "0"}
  143. })
  144. /*设置权限页面*/
  145. .state('Authority', {
  146. cache: false,
  147. url: '/Authority',
  148. templateUrl: 'modules/tools/views/Authority.html',
  149. controller: 'AuthorityCtrl',
  150. resolve: {
  151. Authority: function (LoadJsService) {
  152. return LoadJsService.loadSequence("AuthorityCtrl");
  153. }
  154. }
  155. })
  156. /*云共享页面*/
  157. .state('cloudFolderList', {
  158. cache: false,
  159. url: '/cloudFolderList',
  160. templateUrl: 'modules/tools/views/CloudFolderList.html',
  161. controller: 'CloudFolderListCtrl',
  162. resolve: {
  163. cloudFolderList: function (LoadJsService) {
  164. return LoadJsService.loadSequence("CloudFolderListArgs");
  165. }
  166. }
  167. })
  168. /*云文件夹详情*/
  169. .state('cloudFolderDetail', {
  170. cache: false,
  171. url: '/cloudFolderDetail',
  172. templateUrl: 'modules/tools/views/CloudFolderDetail.html',
  173. controller: 'CloudFolderDetailCtrl',
  174. resolve: {
  175. cloudFolderDetail: function (LoadJsService) {
  176. return LoadJsService.loadSequence("CloudFolderDetailArgs");
  177. }
  178. },
  179. params: {folder: null}
  180. })
  181. /*云文件夹编辑*/
  182. .state('cloudFolderEdit', {
  183. cache: false,
  184. url: '/cloudFolderEdit',
  185. templateUrl: 'modules/tools/views/CloudFolderEdit.html',
  186. controller: 'CloudFolderEditCtrl',
  187. resolve: {
  188. cloudFolderEdit: function (LoadJsService) {
  189. return LoadJsService.loadSequence("CloudFolderEditArgs");
  190. }
  191. },
  192. params: {clfolder: null}
  193. })
  194. /*新建云文件夹*/
  195. .state('cloudFolderCreate', {
  196. cache: false,
  197. url: '/cloudFolderCreate',
  198. templateUrl: 'modules/tools/views/CloudFolderCreate.html',
  199. controller: 'CloudFolderCreateCtrl',
  200. resolve: {
  201. cloudFolderCreate: function (LoadJsService) {
  202. return LoadJsService.loadSequence("CloudFolderCreateArgs");
  203. }
  204. }
  205. })
  206. /*云文件夹中新建对接信息*/
  207. .state('cloudAddConnInfo', {
  208. cache: false,
  209. url: '/cloudAddConnInfo',
  210. templateUrl: 'modules/tools/views/CloudAddConnInfo.html',
  211. controller: 'CloudAddConnInfoCtrl',
  212. resolve: {
  213. cloudAddConnInfo: function (LoadJsService) {
  214. return LoadJsService.loadSequence("CloudAddConnInfoArgs");
  215. }
  216. }
  217. })
  218. /*添加名片信息*/
  219. .state('addListCard', {
  220. cache: false,
  221. url: '/addListCard',
  222. templateUrl: 'modules/tools/views/addListCard.html',
  223. controller: 'addListCardCtrl',
  224. resolve: {
  225. addListCard: function (LoadJsService) {
  226. return LoadJsService.loadSequence("addListCardArgs");
  227. }
  228. },
  229. params: {index: -1}
  230. })
  231. /*添加名片信息*/
  232. .state('editListCard', {
  233. cache: false,
  234. url: '/editListCard',
  235. templateUrl: 'modules/tools/views/editListCard.html',
  236. controller: 'editListCardCtrl',
  237. resolve: {
  238. editListCard: function (LoadJsService) {
  239. return LoadJsService.loadSequence("editListCardArgs");
  240. }
  241. },
  242. params: {index: -1}
  243. })
  244. /*云共享编辑页面*/
  245. .state('cloudEditconninfo', {
  246. cache: false,
  247. url: '/cloudEditconninfo',
  248. templateUrl: 'modules/tools/views/Cloudeditconninfo.html',
  249. controller: 'CloudeditconninfoCtrl',
  250. resolve: {
  251. cloudEditconninfo: function (LoadJsService) {
  252. return LoadJsService.loadSequence("CloudeditconninfoCtrl");
  253. }
  254. },
  255. params: {infoid: null}
  256. })
  257. /*云共享文件夹里的详情页面*/
  258. .state('cloudDockingdetail', {
  259. cache: false,
  260. url: '/cloudDockingdetail',
  261. templateUrl: 'modules/tools/views/CloudDockingdetails.html',
  262. controller: 'CloudDockingdetailsCtrl',
  263. resolve: {
  264. cloudDockingdetail: function (LoadJsService) {
  265. return LoadJsService.loadSequence("CloudDockingdetailArgs");
  266. }
  267. },
  268. params: {infoid: null, infocomefrom: "", creator: 0}
  269. })
  270. /*云共享分享设置页面*/
  271. .state('CloudShareSet', {
  272. cache: false,
  273. url: '/CloudShareSet',
  274. templateUrl: 'modules/tools/views/CloudShareSet.html',
  275. controller: 'CloudShareSetCtrl',
  276. resolve: {
  277. CloudShareSet: function (LoadJsService) {
  278. return LoadJsService.loadSequence("CloudShareSetArgs");
  279. }
  280. },
  281. params: {infoid: 0}
  282. })
  283. /*云共享权限设置页面*/
  284. .state('CloudAuthoritySet', {
  285. cache: false,
  286. url: '/CloudAuthoritySet',
  287. templateUrl: 'modules/tools/views/CloudAuthoritySet.html',
  288. controller: 'CloudAuthoritySetCtrl',
  289. resolve: {
  290. CloudAuthoritySet: function (LoadJsService) {
  291. return LoadJsService.loadSequence("CloudAuthoritySetCtrl");
  292. }
  293. },
  294. params: {infoid: null}
  295. })
  296. /*对接记录评价(进度对接业务)*/
  297. .state('toolDiscuss', {
  298. cache: false,
  299. url: '/toolDiscuss',
  300. templateUrl: 'modules/tools/views/toolDiscuss.html',
  301. controller: 'toolDiscussCtrl',
  302. resolve: {
  303. toolDiscuss: function (LoadJsService) {
  304. return LoadJsService.loadSequence("toolDiscussCtrl");
  305. }
  306. },
  307. params: {infoid: 0, infotype: 0, comlen: 0, recourcecomefrom: "", isedit: false}
  308. })
  309. /*对接中发布评价(对接业务)*/
  310. .state('releaseComment', {
  311. cache: false,
  312. url: '/releaseComment',
  313. templateUrl: 'modules/tools/views/releaseComment.html',
  314. controller: 'releaseCommentCtrl',
  315. resolve: {
  316. releaseComment: function (LoadJsService) {
  317. return LoadJsService.loadSequence("releaseCommentCtrl");
  318. }
  319. },
  320. params: {infoid: 0, infotype: 0, comlen: 0, recourcecomefrom: ""}
  321. })
  322. /*对接宝分享选择文件夹页面*/
  323. .state('chooseShareFolder', {
  324. cache: false,
  325. url: '/chooseShareFolder',
  326. templateUrl: 'modules/tools/views/chooseShareFolder.html',
  327. controller: 'chooseShareFolderCtrl',
  328. resolve: {
  329. chooseShareFolder: function (LoadJsService) {
  330. return LoadJsService.loadSequence("chooseShareFolderArgs");
  331. }
  332. },
  333. params: {chereslist: [], folderid: 0, isCloud: -1}
  334. })
  335. /*对接宝设置文件夹页面*/
  336. .state('buildNewFolder', {
  337. cache: false,
  338. url: '/buildNewFolder',
  339. templateUrl: 'modules/tools/views/buildNewFolder.html',
  340. controller: 'buildNewFolderCtrl',
  341. resolve: {
  342. buildNewFolder: function (LoadJsService) {
  343. return LoadJsService.loadSequence("buildNewFolderCtrl");
  344. }
  345. }
  346. })
  347. /*新建需求跟进表*/
  348. .state('ActivitySchedule', {
  349. cache: false,
  350. url: '/ActivitySchedule',
  351. templateUrl: 'modules/tools/views/ActivitySchedule.html',
  352. controller: 'ActivityScheduleCtrl',
  353. resolve: {
  354. ActivitySchedule: function (LoadJsService) {
  355. return LoadJsService.loadSequence("ActivityScheduleCtrl");
  356. }
  357. },
  358. params: {infoid: 0, companylist: [], reqlist: []}
  359. })
  360. /*修改需求跟进表*/
  361. .state('ActivityScheduleEdit', {
  362. cache: false,
  363. url: '/ActivityScheduleEdit',
  364. templateUrl: 'modules/tools/views/ActivityScheduleEdit.html',
  365. controller: 'ActivityScheduleEditCtrl',
  366. resolve: {
  367. ActivityScheduleEdit: function (LoadJsService) {
  368. return LoadJsService.loadSequence("ActivityScheduleEditCtrl");
  369. }
  370. },
  371. params: {folupid: 0, companylist: [], reqlist: []}
  372. })
  373. /*需求跟进表总展示*/
  374. .state('ActivtyScheduleHome', {
  375. cache: false,
  376. url: '/ActivtyScheduleHome',
  377. templateUrl: 'modules/tools/views/ActivtyScheduleHome.html',
  378. controller: 'ActivtyScheduleHomeCtrl',
  379. resolve: {
  380. ActivtyScheduleHome: function (LoadJsService) {
  381. return LoadJsService.loadSequence("ActivtyScheduleHomeCtrl");
  382. }
  383. },
  384. params: {infoid: 0, companylist: [], reqlist: []}
  385. })
  386. /*我的活动备案表*/
  387. .state('ActivtyReport', {
  388. cache: false,
  389. url: '/ActivtyReport',
  390. templateUrl: 'modules/tools/views/ActivtyReport.html',
  391. controller: 'ActivtyReportCtrl',
  392. resolve: {
  393. ActivtyTableTemplate: function (LoadJsService) {
  394. return LoadJsService.loadSequence("ActivtyReportCtrl");
  395. }
  396. },
  397. params: {konreid: 0}
  398. })
  399. /*政府超级管理员查看活动*/
  400. .state('ActivityScheduleAccount', {
  401. cache: false,
  402. url: '/ActivityScheduleAccount',
  403. templateUrl: 'modules/tools/views/ActivityScheduleAccount.html',
  404. controller: 'ActivityScheduleAccountCtrl',
  405. resolve: {
  406. ActivityScheduleAccount: function (LoadJsService) {
  407. return LoadJsService.loadSequence("ActivityScheduleAccountCtrl");
  408. }
  409. },
  410. params: {infoid: 0}
  411. })
  412. /*政府超级管理员查看备案汇总*/
  413. .state('ActivityReportAccount', {
  414. cache: false,
  415. url: '/ActivityReportAccount',
  416. templateUrl: 'modules/tools/views/ActivityReportAccount.html',
  417. controller: 'ActivityReportAccountCtrl',
  418. resolve: {
  419. ActivityReportAccount: function (LoadJsService) {
  420. return LoadJsService.loadSequence("ActivityReportAccountCtrl");
  421. }
  422. },
  423. params: {infoid: 0, role: 0}
  424. })
  425. /*修改对接最新状态*/
  426. .state('addState', {
  427. cache: false,
  428. url: '/addState',
  429. templateUrl: 'modules/tools/views/addState.html',
  430. controller: 'addStateCtrl',
  431. resolve: {
  432. addState: function (LoadJsService) {
  433. return LoadJsService.loadSequence("addStateCtrl");
  434. }
  435. },
  436. params: {folupid: 0}
  437. })
  438. /*活动详情跟进物流详情表*/
  439. .state('ActivityLogisty', {
  440. cache: false,
  441. url: '/ActivityLogisty',
  442. templateUrl: 'modules/tools/views/ActivityLogisty.html',
  443. controller: 'ActivityLogistyCtrl',
  444. resolve: {
  445. ActivityLogisty: function (LoadJsService) {
  446. return LoadJsService.loadSequence("ActivityLogistyCtrl");
  447. }
  448. },
  449. params: {folupid: 0, role: 1, orgname: "", docking_content: ""}
  450. })
  451. /*资源库的数据来源走访模块表单*/
  452. .state('visitModularForm', {
  453. cache: false,
  454. url: '/visitModularForm',
  455. templateUrl: 'modules/tools/views/visitModularForm.html',
  456. controller: 'visitModularFormCtrl',
  457. resolve: {
  458. visitModularForm: function (LoadJsService) {
  459. return LoadJsService.loadSequence("visitModularFormArgs");
  460. }
  461. },
  462. // isedit:对应的是0新增/1编辑/2复制并编辑
  463. params: {
  464. isedit:0,
  465. companyid: 0,
  466. pageid: 1,
  467. orgtype: 0,
  468. connid: 0,
  469. pagecode:0,
  470. node:'',
  471. pageTitle:'',
  472. title:'',
  473. comfrom:'',
  474. restype:0,
  475. templettype:0,
  476. resid:0,
  477. resourcetype:-1,
  478. innertype:0
  479. }
  480. })
  481. .state('visitModularFormDemand', {
  482. cache: false,
  483. url: '/visitModularFormDemand/:pagecode/:pageid/:techtype',
  484. templateUrl: 'modules/tools/views/visitModularFormDemand.html',
  485. controller: 'visitModularFormDemandCtrl',
  486. resolve: {
  487. visitModularFormDemand: function (LoadJsService) {
  488. return LoadJsService.loadSequence("visitModularFormDemandArgs");
  489. }
  490. },
  491. // isedit:对应的是0新增/1编辑/2复制并编辑
  492. params: {
  493. isedit:0,
  494. companyid: 0,
  495. pageid: 1,
  496. orgtype: 0,
  497. connid: 0,
  498. pagecode:0,
  499. node:'',
  500. pageTitle:'',
  501. title:'',
  502. comfrom:'',
  503. restype:0,
  504. templettype:0,
  505. resid:0,
  506. resourcetype:-1,
  507. innertype:0,
  508. techtype: ''
  509. }
  510. })
  511. /*快速录入的表单入口之基本信息表单*/
  512. .state('unitOrPersonalBaseInfo', {
  513. cache: false,
  514. url: '/unitOrPersonalBaseInfo',
  515. templateUrl: 'modules/tools/views/unitOrPersonalBaseInfo.html',
  516. controller: 'unitOrPersonalBaseInfoCtrl',
  517. resolve: {
  518. unitOrPersonalBaseInfo: function (LoadJsService) {
  519. return LoadJsService.loadSequence("unitOrPersonalBaseInfoArgs");
  520. }
  521. },
  522. params: {pageid: 0, connid: 0, isedit: 0}
  523. })
  524. /*快速录入的表单入口之需求信息表单*/
  525. .state('recordDemandInfo', {
  526. cache: false,
  527. url: '/recordDemandInfo',
  528. templateUrl: 'modules/tools/views/recordDemandInfo.html',
  529. controller: 'recordDemandInfoCtrl',
  530. resolve: {
  531. recordDemandInfo: function (LoadJsService) {
  532. return LoadJsService.loadSequence("recordDemandInfoArgs");
  533. }
  534. },
  535. params: {pageid: 0, connid: 0, isedit: 0}
  536. })
  537. /*快速录入的表单入口之成果信息表单*/
  538. .state('recordAchievementsInfo', {
  539. cache: false,
  540. url: '/recordAchievementsInfo',
  541. templateUrl: 'modules/tools/views/recordAchievementsInfo.html',
  542. controller: 'recordAchievementsInfoCtrl',
  543. resolve: {
  544. recordAchievementsInfo: function (LoadJsService) {
  545. return LoadJsService.loadSequence("recordAchievementsInfoArgs");
  546. }
  547. },
  548. params: {pageid: 0, connid: 0, isedit: 0}
  549. })
  550. /*快速录入的表单入口之产品信息表单*/
  551. .state('recordProductInfo', {
  552. cache: false,
  553. url: '/recordProductInfo',
  554. templateUrl: 'modules/tools/views/recordProductInfo.html',
  555. controller: 'recordProductInfoCtrl',
  556. resolve: {
  557. recordProductInfo: function (LoadJsService) {
  558. return LoadJsService.loadSequence("recordProductInfoArgs");
  559. }
  560. },
  561. params: {pageid: 0, connid: 0, isedit: 0}
  562. })
  563. /*快速录入的表单入口之专利信息表单*/
  564. .state('recordPatentInfo', {
  565. cache: false,
  566. url: '/recordPatentInfo',
  567. templateUrl: 'modules/tools/views/recordPatentInfo.html',
  568. controller: 'recordPatentInfoCtrl',
  569. resolve: {
  570. recordPatentInfo: function (LoadJsService) {
  571. return LoadJsService.loadSequence("recordPatentInfoArgs");
  572. }
  573. },
  574. params: {pageid: 0, connid: 0, isedit: 0}
  575. })
  576. /*快速录入的表单入口之人才信息表单*/
  577. .state('recordTalentInfo', {
  578. cache: false,
  579. url: '/recordTalentInfo',
  580. templateUrl: 'modules/tools/views/recordTalentInfo.html',
  581. controller: 'recordTalentInfoCtrl',
  582. resolve: {
  583. recordTalentInfo: function (LoadJsService) {
  584. return LoadJsService.loadSequence("recordTalentInfoArgs");
  585. }
  586. },
  587. params: {pageid: 0, connid: 0, isedit: 0}
  588. })
  589. /*我的录入页面统计*/
  590. .state('recordInfoAccount', {
  591. cache: false,
  592. url: '/recordInfoAccount',
  593. templateUrl: 'modules/tools/views/recordInfoAccount.html',
  594. controller: 'recordInfoAccountCtrl',
  595. resolve: {
  596. recordInfoAccount: function (LoadJsService) {
  597. return LoadJsService.loadSequence("recordInfoAccountArgs");
  598. }
  599. }
  600. })
  601. /*我的录入详情页*/
  602. .state('recordInfoDetail', {
  603. cache: false,
  604. url: '/recordInfoDetail',
  605. templateUrl: 'modules/tools/views/recordInfoDetail.html',
  606. controller: 'recordInfoDetailCtrl',
  607. resolve: {
  608. recordInfoDetail: function (LoadJsService) {
  609. return LoadJsService.loadSequence("recordInfoDetailArgs");
  610. }
  611. },
  612. params: {connid: 0}
  613. })
  614. // 录入模型
  615. .state('typeinInformation', {
  616. cache: false,
  617. url: '/typeinInformation',
  618. templateUrl: 'modules/tools/views/typeinInformation.html',
  619. controller: 'typeinInformationCtrl',
  620. resolve: {
  621. typeinInformationCtrl: function (LoadJsService) {
  622. return LoadJsService.loadSequence("typeinInformationArgs");
  623. }
  624. },
  625. params: {orgtype:0,pagecode:0,pagename:0,id:0,isedit:0,connid:0,node:0,pageid:0}
  626. })
  627. // 溧水录入模型
  628. .state('typeinAllModal', {
  629. cache: false,
  630. url: '/typeinAllModal',
  631. templateUrl: 'modules/tools/views/typeinAllModal.html',
  632. controller: 'typeinAllModalCtrl',
  633. resolve: {
  634. typeinAllModalCtrl: function (LoadJsService) {
  635. return LoadJsService.loadSequence("typeinAllModalArgs");
  636. }
  637. },
  638. params: {isedit:0, companyid: 0, pageid: 0, orgtype: 0, connid: 0,pagecode:0,node:'',pageTitle:''}
  639. })
  640. }]);