pages.json 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304
  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/accountLogin", //账号密码登录
  21. "style": {
  22. "navigationBarTitleText": "账号密码登录",
  23. "navigationBarTextStyle": "white", //导航文字颜色
  24. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  25. }
  26. },
  27. {
  28. "path": "pages/views/login/ssoLogin", //统一认证页面
  29. "style": {
  30. "navigationBarTitleText": "统一身份认证",
  31. "navigationBarTextStyle": "white", //导航文字颜色
  32. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  33. }
  34. },
  35. {
  36. "path": "pages/views/login/ssoCertification", //统一认证后跳转登录页面
  37. "style": {
  38. "navigationBarTitleText": "身份认证",
  39. "navigationBarTextStyle": "white", //导航文字颜色
  40. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  41. }
  42. },
  43. {
  44. "path": "pages/views/dataBoard/dataBoard",
  45. "style": {
  46. "navigationBarTitleText": "",
  47. "navigationBarTextStyle": "white", //导航文字颜色
  48. "navigationStyle": "custom" //关闭原生导航
  49. }
  50. },
  51. {
  52. "path": "pages/views/dataBoard/equipmentControlOverdue",
  53. "style": {
  54. "navigationBarTitleText": "超期服役排行",
  55. "navigationBarTextStyle": "#FFFFFF", //导航文字颜色
  56. "navigationBarBackgroundColor": "#363744" //导航背景色
  57. }
  58. },
  59. {
  60. "path": "pages/views/teacherPage/laboratoryList", //实验室列表
  61. "style": {
  62. "navigationBarTitleText": "实验室安全智慧化管控系统",
  63. "navigationBarTextStyle": "white", //导航文字颜色
  64. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  65. }
  66. },
  67. {
  68. "path": "pages/views/information/information", //消息
  69. "style": {
  70. "navigationBarTitleText": "消息"
  71. }
  72. },
  73. {
  74. "path": "pages/views/mine/mine", //我的
  75. "style": {
  76. "navigationBarTitleText": "我的",
  77. "navigationBarTextStyle": "white", //导航文字颜色
  78. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  79. }
  80. },
  81. {
  82. "path": "pages/views/information/informationInfo", //消息
  83. "style": {
  84. "navigationBarTitleText": "消息详情"
  85. }
  86. },
  87. {
  88. "path": "pages/views/pages_patrolInspector/chemicalDetail",
  89. "style": {
  90. "navigationBarTitleText": "化学品详情",
  91. "navigationBarTextStyle": "white", //导航文字颜色
  92. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  93. }
  94. },
  95. {
  96. "path": "pages/views/pages_patrolInspector/chemicalCabinetQRcode",
  97. "style": {
  98. "navigationBarTitleText": "化学品柜详情",
  99. "navigationBarTextStyle": "white", //导航文字颜色
  100. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  101. }
  102. },
  103. {
  104. "path": "pages/views/pages_patrolInspector/chemicalCatalogue",
  105. "style": {
  106. "navigationBarTitleText": "化学品柜详情",
  107. "navigationBarTextStyle": "white", //导航文字颜色
  108. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  109. }
  110. },
  111. {
  112. "path": "pages/views/pages_patrolInspector/courseQRcode",
  113. "style": {
  114. "navigationBarTitleText": "课程详情",
  115. "navigationBarTextStyle": "white", //导航文字颜色
  116. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  117. }
  118. },
  119. {
  120. "path": "pages/views/pages_patrolInspector/identityVerify",
  121. "style": {
  122. "navigationBarTitleText": "提示",
  123. "navigationBarTextStyle": "white", //导航文字颜色
  124. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  125. }
  126. },
  127. /*供应商*/
  128. {
  129. "path": "pages/views/supplier/forbidden",
  130. "style": {
  131. "navigationBarTitleText": "供应商管理平台"
  132. }
  133. },
  134. {
  135. "path": "pages/views/supplier/reject",
  136. "style": {
  137. "navigationBarTitleText": "驳回"
  138. }
  139. },
  140. {
  141. "path": "pages/views/supplier/hasten",
  142. "style": {
  143. "navigationBarTitleText": "立即催办"
  144. }
  145. },
  146. {
  147. "path": "pages/views/saoCode/saoCode", //扫码中转
  148. "style": {
  149. "navigationBarTitleText": "",
  150. "navigationBarTextStyle": "white", //导航文字颜色
  151. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  152. }
  153. },
  154. {
  155. "path": "pages/views/saoCode/chemicalsInstructionsVideo", //操作教程
  156. "style": {
  157. "navigationBarTitleText": "操作教程",
  158. "navigationBarTextStyle": "white", //导航文字颜色
  159. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  160. }
  161. }
  162. ],
  163. "subPackages": [
  164. {
  165. /* 基础分包 */
  166. "root": "pages_basics", //分包根路径
  167. "name": "basics", //分包名字可写可不写
  168. "pages": [{
  169. "path": "views/forgotPassword/forgotPassword", //忘记密码
  170. "style": {
  171. "navigationBarTitleText": "忘记密码",
  172. "navigationBarTextStyle": "white", //导航文字颜色
  173. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  174. }
  175. },
  176. {
  177. "path": "views/editPassword/editPassword", //忘记密码
  178. "style": {
  179. "navigationBarTitleText": "修改密码",
  180. "navigationBarTextStyle": "white", //导航文字颜色
  181. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  182. }
  183. },
  184. {
  185. "path": "views/completeInformation/completeInformation", //忘记密码
  186. "style": {
  187. "navigationBarTitleText": "完善个人信息",
  188. "navigationBarTextStyle": "white", //导航文字颜色
  189. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  190. }
  191. },
  192. /* 设备管理和笼位管理页面 */
  193. {
  194. "path": "views/deviceCageSitePage",
  195. "style": {
  196. "navigationBarTitleText": ""
  197. }
  198. },
  199. /* 离开检查 */
  200. {
  201. "path": "views/photoInspection",
  202. "style": {
  203. "navigationBarTitleText": "离开检查"
  204. }
  205. },
  206. /* 修改头像 */
  207. {
  208. "path": "views/avatar",
  209. "style": {
  210. "navigationBarTitleText": "身份验证"
  211. }
  212. },
  213. {
  214. "path": "views/faceImage", //身份验证
  215. "style": {
  216. "navigationBarTitleText": "身份验证"
  217. }
  218. },
  219. /* 预警信息 */
  220. {
  221. "path": "views/earlyWarningManage/earlyWarningDetail",
  222. "style": {
  223. "navigationBarTitleText": "预案预警信息"
  224. }
  225. },
  226. {
  227. "path": "views/earlyWarningManage/earlyWarningList",
  228. "style": {
  229. "navigationBarTitleText": "预警记录"
  230. }
  231. },
  232. {
  233. "path": "views/earlyWarningManage/warningVideo",
  234. "style": {
  235. "navigationBarTitleText": "报警抓拍"
  236. }
  237. },
  238. {
  239. "path": "views/record/index",
  240. "style": {
  241. "navigationBarTitleText": "进出记录"
  242. }
  243. },
  244. {
  245. "path": "views/record/infoPage",
  246. "style": {
  247. "navigationBarTitleText": "进出详情"
  248. }
  249. },
  250. /* 分级管控 */
  251. {
  252. "path": "views/gradingControl/gradingControl", //分级管控
  253. "style": {
  254. "navigationBarTitleText": "管控工作"
  255. }
  256. },
  257. {
  258. "path": "views/gradingControl/gradingControlFinish", //分级管控-完成列表
  259. "style": {
  260. "navigationBarTitleText": "分级管控"
  261. }
  262. },
  263. {
  264. "path": "views/gradingControl/gradingControlAdd", //分级管控-添加
  265. "style": {
  266. "navigationBarTitleText": "分级管控"
  267. }
  268. },
  269. {
  270. "path": "views/gradingControl/gradingControlDetail", //分级管控-详情
  271. "style": {
  272. "navigationBarTitleText": "分级管控"
  273. }
  274. },
  275. {
  276. "path": "views/signature/signature",
  277. "style": {
  278. "navigationBarTitleText": "电子签名"
  279. }
  280. },
  281. {
  282. "path": "views/signature/signatureImg",
  283. "style": {
  284. "navigationBarTitleText": "电子签名"
  285. }
  286. },
  287. {
  288. "path": "views/chemicalsInfo/chemicalsInfo",
  289. "style": {
  290. "navigationBarTitleText": "化学品信息"
  291. }
  292. },
  293. {
  294. "path": "views/pointsDetails/pointsDetails",
  295. "style": {
  296. "navigationBarTitleText": "积分明细"
  297. }
  298. }
  299. ]
  300. },
  301. // {
  302. // /* 供应商端分包 */
  303. // "root": "pages_supplier", //分包根路径
  304. // "name": "supplier", //分包名字可写可不写
  305. // "pages": [
  306. // /* 待办事项 */
  307. // {
  308. // "path": "views/backlogManage/backlogManage",
  309. // "style": {
  310. // "navigationBarTitleText": "待办清单"
  311. // }
  312. // },
  313. // {
  314. // "path": "views/backlogManage/backlogManageAirDetail",
  315. // "style": {
  316. // "navigationBarTitleText": "配送申请"
  317. // }
  318. // },
  319. // {
  320. // "path": "views/backlogManage/backlogManageRecycleDetail",
  321. // "style": {
  322. // "navigationBarTitleText": "回收申请"
  323. // }
  324. // },
  325. // {
  326. // "path": "views/backlogManage/backlogManageIssueDetail",
  327. // "style": {
  328. // "navigationBarTitleText": "货品问题"
  329. // }
  330. // },
  331. // /* 气瓶管理 */
  332. // {
  333. // "path": "views/gasManage/gasManageDetail",
  334. // "style": {
  335. // "navigationBarTitleText": "气瓶详情"
  336. // }
  337. // },
  338. // {
  339. // "path": "views/gasManage/gasManageAdd",
  340. // "style": {
  341. // "navigationBarTitleText": "新增气瓶"
  342. // }
  343. // },
  344. // {
  345. // "path": "views/gasManage/gasManage",
  346. // "style": {
  347. // "navigationBarTitleText": "气瓶管理"
  348. // }
  349. // },
  350. // /* 运输车辆 */
  351. // {
  352. // "path": "views/transportCar/transportCar",
  353. // "style": {
  354. // "navigationBarTitleText": "运输车辆管理"
  355. // }
  356. // },
  357. // {
  358. // "path": "views/transportCar/transportCarDetail",
  359. // "style": {
  360. // "navigationBarTitleText": "查看运输车辆"
  361. // }
  362. // },
  363. // {
  364. // "path": "views/transportCar/transportCarAdd",
  365. // "style": {
  366. // "navigationBarTitleText": "新增运输车辆"
  367. // }
  368. // },
  369. // /* 运输人员 */
  370. // {
  371. // "path": "views/transportPerson/transportPersonDetail",
  372. // "style": {
  373. // "navigationBarTitleText": "查看运输人员"
  374. // }
  375. // },
  376. // {
  377. // "path": "views/transportPerson/transportPersonAdd",
  378. // "style": {
  379. // "navigationBarTitleText": "新增运输人员"
  380. // }
  381. // },
  382. // {
  383. // "path": "views/transportPerson/transportPerson",
  384. // "style": {
  385. // "navigationBarTitleText": "运输人员管理"
  386. // }
  387. // },
  388. // /* 供气回收记录 */
  389. // {
  390. // "path": "views/gasRecycle/gasRecycleAirDetail",
  391. // "style": {
  392. // "navigationBarTitleText": "配送申请"
  393. // }
  394. // },
  395. // {
  396. // "path": "views/gasRecycle/gasRecycleRecycleDetail",
  397. // "style": {
  398. // "navigationBarTitleText": "回收申请"
  399. // }
  400. // },
  401. // {
  402. // "path": "views/gasRecycle/gasRecycleIssueDetail",
  403. // "style": {
  404. // "navigationBarTitleText": "货品问题"
  405. // }
  406. // },
  407. // {
  408. // "path": "views/gasRecycle/gasRecycle",
  409. // "style": {
  410. // "navigationBarTitleText": "供气回收记录"
  411. // }
  412. // },
  413. // /* 个人中心 */
  414. // {
  415. // "path": "views/mine/changePassword",
  416. // "style": {
  417. // "navigationBarTitleText": "修改密码"
  418. // }
  419. // },
  420. // {
  421. // "path": "views/mine/mine",
  422. // "style": {
  423. // "navigationBarTitleText": "资料信息"
  424. // }
  425. // },
  426. // /* 注册 */
  427. // {
  428. // "path": "views/register/forgotPassword", //忘记密码
  429. // "style": {
  430. // "navigationBarTitleText": "密码重置申请"
  431. // }
  432. // },
  433. // {
  434. // "path": "views/register/registerSuccess", //注册
  435. // "style": {
  436. // "navigationBarTitleText": "申请入驻"
  437. // }
  438. // },
  439. // {
  440. // "path": "views/register/register", //注册
  441. // "style": {
  442. // "navigationBarTitleText": "注册"
  443. // }
  444. // },
  445. // {
  446. // "path": "views/register/registerTow", //注册
  447. // "style": {
  448. // "navigationBarTitleText": "注册"
  449. // }
  450. // }
  451. // ]
  452. // },
  453. {
  454. /* 学生端分包 */
  455. "root": "pages_student", //分包根路径
  456. "name": "student", //分包名字可写可不写
  457. "pages": [{
  458. "path": "views/meCertificate",
  459. "style": {
  460. "navigationBarTitleText": "我的证书"
  461. }
  462. },
  463. /* 积分管理 */
  464. {
  465. "path": "views/integralManage/codeSuccess", //扫码成功
  466. "style": {
  467. "navigationBarTitleText": "扫码成功"
  468. }
  469. },
  470. /*准入申请*/
  471. {
  472. "path": "views/accessApplication/accessApplication", //准入申请
  473. "style": {
  474. "navigationBarTitleText": "安全准入"
  475. }
  476. },
  477. {
  478. "path": "views/accessApplication/applicationDetails", //申请详情
  479. "style": {
  480. "navigationBarTitleText": ""
  481. }
  482. },
  483. {
  484. "path": "views/accessApplication/chooseALaboratory", //选择实验室
  485. "style": {
  486. "navigationBarTitleText": "安全准入"
  487. }
  488. },
  489. {
  490. "path": "views/accessApplication/newApplication", //选择实验室
  491. "style": {
  492. "navigationBarTitleText": "准入申请"
  493. }
  494. },
  495. {
  496. "path": "views/accessApplication/safeAccess", //安全准入
  497. "style": {
  498. "navigationBarTitleText": "我的准入"
  499. }
  500. },
  501. {
  502. "path": "views/meViolation/meViolation", //安全准入
  503. "style": {
  504. "navigationBarTitleText": "违规记录"
  505. }
  506. },
  507. /* 气瓶管理 */
  508. {
  509. "path": "views/gasBottle/leaveConfirm/amendAir",
  510. "style": {
  511. "navigationBarTitleText": "修改气压"
  512. }
  513. },
  514. {
  515. "path": "views/gasBottle/leaveConfirm/leaveConfirm",
  516. "style": {
  517. "navigationBarTitleText": "出库确认"
  518. }
  519. },
  520. {
  521. "path": "views/gasBottle/useRegister/giveRegister",
  522. "style": {
  523. "navigationBarTitleText": "归还登记"
  524. }
  525. },
  526. {
  527. "path": "views/gasBottle/useRegister/useRegister",
  528. "style": {
  529. "navigationBarTitleText": "使用登记"
  530. }
  531. },
  532. {
  533. "path": "views/gasBottle/useRecord/useRecordDetail",
  534. "style": {
  535. "navigationBarTitleText": "使用详情"
  536. }
  537. },
  538. {
  539. "path": "views/gasBottle/useRecord/useRecord",
  540. "style": {
  541. "navigationBarTitleText": "使用记录"
  542. }
  543. },
  544. {
  545. "path": "views/gasBottle/gasList/gasListBinding",
  546. "style": {
  547. "navigationBarTitleText": "气瓶详情"
  548. }
  549. },
  550. {
  551. "path": "views/gasBottle/gasList/gasUseDetail",
  552. "style": {
  553. "navigationBarTitleText": "使用详情"
  554. }
  555. },
  556. {
  557. "path": "views/gasBottle/gasList/gasListDetail",
  558. "style": {
  559. "navigationBarTitleText": "气瓶详情"
  560. }
  561. },
  562. {
  563. "path": "views/gasBottle/gasList/gasList",
  564. "style": {
  565. "navigationBarTitleText": "气瓶列表"
  566. }
  567. },
  568. {
  569. "path": "views/gasBottle/gasApply/awaitStorage",
  570. "style": {
  571. "navigationBarTitleText": "待入库"
  572. }
  573. },
  574. {
  575. "path": "views/gasBottle/gasApply/gasApplyReject",
  576. "style": {
  577. "navigationBarTitleText": "拒收气瓶"
  578. }
  579. },
  580. {
  581. "path": "views/gasBottle/gasApply/gasApplyList",
  582. "style": {
  583. "navigationBarTitleText": "申请详情"
  584. }
  585. },
  586. {
  587. "path": "views/gasBottle/gasApply/gasApplyAdd", //添加
  588. "style": {
  589. "navigationBarTitleText": "申请气瓶"
  590. }
  591. },
  592. {
  593. "path": "views/gasBottle/gasApply/gasApply",
  594. "style": {
  595. "navigationBarTitleText": "气瓶申请"
  596. }
  597. },
  598. {
  599. "path": "views/gasBottle/examination/examinationSelect", //添加
  600. "style": {
  601. "navigationBarTitleText": "选择气瓶"
  602. }
  603. },
  604. {
  605. "path": "views/gasBottle/examination/examinationDetail", //详情
  606. "style": {
  607. "navigationBarTitleText": "资格申请"
  608. }
  609. },
  610. {
  611. "path": "views/gasBottle/examination/examinationAdd", //添加
  612. "style": {
  613. "navigationBarTitleText": "资格申请"
  614. }
  615. },
  616. {
  617. "path": "views/gasBottle/examination/examinationSucceed",
  618. "style": {
  619. "navigationBarTitleText": "资格申请"
  620. }
  621. },
  622. {
  623. "path": "views/gasBottle/examination/examination",
  624. "style": {
  625. "navigationBarTitleText": "资格申请"
  626. }
  627. },
  628. {
  629. "path": "views/gasBottle/gasManage/gasManage",
  630. "style": {
  631. "navigationBarTitleText": "用气管理"
  632. }
  633. },
  634. {
  635. "path": "views/gasBottle/useGasApply/useGasApply",
  636. "style": {
  637. "navigationBarTitleText": "用气申请"
  638. }
  639. },
  640. {
  641. "path": "views/gasBottle/useGasApply/useGasApplyAdd",
  642. "style": {
  643. "navigationBarTitleText": "申请用气"
  644. }
  645. },
  646. {
  647. "path": "views/gasBottle/useGasApply/useGasApplyDetail",
  648. "style": {
  649. "navigationBarTitleText": "申请详情"
  650. }
  651. },
  652. {
  653. "path": "views/myRecord/index",
  654. "style": {
  655. "navigationBarTitleText": "进出记录"
  656. }
  657. },
  658. {
  659. "path": "views/myRecord/infoPage",
  660. "style": {
  661. "navigationBarTitleText": "进出详情"
  662. }
  663. }
  664. ]
  665. },
  666. {
  667. /* 管理端分包 */
  668. "root": "pages_manage", //分包根路径
  669. "name": "manage", //分包名字可写可不写
  670. "pages": [
  671. //门禁授权
  672. {
  673. "path": "views/accessControl/empowerOpen",
  674. "style": {
  675. "navigationBarTitleText": "授权开门"
  676. }
  677. },
  678. {
  679. "path": "views/accessControl/remoteOpen",
  680. "style": {
  681. "navigationBarTitleText": "远程开门"
  682. }
  683. },
  684. {
  685. "path": "views/accessControl/authorizationRecord",
  686. "style": {
  687. "navigationBarTitleText": "授权记录"
  688. }
  689. },
  690. {
  691. "path": "views/accessControl/searchSub",
  692. "style": {
  693. "navigationBarTitleText": "实验室"
  694. }
  695. },
  696. //应急处置-实验室列表
  697. {
  698. "path": "views/emergencyEvacuationSubList", //应急疏散
  699. "style": {
  700. "navigationBarTitleText": "应急处置"
  701. }
  702. },
  703. //应急处置
  704. {
  705. "path": "views/emergencyEvacuationBig", //应急疏散
  706. "style": {
  707. "navigationBarTitleText": "应急处置"
  708. }
  709. },
  710. {
  711. "path": "views/emergencyEvacuationBigFullScreen", //应急疏散
  712. "style": {
  713. "navigationBarTitleText": "应急处置",
  714. "pageOrientation": "landscape"
  715. }
  716. },
  717. /* 准入审核 */
  718. {
  719. "path": "views/accessQualification/accessQualification",
  720. "style": {
  721. "navigationBarTitleText": "准入审核"
  722. }
  723. },
  724. {
  725. "path": "views/accessQualification/accessQualificationInfo", //准入资格证书申请详情
  726. "style": {
  727. "navigationBarTitleText": ""
  728. }
  729. },
  730. {
  731. "path": "views/accessQualification/approve", //不通过原因
  732. "style": {
  733. "navigationBarTitleText": "审核未通过"
  734. }
  735. },
  736. /* 我的实验室 */
  737. // {
  738. // "path": "views/laboratory/meLaboratory",//我的实验室
  739. // "style": {
  740. // "navigationBarTitleText": "我的实验室"
  741. // }
  742. // },
  743. /* 安全检查扫一扫进入实验室详情 */
  744. {
  745. "path": "views/laboratory/safetyCardScan",
  746. "style": {
  747. "navigationBarTitleText": "实验室"
  748. }
  749. },
  750. /* 实验室详情 */
  751. {
  752. "path": "views/laboratory/infoPage", //详情
  753. "style": {
  754. "navigationBarTitleText": "实验室详情",
  755. "enablePullDownRefresh": true
  756. }
  757. },
  758. {
  759. "path": "views/laboratory/videoPlayer", //视频监控
  760. "style": {
  761. "navigationBarTitleText": "视频监控",
  762. "enablePullDownRefresh": true
  763. }
  764. },
  765. /* 实验室详情-进出记录 */
  766. {
  767. "path": "views/laboratory/accessRecord",
  768. "style": {
  769. "navigationBarTitleText": "进出记录",
  770. "enablePullDownRefresh": true
  771. }
  772. },
  773. {
  774. "path": "views/laboratory/word", //播放文字
  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. /* 危废回收分包 */
  1082. "root": "pages_hazardousWasteRecycling", //分包根路径
  1083. "name": "hazardousWasteRecycling", //分包名字可写可不写
  1084. "pages": [
  1085. {
  1086. "path": "views/home/home",
  1087. "style": {
  1088. "navigationBarTitleText": "危废回收"
  1089. }
  1090. },
  1091. {
  1092. "path": "views/recyclingReportRecord/index",
  1093. "style": {
  1094. "navigationBarTitleText": "填写报备单"
  1095. }
  1096. },
  1097. {
  1098. "path": "views/weighingRegistration/index",
  1099. "style": {
  1100. "navigationBarTitleText": "称重登记"
  1101. }
  1102. },
  1103. {
  1104. "path": "views/weighingRegistration/addPage",
  1105. "style": {
  1106. "navigationBarTitleText": "称重登记"
  1107. }
  1108. },
  1109. {
  1110. "path": "views/weighingRegistration/confirmation",
  1111. "style": {
  1112. "navigationBarTitleText": "称重确认"
  1113. }
  1114. },
  1115. {
  1116. "path": "views/weighingRegistration/signatureComponent",
  1117. "style": {
  1118. "navigationBarTitleText": "回收人员签名",
  1119. "pageOrientation": "landscape"
  1120. }
  1121. },
  1122. {
  1123. "path": "views/weighingRegistration/signatureListComponent",
  1124. "style": {
  1125. "navigationBarTitleText": "回收人员签名"
  1126. }
  1127. },
  1128. {
  1129. "path": "views/weighingRegistration/infoPage",
  1130. "style": {
  1131. "navigationBarTitleText": "登记单详情"
  1132. }
  1133. },
  1134. {
  1135. "path": "views/historicalRecords/index",
  1136. "style": {
  1137. "navigationBarTitleText": "历史记录"
  1138. }
  1139. },
  1140. {
  1141. "path": "views/historicalRecords/infoPage",
  1142. "style": {
  1143. "navigationBarTitleText": "报备单详情"
  1144. }
  1145. },
  1146. {
  1147. "path": "views/permissionApply/index",
  1148. "style": {
  1149. "navigationBarTitleText": "危废回收"
  1150. }
  1151. },
  1152. {
  1153. "path": "views/permissionApply/addPage",
  1154. "style": {
  1155. "navigationBarTitleText": "报备登记权限申请"
  1156. }
  1157. },
  1158. {
  1159. "path": "views/permissionApply/listPage",
  1160. "style": {
  1161. "navigationBarTitleText": "权限申请"
  1162. }
  1163. }
  1164. ]
  1165. },
  1166. {
  1167. /* 安全教育考试分包 */
  1168. "root": "pages_safetyEducationExamination", //分包根路径
  1169. "name": "safetyEducationExamination", //分包名字可写可不写
  1170. "pages": [
  1171. {
  1172. "path": "views/home/index",
  1173. "style": {
  1174. "navigationBarTitleText": "安全教育考试"
  1175. }
  1176. },
  1177. {
  1178. "path": "views/exam/index",
  1179. "style": {
  1180. "navigationBarTitleText": "在线考试"
  1181. }
  1182. },
  1183. {
  1184. "path": "views/exam/onlineExamInfo",
  1185. "style": {
  1186. "navigationBarTitleText": "考试详情"
  1187. }
  1188. },
  1189. {
  1190. "path": "views/exam/onlineExamPlay",
  1191. "style": {
  1192. "navigationBarTitleText": "考试中"
  1193. }
  1194. },
  1195. {
  1196. "path": "views/exam/mockExamInfo",
  1197. "style": {
  1198. "navigationBarTitleText": "模拟考试"
  1199. }
  1200. },
  1201. {
  1202. "path": "views/exam/mockExamPlay",
  1203. "style": {
  1204. "navigationBarTitleText": "模拟考试中"
  1205. }
  1206. },
  1207. {
  1208. "path": "views/exam/incorrectQuestionsList",
  1209. "style": {
  1210. "navigationBarTitleText": "历史错题"
  1211. }
  1212. },
  1213. {
  1214. "path": "views/exam/scoresList",
  1215. "style": {
  1216. "navigationBarTitleText": "考试记录"
  1217. }
  1218. },
  1219. {
  1220. "path": "views/exam/scoreDetail",
  1221. "style": {
  1222. "navigationBarTitleText": "答题详情"
  1223. }
  1224. },
  1225. {
  1226. "path": "views/study/index",
  1227. "style": {
  1228. "navigationBarTitleText": "知识学习"
  1229. }
  1230. },
  1231. {
  1232. "path": "views/studyHourTask/index",
  1233. "style": {
  1234. "navigationBarTitleText": "学时任务"
  1235. }
  1236. },
  1237. {
  1238. "path": "views/practice/index",
  1239. "style": {
  1240. "navigationBarTitleText": "刷题练习"
  1241. }
  1242. },
  1243. {
  1244. "path": "views/practice/practicePlay",
  1245. "style": {
  1246. "navigationBarTitleText": "刷题练习",
  1247. "navigationBarButtons": [
  1248. {
  1249. "type": "text",
  1250. "text": "题号",
  1251. "color": "#1857d4"
  1252. }
  1253. ]
  1254. }
  1255. },
  1256. {
  1257. "path": "views/approval/index",
  1258. "style": {
  1259. "navigationBarTitleText": "实验室审批"
  1260. }
  1261. },
  1262. {
  1263. "path": "views/learning/index",
  1264. "style": {
  1265. "navigationBarTitleText": "学习任务详情"
  1266. }
  1267. },
  1268. {
  1269. "path": "views/webViewPage/courseLearning",
  1270. "style": {
  1271. "navigationBarTitleText": "学习任务"
  1272. }
  1273. },
  1274. {
  1275. "path": "views/webViewPage/coursewareLearning",
  1276. "style": {
  1277. "navigationBarTitleText": "知识学习"
  1278. }
  1279. }
  1280. ]
  1281. }
  1282. ],
  1283. "globalStyle": {
  1284. "navigationBarTextStyle": "white", //导航文字颜色
  1285. "navigationBarBackgroundColor": "#0183FA" //导航背景色
  1286. }
  1287. }