pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. {
  2. "pages": [{
  3. "path": "pages/views/home/home", //首页
  4. "style": {
  5. "navigationBarTitleText": "实验室安全智慧化管控系统",
  6. "navigationBarTextStyle": "white", //导航文字颜色
  7. "navigationBarBackgroundColor": "#0183FA", //导航背景色
  8. "navigationStyle": "custom"
  9. }
  10. },
  11. {
  12. "path": "pages/views/login/login", //登录
  13. "style": {
  14. "navigationBarTitleText": "",
  15. "navigationBarTextStyle": "white", //导航文字颜色
  16. "navigationStyle": "custom" //关闭原生导航
  17. }
  18. },
  19. {
  20. "path": "pages/views/login/ssoLogin", //统一认证页面
  21. "style": {
  22. "navigationBarTitleText": "统一身份认证",
  23. "navigationBarTextStyle": "white", //导航文字颜色
  24. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  25. }
  26. },
  27. {
  28. "path": "pages/views/login/ssoCertification", //统一认证后跳转登录页面
  29. "style": {
  30. "navigationBarTitleText": "身份认证",
  31. "navigationBarTextStyle": "white", //导航文字颜色
  32. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  33. }
  34. },
  35. {
  36. "path": "pages/views/dataBoard/dataBoard",
  37. "style": {
  38. "navigationBarTitleText": "",
  39. "navigationBarTextStyle": "white", //导航文字颜色
  40. "navigationStyle": "custom" //关闭原生导航
  41. }
  42. },
  43. {
  44. "path": "pages/views/dataBoard/equipmentControlOverdue",
  45. "style": {
  46. "navigationBarTitleText": "超期服役排行",
  47. "navigationBarTextStyle": "#FFFFFF", //导航文字颜色
  48. "navigationBarBackgroundColor": "#363744" //导航背景色
  49. }
  50. },
  51. {
  52. "path": "pages/views/teacherPage/laboratoryList", //实验室列表
  53. "style": {
  54. "navigationBarTitleText": "实验室安全智慧化管控系统",
  55. "navigationBarTextStyle": "white", //导航文字颜色
  56. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  57. }
  58. },
  59. {
  60. "path": "pages/views/information/information", //消息
  61. "style": {
  62. "navigationBarTitleText": "消息"
  63. }
  64. },
  65. {
  66. "path": "pages/views/mine/mine", //我的
  67. "style": {
  68. "navigationBarTitleText": "我的",
  69. "navigationBarTextStyle": "white", //导航文字颜色
  70. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  71. }
  72. },
  73. {
  74. "path": "pages/views/information/informationInfo", //消息
  75. "style": {
  76. "navigationBarTitleText": "消息详情"
  77. }
  78. },
  79. {
  80. "path": "pages/views/pages_patrolInspector/chemicalDetail",
  81. "style": {
  82. "navigationBarTitleText": "化学品详情",
  83. "navigationBarTextStyle": "white", //导航文字颜色
  84. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  85. }
  86. },
  87. {
  88. "path": "pages/views/pages_patrolInspector/chemicalCabinetQRcode",
  89. "style": {
  90. "navigationBarTitleText": "化学品柜详情",
  91. "navigationBarTextStyle": "white", //导航文字颜色
  92. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  93. }
  94. },
  95. {
  96. "path": "pages/views/pages_patrolInspector/chemicalCatalogue",
  97. "style": {
  98. "navigationBarTitleText": "化学品柜详情",
  99. "navigationBarTextStyle": "white", //导航文字颜色
  100. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  101. }
  102. },
  103. {
  104. "path": "pages/views/pages_patrolInspector/courseQRcode",
  105. "style": {
  106. "navigationBarTitleText": "课程详情",
  107. "navigationBarTextStyle": "white", //导航文字颜色
  108. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  109. }
  110. },
  111. {
  112. "path": "pages/views/pages_patrolInspector/identityVerify",
  113. "style": {
  114. "navigationBarTitleText": "提示",
  115. "navigationBarTextStyle": "white", //导航文字颜色
  116. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  117. }
  118. },
  119. /*供应商*/
  120. {
  121. "path": "pages/views/supplier/forbidden",
  122. "style": {
  123. "navigationBarTitleText": "供应商管理平台"
  124. }
  125. },
  126. {
  127. "path": "pages/views/supplier/reject",
  128. "style": {
  129. "navigationBarTitleText": "驳回"
  130. }
  131. },
  132. {
  133. "path": "pages/views/supplier/hasten",
  134. "style": {
  135. "navigationBarTitleText": "立即催办"
  136. }
  137. },
  138. {
  139. "path": "pages/views/saoCode/saoCode", //扫码中转
  140. "style": {
  141. "navigationBarTitleText": "",
  142. "navigationBarTextStyle": "white", //导航文字颜色
  143. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  144. }
  145. },
  146. {
  147. "path": "pages/views/saoCode/chemicalsInstructionsVideo", //操作教程
  148. "style": {
  149. "navigationBarTitleText": "操作教程",
  150. "navigationBarTextStyle": "white", //导航文字颜色
  151. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  152. }
  153. }
  154. ],
  155. "subPackages": [
  156. {
  157. /* 基础分包 */
  158. "root": "pages_basics", //分包根路径
  159. "name": "basics", //分包名字可写可不写
  160. "pages": [{
  161. "path": "views/forgotPassword/forgotPassword", //忘记密码
  162. "style": {
  163. "navigationBarTitleText": "忘记密码",
  164. "navigationBarTextStyle": "white", //导航文字颜色
  165. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  166. }
  167. },
  168. {
  169. "path": "views/editPassword/editPassword", //忘记密码
  170. "style": {
  171. "navigationBarTitleText": "修改密码",
  172. "navigationBarTextStyle": "white", //导航文字颜色
  173. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  174. }
  175. },
  176. {
  177. "path": "views/completeInformation/completeInformation", //忘记密码
  178. "style": {
  179. "navigationBarTitleText": "完善个人信息",
  180. "navigationBarTextStyle": "white", //导航文字颜色
  181. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  182. }
  183. },
  184. /* 设备管理和笼位管理页面 */
  185. {
  186. "path": "views/deviceCageSitePage",
  187. "style": {
  188. "navigationBarTitleText": ""
  189. }
  190. },
  191. /* 离开检查 */
  192. {
  193. "path": "views/photoInspection",
  194. "style": {
  195. "navigationBarTitleText": "离开检查"
  196. }
  197. },
  198. /* 修改头像 */
  199. {
  200. "path": "views/avatar",
  201. "style": {
  202. "navigationBarTitleText": "身份验证"
  203. }
  204. },
  205. {
  206. "path": "views/faceImage", //身份验证
  207. "style": {
  208. "navigationBarTitleText": "身份验证"
  209. }
  210. },
  211. /* 预警信息 */
  212. {
  213. "path": "views/earlyWarningManage/earlyWarningDetail",
  214. "style": {
  215. "navigationBarTitleText": "预案预警信息"
  216. }
  217. },
  218. {
  219. "path": "views/earlyWarningManage/earlyWarningList",
  220. "style": {
  221. "navigationBarTitleText": "预警记录"
  222. }
  223. },
  224. {
  225. "path": "views/earlyWarningManage/videoMonitoring",
  226. "style": {
  227. "navigationBarTitleText": "监控信息"
  228. }
  229. },
  230. {
  231. "path": "views/earlyWarningManage/warningVideo",
  232. "style": {
  233. "navigationBarTitleText": "报警抓拍"
  234. }
  235. },
  236. {
  237. "path": "views/record/index",
  238. "style": {
  239. "navigationBarTitleText": "进出记录"
  240. }
  241. },
  242. {
  243. "path": "views/record/infoPage",
  244. "style": {
  245. "navigationBarTitleText": "进出详情"
  246. }
  247. },
  248. /* 分级管控 */
  249. {
  250. "path": "views/gradingControl/gradingControl", //分级管控
  251. "style": {
  252. "navigationBarTitleText": "管控工作"
  253. }
  254. },
  255. {
  256. "path": "views/gradingControl/gradingControlFinish", //分级管控-完成列表
  257. "style": {
  258. "navigationBarTitleText": "分级管控"
  259. }
  260. },
  261. {
  262. "path": "views/gradingControl/gradingControlAdd", //分级管控-添加
  263. "style": {
  264. "navigationBarTitleText": "分级管控"
  265. }
  266. },
  267. {
  268. "path": "views/gradingControl/gradingControlDetail", //分级管控-详情
  269. "style": {
  270. "navigationBarTitleText": "分级管控"
  271. }
  272. },
  273. {
  274. "path": "views/signature/signature",
  275. "style": {
  276. "navigationBarTitleText": "电子签名"
  277. }
  278. },
  279. {
  280. "path": "views/signature/signatureImg",
  281. "style": {
  282. "navigationBarTitleText": "电子签名"
  283. }
  284. }
  285. ]
  286. },
  287. // {
  288. // /* 供应商端分包 */
  289. // "root": "pages_supplier", //分包根路径
  290. // "name": "supplier", //分包名字可写可不写
  291. // "pages": [
  292. // /* 待办事项 */
  293. // {
  294. // "path": "views/backlogManage/backlogManage",
  295. // "style": {
  296. // "navigationBarTitleText": "待办清单"
  297. // }
  298. // },
  299. // {
  300. // "path": "views/backlogManage/backlogManageAirDetail",
  301. // "style": {
  302. // "navigationBarTitleText": "配送申请"
  303. // }
  304. // },
  305. // {
  306. // "path": "views/backlogManage/backlogManageRecycleDetail",
  307. // "style": {
  308. // "navigationBarTitleText": "回收申请"
  309. // }
  310. // },
  311. // {
  312. // "path": "views/backlogManage/backlogManageIssueDetail",
  313. // "style": {
  314. // "navigationBarTitleText": "货品问题"
  315. // }
  316. // },
  317. // /* 气瓶管理 */
  318. // {
  319. // "path": "views/gasManage/gasManageDetail",
  320. // "style": {
  321. // "navigationBarTitleText": "气瓶详情"
  322. // }
  323. // },
  324. // {
  325. // "path": "views/gasManage/gasManageAdd",
  326. // "style": {
  327. // "navigationBarTitleText": "新增气瓶"
  328. // }
  329. // },
  330. // {
  331. // "path": "views/gasManage/gasManage",
  332. // "style": {
  333. // "navigationBarTitleText": "气瓶管理"
  334. // }
  335. // },
  336. // /* 运输车辆 */
  337. // {
  338. // "path": "views/transportCar/transportCar",
  339. // "style": {
  340. // "navigationBarTitleText": "运输车辆管理"
  341. // }
  342. // },
  343. // {
  344. // "path": "views/transportCar/transportCarDetail",
  345. // "style": {
  346. // "navigationBarTitleText": "查看运输车辆"
  347. // }
  348. // },
  349. // {
  350. // "path": "views/transportCar/transportCarAdd",
  351. // "style": {
  352. // "navigationBarTitleText": "新增运输车辆"
  353. // }
  354. // },
  355. // /* 运输人员 */
  356. // {
  357. // "path": "views/transportPerson/transportPersonDetail",
  358. // "style": {
  359. // "navigationBarTitleText": "查看运输人员"
  360. // }
  361. // },
  362. // {
  363. // "path": "views/transportPerson/transportPersonAdd",
  364. // "style": {
  365. // "navigationBarTitleText": "新增运输人员"
  366. // }
  367. // },
  368. // {
  369. // "path": "views/transportPerson/transportPerson",
  370. // "style": {
  371. // "navigationBarTitleText": "运输人员管理"
  372. // }
  373. // },
  374. // /* 供气回收记录 */
  375. // {
  376. // "path": "views/gasRecycle/gasRecycleAirDetail",
  377. // "style": {
  378. // "navigationBarTitleText": "配送申请"
  379. // }
  380. // },
  381. // {
  382. // "path": "views/gasRecycle/gasRecycleRecycleDetail",
  383. // "style": {
  384. // "navigationBarTitleText": "回收申请"
  385. // }
  386. // },
  387. // {
  388. // "path": "views/gasRecycle/gasRecycleIssueDetail",
  389. // "style": {
  390. // "navigationBarTitleText": "货品问题"
  391. // }
  392. // },
  393. // {
  394. // "path": "views/gasRecycle/gasRecycle",
  395. // "style": {
  396. // "navigationBarTitleText": "供气回收记录"
  397. // }
  398. // },
  399. // /* 个人中心 */
  400. // {
  401. // "path": "views/mine/changePassword",
  402. // "style": {
  403. // "navigationBarTitleText": "修改密码"
  404. // }
  405. // },
  406. // {
  407. // "path": "views/mine/mine",
  408. // "style": {
  409. // "navigationBarTitleText": "资料信息"
  410. // }
  411. // },
  412. // /* 注册 */
  413. // {
  414. // "path": "views/register/forgotPassword", //忘记密码
  415. // "style": {
  416. // "navigationBarTitleText": "密码重置申请"
  417. // }
  418. // },
  419. // {
  420. // "path": "views/register/registerSuccess", //注册
  421. // "style": {
  422. // "navigationBarTitleText": "申请入驻"
  423. // }
  424. // },
  425. // {
  426. // "path": "views/register/register", //注册
  427. // "style": {
  428. // "navigationBarTitleText": "注册"
  429. // }
  430. // },
  431. // {
  432. // "path": "views/register/registerTow", //注册
  433. // "style": {
  434. // "navigationBarTitleText": "注册"
  435. // }
  436. // }
  437. // ]
  438. // },
  439. {
  440. /* 学生端分包 */
  441. "root": "pages_student", //分包根路径
  442. "name": "student", //分包名字可写可不写
  443. "pages": [{
  444. "path": "views/meCertificate",
  445. "style": {
  446. "navigationBarTitleText": "我的证书"
  447. }
  448. },
  449. /* 积分管理 */
  450. {
  451. "path": "views/integralManage/codeSuccess", //扫码成功
  452. "style": {
  453. "navigationBarTitleText": "扫码成功"
  454. }
  455. },
  456. {
  457. "path": "views/integralManage/creditPoints", //信用分记录
  458. "style": {
  459. "navigationBarTitleText": "信用分记录",
  460. "enablePullDownRefresh": true
  461. }
  462. },
  463. {
  464. "path": "views/integralManage/rewardPoints", //奖励分记录
  465. "style": {
  466. "navigationBarTitleText": "奖励分记录",
  467. "enablePullDownRefresh": true
  468. }
  469. },
  470. {
  471. "path": "views/integralManage/pointsRecord", //积分记录
  472. "style": {
  473. "navigationBarTitleText": "积分记录"
  474. }
  475. },
  476. /*准入申请*/
  477. {
  478. "path": "views/accessApplication/accessApplication", //准入申请
  479. "style": {
  480. "navigationBarTitleText": "安全准入"
  481. }
  482. },
  483. {
  484. "path": "views/accessApplication/applicationDetails", //申请详情
  485. "style": {
  486. "navigationBarTitleText": ""
  487. }
  488. },
  489. {
  490. "path": "views/accessApplication/chooseALaboratory", //选择实验室
  491. "style": {
  492. "navigationBarTitleText": "安全准入"
  493. }
  494. },
  495. {
  496. "path": "views/accessApplication/newApplication", //选择实验室
  497. "style": {
  498. "navigationBarTitleText": "准入申请"
  499. }
  500. },
  501. {
  502. "path": "views/accessApplication/safeAccess", //安全准入
  503. "style": {
  504. "navigationBarTitleText": "我的准入"
  505. }
  506. },
  507. {
  508. "path": "views/meViolation/meViolation", //安全准入
  509. "style": {
  510. "navigationBarTitleText": "违规记录"
  511. }
  512. },
  513. /* 气瓶管理 */
  514. {
  515. "path": "views/gasBottle/leaveConfirm/amendAir",
  516. "style": {
  517. "navigationBarTitleText": "修改气压"
  518. }
  519. },
  520. {
  521. "path": "views/gasBottle/leaveConfirm/leaveConfirm",
  522. "style": {
  523. "navigationBarTitleText": "出库确认"
  524. }
  525. },
  526. {
  527. "path": "views/gasBottle/useRegister/giveRegister",
  528. "style": {
  529. "navigationBarTitleText": "归还登记"
  530. }
  531. },
  532. {
  533. "path": "views/gasBottle/useRegister/useRegister",
  534. "style": {
  535. "navigationBarTitleText": "使用登记"
  536. }
  537. },
  538. {
  539. "path": "views/gasBottle/useRecord/useRecordDetail",
  540. "style": {
  541. "navigationBarTitleText": "使用详情"
  542. }
  543. },
  544. {
  545. "path": "views/gasBottle/useRecord/useRecord",
  546. "style": {
  547. "navigationBarTitleText": "使用记录"
  548. }
  549. },
  550. {
  551. "path": "views/gasBottle/gasList/gasListBinding",
  552. "style": {
  553. "navigationBarTitleText": "气瓶详情"
  554. }
  555. },
  556. {
  557. "path": "views/gasBottle/gasList/gasUseDetail",
  558. "style": {
  559. "navigationBarTitleText": "使用详情"
  560. }
  561. },
  562. {
  563. "path": "views/gasBottle/gasList/gasListDetail",
  564. "style": {
  565. "navigationBarTitleText": "气瓶详情"
  566. }
  567. },
  568. {
  569. "path": "views/gasBottle/gasList/gasList",
  570. "style": {
  571. "navigationBarTitleText": "气瓶列表"
  572. }
  573. },
  574. {
  575. "path": "views/gasBottle/gasApply/awaitStorage",
  576. "style": {
  577. "navigationBarTitleText": "待入库"
  578. }
  579. },
  580. {
  581. "path": "views/gasBottle/gasApply/gasApplyReject",
  582. "style": {
  583. "navigationBarTitleText": "拒收气瓶"
  584. }
  585. },
  586. {
  587. "path": "views/gasBottle/gasApply/gasApplyList",
  588. "style": {
  589. "navigationBarTitleText": "申请详情"
  590. }
  591. },
  592. {
  593. "path": "views/gasBottle/gasApply/gasApplyAdd", //添加
  594. "style": {
  595. "navigationBarTitleText": "申请气瓶"
  596. }
  597. },
  598. {
  599. "path": "views/gasBottle/gasApply/gasApply",
  600. "style": {
  601. "navigationBarTitleText": "气瓶申请"
  602. }
  603. },
  604. {
  605. "path": "views/gasBottle/examination/examinationSelect", //添加
  606. "style": {
  607. "navigationBarTitleText": "选择气瓶"
  608. }
  609. },
  610. {
  611. "path": "views/gasBottle/examination/examinationDetail", //详情
  612. "style": {
  613. "navigationBarTitleText": "资格申请"
  614. }
  615. },
  616. {
  617. "path": "views/gasBottle/examination/examinationAdd", //添加
  618. "style": {
  619. "navigationBarTitleText": "资格申请"
  620. }
  621. },
  622. {
  623. "path": "views/gasBottle/examination/examinationSucceed",
  624. "style": {
  625. "navigationBarTitleText": "资格申请"
  626. }
  627. },
  628. {
  629. "path": "views/gasBottle/examination/examination",
  630. "style": {
  631. "navigationBarTitleText": "资格申请"
  632. }
  633. },
  634. {
  635. "path": "views/gasBottle/gasManage/gasManage",
  636. "style": {
  637. "navigationBarTitleText": "用气管理"
  638. }
  639. },
  640. {
  641. "path": "views/gasBottle/useGasApply/useGasApply",
  642. "style": {
  643. "navigationBarTitleText": "用气申请"
  644. }
  645. },
  646. {
  647. "path": "views/gasBottle/useGasApply/useGasApplyAdd",
  648. "style": {
  649. "navigationBarTitleText": "申请用气"
  650. }
  651. },
  652. {
  653. "path": "views/gasBottle/useGasApply/useGasApplyDetail",
  654. "style": {
  655. "navigationBarTitleText": "申请详情"
  656. }
  657. },
  658. {
  659. "path": "views/myRecord/index",
  660. "style": {
  661. "navigationBarTitleText": "进出记录"
  662. }
  663. },
  664. {
  665. "path": "views/myRecord/infoPage",
  666. "style": {
  667. "navigationBarTitleText": "进出详情"
  668. }
  669. }
  670. ]
  671. },
  672. {
  673. /* 管理端分包 */
  674. "root": "pages_manage", //分包根路径
  675. "name": "manage", //分包名字可写可不写
  676. "pages": [
  677. //门禁授权
  678. {
  679. "path": "views/accessControl/empowerOpen",
  680. "style": {
  681. "navigationBarTitleText": "授权开门"
  682. }
  683. },
  684. {
  685. "path": "views/accessControl/remoteOpen",
  686. "style": {
  687. "navigationBarTitleText": "远程开门"
  688. }
  689. },
  690. //应急处置-实验室列表
  691. {
  692. "path": "views/emergencyEvacuationSubList", //应急疏散
  693. "style": {
  694. "navigationBarTitleText": "应急处置"
  695. }
  696. },
  697. //应急处置
  698. {
  699. "path": "views/emergencyEvacuationBig", //应急疏散
  700. "style": {
  701. "navigationBarTitleText": "应急处置"
  702. }
  703. },
  704. {
  705. "path": "views/emergencyEvacuationBigFullScreen", //应急疏散
  706. "style": {
  707. "navigationBarTitleText": "应急处置",
  708. "pageOrientation": "landscape"
  709. }
  710. },
  711. /* 准入审核 */
  712. {
  713. "path": "views/accessQualification/accessQualification",
  714. "style": {
  715. "navigationBarTitleText": "准入审核"
  716. }
  717. },
  718. {
  719. "path": "views/accessQualification/accessQualificationInfo", //准入资格证书申请详情
  720. "style": {
  721. "navigationBarTitleText": ""
  722. }
  723. },
  724. {
  725. "path": "views/accessQualification/approve", //不通过原因
  726. "style": {
  727. "navigationBarTitleText": "审核未通过"
  728. }
  729. },
  730. /* 我的实验室 */
  731. // {
  732. // "path": "views/laboratory/meLaboratory",//我的实验室
  733. // "style": {
  734. // "navigationBarTitleText": "我的实验室"
  735. // }
  736. // },
  737. /* 安全检查扫一扫进入实验室详情 */
  738. {
  739. "path": "views/laboratory/safetyCardScan",
  740. "style": {
  741. "navigationBarTitleText": "实验室"
  742. }
  743. },
  744. /* 实验室详情 */
  745. {
  746. "path": "views/laboratory/infoPage", //详情
  747. "style": {
  748. "navigationBarTitleText": "实验室详情",
  749. "enablePullDownRefresh": true
  750. }
  751. },
  752. {
  753. "path": "views/laboratory/videoPlayer", //视频监控
  754. "style": {
  755. "navigationBarTitleText": "视频监控",
  756. "enablePullDownRefresh": true
  757. }
  758. },
  759. /* 实验室详情-进出记录 */
  760. {
  761. "path": "views/laboratory/accessRecord",
  762. "style": {
  763. "navigationBarTitleText": "进出记录",
  764. "enablePullDownRefresh": true
  765. }
  766. },
  767. {
  768. "path": "views/laboratory/word", //播放文字
  769. "style": {
  770. "navigationBarTitleText": "播放文字"
  771. }
  772. },
  773. {
  774. "path": "views/laboratory/monitor", //查看监控
  775. "style": {
  776. "navigationBarTitleText": "查看监控"
  777. }
  778. },
  779. {
  780. "path": "views/laboratory/safetyCard", //安全信息牌
  781. "style": {
  782. "navigationBarTitleText": "安全信息牌"
  783. }
  784. },
  785. /* 预案执行记录 */
  786. {
  787. "path": "views/plan/planList", //预案执行记录
  788. "style": {
  789. "navigationBarTitleText": "预案执行记录"
  790. }
  791. },
  792. {
  793. "path": "views/plan/planInfo", //预案详情
  794. "style": {
  795. "navigationBarTitleText": "预案详情"
  796. }
  797. },
  798. /* 分级管控 */
  799. {
  800. "path": "views/gradingControl/gradingControl", //分级管控
  801. "style": {
  802. "navigationBarTitleText": "分级管控"
  803. }
  804. },
  805. {
  806. "path": "views/gradingControl/infoPage", //分级管控
  807. "style": {
  808. "navigationBarTitleText": "分级管控详情"
  809. }
  810. },
  811. /* 用气申请 */
  812. {
  813. "path": "views/gasBottle/useGasApply/useGasApply",
  814. "style": {
  815. "navigationBarTitleText": "用气申请"
  816. }
  817. },
  818. {
  819. "path": "views/gasBottle/useGasApply/useGasApplyAdd",
  820. "style": {
  821. "navigationBarTitleText": "申请用气"
  822. }
  823. },
  824. {
  825. "path": "views/gasBottle/useGasApply/useGasApplyDetail",
  826. "style": {
  827. "navigationBarTitleText": "申请详情"
  828. }
  829. },
  830. /* 资质审核 */
  831. {
  832. "path": "views/gasBottle/aptitudeAudit/aptitudeAudit",
  833. "style": {
  834. "navigationBarTitleText": "资格审核"
  835. }
  836. },
  837. {
  838. "path": "views/gasBottle/aptitudeAudit/aptitudeAuditDetail",
  839. "style": {
  840. "navigationBarTitleText": "资格审核"
  841. }
  842. },
  843. {
  844. "path": "views/gasBottle/aptitudeAudit/aptitudeAuditCheck",
  845. "style": {
  846. "navigationBarTitleText": "资格审核"
  847. }
  848. },
  849. /* 气瓶归还登记 */
  850. {
  851. "path": "views/gasBottle/leaveConfirm/amendAir",
  852. "style": {
  853. "navigationBarTitleText": "修改气压"
  854. }
  855. },
  856. {
  857. "path": "views/gasBottle/leaveConfirm/leaveConfirm",
  858. "style": {
  859. "navigationBarTitleText": "出库确认"
  860. }
  861. },
  862. /* 气瓶归还登记 */
  863. {
  864. "path": "views/gasBottle/useRegister/giveRegister",
  865. "style": {
  866. "navigationBarTitleText": "归还登记"
  867. }
  868. },
  869. /* 气瓶使用登记 */
  870. {
  871. "path": "views/gasBottle/useRegister/useRegister",
  872. "style": {
  873. "navigationBarTitleText": "使用登记"
  874. }
  875. },
  876. /* 气瓶使用记录 */
  877. {
  878. "path": "views/gasBottle/useRecord/useRecordDetail",
  879. "style": {
  880. "navigationBarTitleText": "使用详情"
  881. }
  882. },
  883. {
  884. "path": "views/gasBottle/useRecord/useRecord",
  885. "style": {
  886. "navigationBarTitleText": "使用记录"
  887. }
  888. },
  889. /* 气瓶列表 */
  890. {
  891. "path": "views/gasBottle/gasList/gasListBinding",
  892. "style": {
  893. "navigationBarTitleText": "气瓶详情"
  894. }
  895. },
  896. {
  897. "path": "views/gasBottle/gasList/gasUseDetail",
  898. "style": {
  899. "navigationBarTitleText": "使用详情"
  900. }
  901. },
  902. {
  903. "path": "views/gasBottle/gasList/gasListDetail",
  904. "style": {
  905. "navigationBarTitleText": "气瓶详情"
  906. }
  907. },
  908. {
  909. "path": "views/gasBottle/gasList/gasList",
  910. "style": {
  911. "navigationBarTitleText": "气瓶列表"
  912. }
  913. },
  914. /* 气瓶申请 */
  915. {
  916. "path": "views/gasBottle/gasApply/awaitStorage",
  917. "style": {
  918. "navigationBarTitleText": "待入库"
  919. }
  920. },
  921. {
  922. "path": "views/gasBottle/gasApply/gasApplyReject",
  923. "style": {
  924. "navigationBarTitleText": "拒收气瓶"
  925. }
  926. },
  927. {
  928. "path": "views/gasBottle/gasApply/gasApplyList",
  929. "style": {
  930. "navigationBarTitleText": "申请详情"
  931. }
  932. },
  933. {
  934. "path": "views/gasBottle/gasApply/gasApplyAdd", //添加
  935. "style": {
  936. "navigationBarTitleText": "申请气瓶"
  937. }
  938. },
  939. {
  940. "path": "views/gasBottle/gasApply/gasApply",
  941. "style": {
  942. "navigationBarTitleText": "气瓶申请"
  943. }
  944. },
  945. /* 资格申请 */
  946. {
  947. "path": "views/gasBottle/examination/examinationSelect", //添加
  948. "style": {
  949. "navigationBarTitleText": "选择气瓶"
  950. }
  951. },
  952. {
  953. "path": "views/gasBottle/examination/examinationAdd", //添加
  954. "style": {
  955. "navigationBarTitleText": "资格申请"
  956. }
  957. },
  958. {
  959. "path": "views/gasBottle/examination/examinationDetail",
  960. "style": {
  961. "navigationBarTitleText": "资格申请"
  962. }
  963. },
  964. {
  965. "path": "views/gasBottle/examination/examination",
  966. "style": {
  967. "navigationBarTitleText": "资格申请"
  968. }
  969. },
  970. {
  971. "path": "views/gasBottle/gasManage/gasManage",
  972. "style": {
  973. "navigationBarTitleText": "用气管理"
  974. }
  975. }
  976. ]
  977. },
  978. {
  979. /* 安全检查分包 */
  980. "root": "pages_safetyCheck", //分包根路径
  981. "name": "safetyCheck", //分包名字可写可不写
  982. "pages": [{
  983. "path": "views/safetyCheck",
  984. "style": {
  985. "navigationBarTitleText": "安全检查"
  986. }
  987. },
  988. {
  989. "path": "views/inspectManage/inspectAdd",
  990. "style": {
  991. "navigationBarTitleText": "开始检查"
  992. }
  993. },
  994. {
  995. "path": "views/inspectManage/conductInspections",
  996. "style": {
  997. "navigationBarTitleText": "开展检查"
  998. }
  999. },
  1000. {
  1001. "path": "views/inspectManage/hiddenDangerRecord",
  1002. "style": {
  1003. "navigationBarTitleText": "隐患记录"
  1004. }
  1005. },
  1006. {
  1007. "path": "views/inspectManage/inspectList",
  1008. "style": {
  1009. "navigationBarTitleText": "检查"
  1010. }
  1011. },
  1012. {
  1013. "path": "views/itemsManage/hiddenDangerItemsSearch",
  1014. "style": {
  1015. "navigationBarTitleText": "隐患项搜索"
  1016. }
  1017. },
  1018. {
  1019. "path": "views/itemsManage/hiddenDangerItems",
  1020. "style": {
  1021. "navigationBarTitleText": "隐患项"
  1022. }
  1023. },
  1024. {
  1025. "path": "views/itemsManage/hiddenDangerRectification",
  1026. "style": {
  1027. "navigationBarTitleText": "隐患项整改"
  1028. }
  1029. },
  1030. {
  1031. "path": "views/itemsManage/hiddenDangerItemsDetail",
  1032. "style": {
  1033. "navigationBarTitleText": "检查详情"
  1034. }
  1035. },
  1036. {
  1037. "path": "views/snapshotManage/snapshotDetail",
  1038. "style": {
  1039. "navigationBarTitleText": "随手拍详情"
  1040. }
  1041. },
  1042. {
  1043. "path": "views/snapshotManage/snapshotList",
  1044. "style": {
  1045. "navigationBarTitleText": "随手拍"
  1046. }
  1047. },
  1048. {
  1049. "path": "views/snapshotManage/snapshotItems",
  1050. "style": {
  1051. "navigationBarTitleText": "随手拍整改项"
  1052. }
  1053. },
  1054. {
  1055. "path": "views/snapshotManage/laboratorySearch",
  1056. "style": {
  1057. "navigationBarTitleText": "搜索实验室"
  1058. }
  1059. },
  1060. {
  1061. "path": "views/snapshotManage/snapshotRectification",
  1062. "style": {
  1063. "navigationBarTitleText": "整改"
  1064. }
  1065. },
  1066. {
  1067. "path": "views/materialAttachments",
  1068. "style": {
  1069. "navigationBarTitleText": "材料附件"
  1070. }
  1071. },
  1072. {
  1073. "path": "views/planDetail",
  1074. "style": {
  1075. "navigationBarTitleText": "计划详情"
  1076. }
  1077. }
  1078. ]
  1079. }
  1080. ],
  1081. "globalStyle": {
  1082. "navigationBarTextStyle": "white", //导航文字颜色
  1083. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  1084. }
  1085. }