pages.json 26 KB

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