pages.json 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "enablePullDownRefresh": false,
  10. "navigationBarTitleText": "首页",
  11. "navigationStyle": "custom",
  12. "navigationBarBackgroundColor": "#00B075"
  13. }
  14. },
  15. {
  16. "path": "pages/privacy/privacy",
  17. "style": {
  18. "navigationBarTitleText": "",
  19. "enablePullDownRefresh": false,
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/index/developing",
  25. "style": {
  26. "navigationBarTitleText": "开发中",
  27. "navigationStyle": "custom",
  28. "enablePullDownRefresh": false
  29. }
  30. },
  31. {
  32. "path": "pages/server/index",
  33. "style": {
  34. "navigationBarTitleText": "更多服务",
  35. "navigationStyle": "custom",
  36. "enablePullDownRefresh": false
  37. }
  38. },
  39. {
  40. "path": "pages/banner/index",
  41. "style": {
  42. "navigationBarTitleText": "水肥",
  43. "navigationStyle": "custom",
  44. "enablePullDownRefresh": false
  45. }
  46. },
  47. {
  48. "path": "pages/distribution/index",
  49. "style": {
  50. "navigationBarTitleText": "设备分布",
  51. "enablePullDownRefresh": false
  52. }
  53. },
  54. {
  55. "path": "pages/equipList2/index",
  56. "style": {
  57. "navigationBarTitleText": "设备列表",
  58. "enablePullDownRefresh": false,
  59. "navigationBarBackgroundColor": "#00B075",
  60. "navigationStyle": "custom"
  61. }
  62. },
  63. {
  64. "path": "pages/my/index/index",
  65. "style": {
  66. "navigationBarTitleText": "个人中心",
  67. "enablePullDownRefresh": false,
  68. "navigationStyle": "custom",
  69. "navigationBarBackgroundColor": "#00B075"
  70. }
  71. }
  72. ],
  73. "subPackages": [
  74. {
  75. "root": "pages/cb/shuifeiL",
  76. "pages": [
  77. {
  78. "path": "shuifeiL",
  79. "style": {
  80. "navigationBarTitleText": "",
  81. "enablePullDownRefresh": false
  82. }
  83. },
  84. {
  85. "path": "history",
  86. "style": {
  87. "navigationBarTitleText": "",
  88. "enablePullDownRefresh": false
  89. }
  90. }
  91. ]
  92. },
  93. {
  94. "root": "pages/cbd",
  95. "pages": [
  96. {
  97. "path": "detail",
  98. "style": {
  99. "navigationBarTitleText": "设备详情",
  100. "enablePullDownRefresh": false,
  101. "navigationStyle": "custom"
  102. }
  103. },
  104. {
  105. "path": "deviceControl",
  106. "style": {
  107. "navigationBarTitleText": "设备控制",
  108. "enablePullDownRefresh": false,
  109. "navigationStyle": "custom"
  110. }
  111. },
  112. {
  113. "path": "devicePhoto",
  114. "style": {
  115. "navigationBarTitleText": "查看图片",
  116. "enablePullDownRefresh": false,
  117. "navigationStyle": "custom"
  118. }
  119. }
  120. ]
  121. },
  122. {
  123. "root": "pages/shuHai",
  124. "pages": [
  125. {
  126. "path": "detail",
  127. "style": {
  128. "navigationBarTitleText": "设备详情",
  129. "enablePullDownRefresh": false,
  130. "navigationStyle": "custom"
  131. }
  132. },
  133. {
  134. "path": "deviceControl",
  135. "style": {
  136. "navigationBarTitleText": "设备控制",
  137. "enablePullDownRefresh": false,
  138. "navigationStyle": "custom"
  139. }
  140. },
  141. {
  142. "path": "devicePhoto",
  143. "style": {
  144. "navigationBarTitleText": "查看图片",
  145. "enablePullDownRefresh": false,
  146. "navigationStyle": "custom"
  147. }
  148. }
  149. ]
  150. },
  151. {
  152. "root": "pages/shuHai1",
  153. "pages": [
  154. {
  155. "path": "detail",
  156. "style": {
  157. "navigationBarTitleText": "设备详情",
  158. "enablePullDownRefresh": false,
  159. "navigationStyle": "custom"
  160. }
  161. },
  162. {
  163. "path": "deviceControl",
  164. "style": {
  165. "navigationBarTitleText": "设备控制",
  166. "enablePullDownRefresh": false,
  167. "navigationStyle": "custom"
  168. }
  169. },
  170. {
  171. "path": "devicePhoto",
  172. "style": {
  173. "navigationBarTitleText": "查看图片",
  174. "enablePullDownRefresh": false,
  175. "navigationStyle": "custom"
  176. }
  177. }
  178. ]
  179. },
  180. {
  181. "root": "pages/sy",
  182. "pages": [
  183. {
  184. "path": "detail",
  185. "style": {
  186. "navigationBarTitleText": "设备详情",
  187. "enablePullDownRefresh": false,
  188. "navigationStyle": "custom"
  189. }
  190. },
  191. {
  192. "path": "deviceControl",
  193. "style": {
  194. "navigationBarTitleText": "设备控制",
  195. "enablePullDownRefresh": false,
  196. "navigationStyle": "custom"
  197. }
  198. },
  199. {
  200. "path": "deviceControl2",
  201. "style": {
  202. "navigationBarTitleText": "设备控制",
  203. "enablePullDownRefresh": false,
  204. "navigationStyle": "custom"
  205. }
  206. },
  207. {
  208. "path": "devicePhoto",
  209. "style": {
  210. "navigationBarTitleText": "查看图片",
  211. "enablePullDownRefresh": false,
  212. "navigationStyle": "custom"
  213. }
  214. }
  215. ]
  216. },
  217. {
  218. "root": "pages/cb/shuifeizs",
  219. "pages": [
  220. {
  221. "path": "shuifeizs",
  222. "style": {
  223. "navigationBarTitleText": "",
  224. "enablePullDownRefresh": false,
  225. "navigationStyle": "custom"
  226. }
  227. },
  228. {
  229. "path": "control",
  230. "style": {
  231. "navigationBarTitleText": "",
  232. "enablePullDownRefresh": false,
  233. "navigationStyle": "custom"
  234. }
  235. },
  236. {
  237. "path": "automation",
  238. "style": {
  239. "navigationBarTitleText": "",
  240. "enablePullDownRefresh": false,
  241. "navigationStyle": "custom"
  242. }
  243. },
  244. {
  245. "path": "rotationflow",
  246. "style": {
  247. "navigationBarTitleText": "",
  248. "enablePullDownRefresh": false,
  249. "navigationStyle": "custom"
  250. }
  251. },
  252. {
  253. "path": "history",
  254. "style": {
  255. "navigationBarTitleText": "",
  256. "enablePullDownRefresh": false,
  257. "navigationStyle": "custom"
  258. }
  259. }
  260. ]
  261. },
  262. {
  263. "root": "pages/bzy",
  264. "pages": [
  265. {
  266. "path": "detail",
  267. "style": {
  268. "navigationBarTitleText": "设备详情",
  269. "enablePullDownRefresh": false,
  270. "navigationStyle": "custom"
  271. }
  272. },
  273. {
  274. "path": "devicePhoto",
  275. "style": {
  276. "navigationBarTitleText": "查看图片",
  277. "enablePullDownRefresh": false,
  278. "navigationStyle": "custom"
  279. }
  280. },
  281. {
  282. "path": "deviceControl",
  283. "style": {
  284. "navigationBarTitleText": "设备控制",
  285. "enablePullDownRefresh": false,
  286. "navigationStyle": "custom"
  287. }
  288. }
  289. ]
  290. },
  291. {
  292. "root": "pages/bzy2",
  293. "pages": [
  294. {
  295. "path": "detail",
  296. "style": {
  297. "navigationBarTitleText": "设备详情",
  298. "enablePullDownRefresh": false,
  299. "navigationStyle": "custom"
  300. }
  301. },
  302. {
  303. "path": "devicePhoto",
  304. "style": {
  305. "navigationBarTitleText": "查看图片",
  306. "enablePullDownRefresh": false,
  307. "navigationStyle": "custom"
  308. }
  309. },
  310. {
  311. "path": "deviceControl",
  312. "style": {
  313. "navigationBarTitleText": "设备控制",
  314. "enablePullDownRefresh": false,
  315. "navigationStyle": "custom"
  316. }
  317. }
  318. ]
  319. },
  320. {
  321. "root": "pages/scd",
  322. "pages": [
  323. {
  324. "path": "detail",
  325. "style": {
  326. "navigationBarTitleText": "设备详情",
  327. "enablePullDownRefresh": false,
  328. "navigationStyle": "custom"
  329. }
  330. },
  331. {
  332. "path": "devicePhoto",
  333. "style": {
  334. "navigationBarTitleText": "查看图片",
  335. "enablePullDownRefresh": false,
  336. "navigationStyle": "custom"
  337. }
  338. },
  339. {
  340. "path": "deviceControl",
  341. "style": {
  342. "navigationBarTitleText": "设备控制",
  343. "enablePullDownRefresh": false,
  344. "navigationStyle": "custom"
  345. }
  346. },
  347. {
  348. "path": "videoMonitor",
  349. "style": {
  350. "navigationBarTitleText": "视频监控",
  351. "enablePullDownRefresh": false,
  352. "navigationStyle": "custom"
  353. }
  354. }
  355. ]
  356. },
  357. {
  358. "root": "pages/cb/shuifeizsFirst",
  359. "pages": [
  360. {
  361. "path": "shuifeizs",
  362. "style": {
  363. "navigationBarTitleText": "",
  364. "enablePullDownRefresh": false,
  365. "navigationStyle": "custom"
  366. }
  367. },
  368. {
  369. "path": "control",
  370. "style": {
  371. "navigationBarTitleText": "",
  372. "enablePullDownRefresh": false,
  373. "navigationStyle": "custom"
  374. }
  375. },
  376. {
  377. "path": "automation",
  378. "style": {
  379. "navigationBarTitleText": "",
  380. "enablePullDownRefresh": false,
  381. "navigationStyle": "custom"
  382. }
  383. },
  384. {
  385. "path": "autoSetting",
  386. "style": {
  387. "navigationBarTitleText": "",
  388. "enablePullDownRefresh": false,
  389. "navigationStyle": "custom"
  390. }
  391. },
  392. {
  393. "path": "formulaSetting",
  394. "style": {
  395. "navigationBarTitleText": "",
  396. "enablePullDownRefresh": false,
  397. "navigationStyle": "custom"
  398. }
  399. },
  400. {
  401. "path": "timingSetting",
  402. "style": {
  403. "navigationBarTitleText": "",
  404. "enablePullDownRefresh": false,
  405. "navigationStyle": "custom"
  406. }
  407. },
  408. {
  409. "path": "history",
  410. "style": {
  411. "navigationBarTitleText": "",
  412. "enablePullDownRefresh": false,
  413. "navigationStyle": "custom"
  414. }
  415. }
  416. ]
  417. },
  418. {
  419. "root": "pages/cb/zhamenFirst",
  420. "pages": [
  421. {
  422. "path": "zhamenzs",
  423. "style": {
  424. "navigationBarTitleText": "",
  425. "enablePullDownRefresh": false,
  426. "navigationStyle": "custom"
  427. }
  428. },
  429. {
  430. "path": "control",
  431. "style": {
  432. "navigationBarTitleText": "",
  433. "enablePullDownRefresh": false,
  434. "navigationStyle": "custom"
  435. }
  436. },
  437. {
  438. "path": "automation",
  439. "style": {
  440. "navigationBarTitleText": "",
  441. "enablePullDownRefresh": false,
  442. "navigationStyle": "custom"
  443. }
  444. },
  445. {
  446. "path": "autoSetting",
  447. "style": {
  448. "navigationBarTitleText": "",
  449. "enablePullDownRefresh": false,
  450. "navigationStyle": "custom"
  451. }
  452. },
  453. {
  454. "path": "timingSetting",
  455. "style": {
  456. "navigationBarTitleText": "",
  457. "enablePullDownRefresh": false,
  458. "navigationStyle": "custom"
  459. }
  460. },
  461. {
  462. "path": "history",
  463. "style": {
  464. "navigationBarTitleText": "",
  465. "enablePullDownRefresh": false,
  466. "navigationStyle": "custom"
  467. }
  468. }
  469. ]
  470. },
  471. {
  472. "root": "pages/cb/wenshizs",
  473. "pages": [
  474. {
  475. "path": "wenshizs",
  476. "style": {
  477. "navigationBarTitleText": "",
  478. "enablePullDownRefresh": false,
  479. "navigationStyle": "custom"
  480. }
  481. }
  482. ]
  483. },
  484. {
  485. "root": "pages/cb/wenshidp",
  486. "pages": [
  487. {
  488. "path": "wenshidp",
  489. "style": {
  490. "navigationBarTitleText": "",
  491. "enablePullDownRefresh": false,
  492. "navigationStyle": "custom"
  493. }
  494. }
  495. ]
  496. },
  497. {
  498. "root": "pages/cb/zhamenFirst",
  499. "pages": [
  500. {
  501. "path": "controls",
  502. "style": {
  503. "navigationBarTitleText": "",
  504. "enablePullDownRefresh": false,
  505. "navigationStyle": "custom"
  506. }
  507. }
  508. ]
  509. },
  510. {
  511. "root": "pages/webview",
  512. "pages": [
  513. {
  514. "path": "webview",
  515. "style": {
  516. "navigationBarTitleText": "监控列表"
  517. }
  518. }
  519. ]
  520. },
  521. {
  522. "root": "pages/webviewdgp",
  523. "pages": [
  524. {
  525. "path": "webviewdgp",
  526. "style": {
  527. "navigationBarTitleText": "监控列表"
  528. }
  529. }
  530. ]
  531. },
  532. {
  533. "root": "pages/disandpests",
  534. "pages": [
  535. {
  536. "path": "index",
  537. "style": {
  538. "navigationBarTitleText": "病虫害识别",
  539. "enablePullDownRefresh": false,
  540. "navigationStyle": "custom"
  541. }
  542. }
  543. ]
  544. },
  545. {
  546. "root": "pages/login",
  547. "pages": [
  548. {
  549. "path": "login",
  550. "style": {
  551. "navigationBarTitleText": "",
  552. "navigationStyle": "custom"
  553. }
  554. },
  555. {
  556. "path": "agreement",
  557. "style": {
  558. "navigationBarTitleText": "用户隐私协议",
  559. "enablePullDownRefresh": false
  560. }
  561. }
  562. ]
  563. },
  564. {
  565. "root": "pages/fmSys",
  566. "pages": [
  567. {
  568. "path": "details",
  569. "style": {
  570. "navigationBarTitleText": "阀门",
  571. "enablePullDownRefresh": false,
  572. "navigationStyle": "custom"
  573. }
  574. }
  575. ]
  576. },
  577. {
  578. "root": "pages/warning",
  579. "pages": [
  580. {
  581. "path": "index",
  582. "style": {
  583. "navigationBarTitleText": "预警列表",
  584. "enablePullDownRefresh": false,
  585. "navigationStyle": "custom"
  586. }
  587. }
  588. ]
  589. },
  590. {
  591. "root": "pages/equipMange/index",
  592. "pages": [
  593. {
  594. "path": "index",
  595. "style": {
  596. "navigationBarTitleText": "设备分配主页",
  597. "enablePullDownRefresh": false,
  598. "navigationStyle": "custom"
  599. }
  600. },
  601. {
  602. "path": "changepasswold",
  603. "style": {
  604. "navigationBarTitleText": "更改密码",
  605. "enablePullDownRefresh": false,
  606. "navigationStyle": "custom"
  607. }
  608. },
  609. {
  610. "path": "assignment",
  611. "style": {
  612. "navigationBarTitleText": "分配设备",
  613. "enablePullDownRefresh": false,
  614. "navigationStyle": "custom"
  615. }
  616. },
  617. {
  618. "path": "useroperation",
  619. "style": {
  620. "navigationBarTitleText": "用户详情",
  621. "enablePullDownRefresh": false,
  622. "navigationStyle": "custom"
  623. }
  624. }
  625. ]
  626. },
  627. {
  628. "root": "pages/cb/index",
  629. "pages": [
  630. {
  631. "path": "index",
  632. "style": {
  633. "navigationBarTitleText": "测报系统",
  634. "enablePullDownRefresh": true,
  635. "navigationStyle": "custom"
  636. }
  637. },
  638. {
  639. "path": "search",
  640. "style": {
  641. "navigationBarTitleText": "",
  642. "enablePullDownRefresh": false,
  643. "navigationStyle": "custom"
  644. }
  645. }
  646. ]
  647. },
  648. {
  649. "root": "pages/cb/xylps",
  650. "pages": [
  651. {
  652. "path": "detail/detail",
  653. "style": {
  654. "navigationBarTitleText": "数据详情",
  655. "enablePullDownRefresh": false
  656. }
  657. }
  658. ]
  659. },
  660. {
  661. "root": "pages/cb/smallPest",
  662. "pages": [
  663. {
  664. "path": "smallPest",
  665. "style": {
  666. "navigationBarTitleText": "毫米虫情测报"
  667. }
  668. },
  669. {
  670. "path": "analyse",
  671. "style": {
  672. "navigationBarTitleText": "虫情分析"
  673. }
  674. },
  675. {
  676. "path": "photolist",
  677. "style": {
  678. "navigationBarTitleText": "图片列表",
  679. "navigationStyle": "custom"
  680. }
  681. },
  682. {
  683. "path": "xctset",
  684. "style": {
  685. "navigationBarTitleText": "设备控制"
  686. }
  687. }
  688. ]
  689. },
  690. {
  691. "root": "pages/cb/bzy",
  692. "pages": [
  693. {
  694. "path": "equip-set/equip-set",
  695. "style": {
  696. "navigationBarTitleText": "设备控制",
  697. "enablePullDownRefresh": false
  698. }
  699. },
  700. {
  701. "path": "equip-set/bzyhistoryile",
  702. "style": {
  703. "navigationBarTitleText": "孢子仪历史记录",
  704. "enablePullDownRefresh": false,
  705. "navigationStyle": "custom"
  706. }
  707. }
  708. ]
  709. },
  710. {
  711. "root": "pages/cb/cbd",
  712. "pages": [
  713. {
  714. "path": "equip-set/equip-set",
  715. "style": {
  716. "navigationBarTitleText": "设备控制",
  717. "enablePullDownRefresh": false
  718. }
  719. },
  720. {
  721. "path": "equip-set/imgpage",
  722. "style": {
  723. "navigationBarTitleText": "图片列表",
  724. "enablePullDownRefresh": false,
  725. "navigationStyle": "custom"
  726. }
  727. },
  728. {
  729. "path": "equip-set/equip-set-new",
  730. "style": {
  731. "navigationBarTitleText": "设备控制",
  732. "enablePullDownRefresh": false
  733. }
  734. },
  735. {
  736. "path": "equip-set/equip-set-sy2",
  737. "style": {
  738. "navigationBarTitleText": "设备控制",
  739. "enablePullDownRefresh": false
  740. }
  741. },
  742. {
  743. "path": "equip-set/new-analyse",
  744. "style": {
  745. "navigationBarTitleText": "虫情分析"
  746. }
  747. },
  748. {
  749. "path": "equip-set/photo",
  750. "style": {
  751. "navigationBarTitleText": "图片列表",
  752. "enablePullDownRefresh": false,
  753. "navigationStyle": "custom"
  754. }
  755. },
  756. {
  757. "path": "equip-set/photoResults",
  758. "style": {
  759. "navigationBarTitleText": "识别结果",
  760. "enablePullDownRefresh": false,
  761. "navigationStyle": "custom"
  762. }
  763. },
  764. {
  765. "path": "equip-set/historyfile",
  766. "style": {
  767. "navigationBarTitleText": "测报灯历史记录",
  768. "enablePullDownRefresh": true,
  769. "navigationStyle": "custom"
  770. }
  771. },
  772. {
  773. "path": "equip-set/addimg",
  774. "style": {
  775. "navigationBarTitleText": "手动添加",
  776. "enablePullDownRefresh": false,
  777. "navigationStyle": "custom"
  778. }
  779. },
  780. {
  781. "path": "equip-set/newhistoryfile",
  782. "style": {
  783. "navigationBarTitleText": "历史记录",
  784. "enablePullDownRefresh": true,
  785. "navigationStyle": "custom"
  786. }
  787. },
  788. {
  789. "path": "equip-set/note",
  790. "style": {
  791. "navigationBarTitleText": "短信预警",
  792. "enablePullDownRefresh": false,
  793. "navigationStyle": "custom"
  794. }
  795. },
  796. {
  797. "path": "equip-set/statistics",
  798. "style": {
  799. "navigationBarTitleText": "害虫统计",
  800. "enablePullDownRefresh": false,
  801. "navigationStyle": "custom"
  802. }
  803. },
  804. {
  805. "path": "equip-set/analyse",
  806. "style": {
  807. "navigationBarTitleText": "害虫分析",
  808. "enablePullDownRefresh": false
  809. }
  810. },
  811. {
  812. "path": "equip-set/results",
  813. "style": {
  814. "navigationBarTitleText": "识别结果",
  815. "enablePullDownRefresh": false
  816. }
  817. },
  818. {
  819. "path": "equip-set/manualinput",
  820. "style": {
  821. "navigationBarTitleText": "手动统计",
  822. "enablePullDownRefresh": false
  823. }
  824. }
  825. ]
  826. },
  827. {
  828. "root": "pages/cb/xy2.0",
  829. "pages": [
  830. {
  831. "path": "particulars",
  832. "style": {
  833. "navigationBarTitleText": "设备详情",
  834. "enablePullDownRefresh": false
  835. }
  836. },
  837. {
  838. "path": "historydatas",
  839. "style": {
  840. "navigationBarTitleText": "历史数据",
  841. "enablePullDownRefresh": false
  842. }
  843. }
  844. ]
  845. },
  846. {
  847. "root": "pages/cb/nlNewXy",
  848. "pages": [
  849. {
  850. "path": "nlNewXy",
  851. "style": {
  852. "navigationBarTitleText": "设备详情",
  853. "enablePullDownRefresh": false
  854. }
  855. },
  856. {
  857. "path": "thxyhisdata",
  858. "style": {
  859. "navigationBarTitleText": "历史数据",
  860. "enablePullDownRefresh": false
  861. }
  862. },
  863. {
  864. "path": "thxyset",
  865. "style": {
  866. "navigationBarTitleText": "设备控制",
  867. "enablePullDownRefresh": false
  868. }
  869. }
  870. ]
  871. },
  872. {
  873. "root": "pages/cb/thxydetail",
  874. "pages": [
  875. {
  876. "path": "thxydetail",
  877. "style": {
  878. "navigationBarTitleText": "设备详情",
  879. "enablePullDownRefresh": false
  880. }
  881. },
  882. {
  883. "path": "photolist",
  884. "style": {
  885. "navigationBarTitleText": "查看图片",
  886. "enablePullDownRefresh": false,
  887. "navigationStyle": "custom"
  888. }
  889. },
  890. {
  891. "path": "thxyset",
  892. "style": {
  893. "navigationBarTitleText": "设备控制",
  894. "enablePullDownRefresh": false
  895. }
  896. },
  897. {
  898. "path": "thxyhisdata",
  899. "style": {
  900. "navigationBarTitleText": "历史数据",
  901. "enablePullDownRefresh": false
  902. }
  903. }
  904. ]
  905. },
  906. {
  907. "root": "pages/cb/zjxydetail",
  908. "pages": [
  909. {
  910. "path": "thxydetail",
  911. "style": {
  912. "navigationBarTitleText": "设备详情",
  913. "enablePullDownRefresh": false
  914. }
  915. },
  916. {
  917. "path": "photolist",
  918. "style": {
  919. "navigationBarTitleText": "查看图片",
  920. "enablePullDownRefresh": false,
  921. "navigationStyle": "custom"
  922. }
  923. },
  924. {
  925. "path": "thxyset",
  926. "style": {
  927. "navigationBarTitleText": "设备控制",
  928. "enablePullDownRefresh": false
  929. }
  930. },
  931. {
  932. "path": "thxyhisdata",
  933. "style": {
  934. "navigationBarTitleText": "历史数据",
  935. "enablePullDownRefresh": false
  936. }
  937. }
  938. ]
  939. },
  940. {
  941. "root": "pages/cb/xctdetail",
  942. "pages": [
  943. {
  944. "path": "xctdetail",
  945. "style": {
  946. "navigationBarTitleText": "设备详情",
  947. "enablePullDownRefresh": false
  948. }
  949. },
  950. {
  951. "path": "xctset",
  952. "style": {
  953. "navigationBarTitleText": "设备控制",
  954. "enablePullDownRefresh": false
  955. }
  956. },
  957. {
  958. "path": "photolist",
  959. "style": {
  960. "navigationBarTitleText": "查看图片",
  961. "enablePullDownRefresh": false,
  962. "navigationStyle": "custom"
  963. }
  964. },
  965. {
  966. "path": "analyse",
  967. "style": {
  968. "navigationBarTitleText": "害虫分析",
  969. "enablePullDownRefresh": false
  970. }
  971. }
  972. ]
  973. },
  974. {
  975. "root": "pages/cb/sim",
  976. "pages": [
  977. {
  978. "path": "sim",
  979. "style": {
  980. "navigationBarTitleText": "sim卡详情",
  981. "enablePullDownRefresh": false
  982. }
  983. }
  984. ]
  985. },
  986. {
  987. "root": "pages/cb/equip-detail",
  988. "pages": [
  989. {
  990. "path": "equip-detail",
  991. "style": {
  992. "navigationBarTitleText": "设备详情",
  993. "enablePullDownRefresh": false
  994. }
  995. },
  996. {
  997. "path": "equip-detail-new",
  998. "style": {
  999. "navigationBarTitleText": "设备详情",
  1000. "enablePullDownRefresh": false,
  1001. "navigationBarBackgroundColor": "#f7f7f7"
  1002. }
  1003. }
  1004. ]
  1005. },
  1006. {
  1007. "root": "pages/cb/xy",
  1008. "pages": [
  1009. {
  1010. "path": "equip-set/equip-set",
  1011. "style": {
  1012. "navigationBarTitleText": "设备控制",
  1013. "enablePullDownRefresh": false
  1014. }
  1015. },
  1016. {
  1017. "path": "equip-set/xyhistoryile",
  1018. "style": {
  1019. "navigationBarTitleText": "性诱设备历史记录",
  1020. "enablePullDownRefresh": false,
  1021. "navigationStyle": "custom"
  1022. }
  1023. },
  1024. {
  1025. "path": "equip-set/xypesthistoryile",
  1026. "style": {
  1027. "navigationBarTitleText": "害虫分析",
  1028. "enablePullDownRefresh": false,
  1029. "navigationStyle": "custom"
  1030. }
  1031. }
  1032. ]
  1033. },
  1034. {
  1035. "root": "pages/my/user-info",
  1036. "pages": [
  1037. {
  1038. "path": "user-info",
  1039. "style": {
  1040. "navigationBarTitleText": "个人信息",
  1041. "enablePullDownRefresh": false
  1042. }
  1043. }
  1044. ]
  1045. },
  1046. {
  1047. "root": "pages/my/about",
  1048. "pages": [
  1049. {
  1050. "path": "about",
  1051. "style": {
  1052. "navigationBarTitleText": "关于",
  1053. "enablePullDownRefresh": false
  1054. }
  1055. }
  1056. ]
  1057. },
  1058. {
  1059. "root": "pages/my/record",
  1060. "pages": [
  1061. {
  1062. "path": "record",
  1063. "style": {
  1064. "navigationBarTitleText": "版本更新记录详情",
  1065. "enablePullDownRefresh": false
  1066. }
  1067. }
  1068. ]
  1069. },
  1070. {
  1071. "root": "pages/expertDiagnosis",
  1072. "pages": [
  1073. {
  1074. "path": "index",
  1075. "style": {
  1076. "navigationBarTitleText": "专家诊断",
  1077. "enablePullDownRefresh": false,
  1078. "navigationStyle": "custom"
  1079. }
  1080. },
  1081. {
  1082. "path": "wormcase",
  1083. "style": {
  1084. "navigationBarTitleText": "虫情百科",
  1085. "enablePullDownRefresh": false,
  1086. "navigationStyle": "custom"
  1087. }
  1088. },
  1089. {
  1090. "path": "exchangeShare",
  1091. "style": {
  1092. "navigationBarTitleText": "交流圈",
  1093. "enablePullDownRefresh": false,
  1094. "navigationStyle": "custom"
  1095. }
  1096. },
  1097. {
  1098. "path": "particulars",
  1099. "style": {
  1100. "navigationBarTitleText": "交流圈详情",
  1101. "enablePullDownRefresh": false,
  1102. "navigationStyle": "custom"
  1103. }
  1104. },
  1105. {
  1106. "path": "postmessage",
  1107. "style": {
  1108. "navigationBarTitleText": "发帖",
  1109. "enablePullDownRefresh": false,
  1110. "navigationStyle": "custom"
  1111. }
  1112. },
  1113. {
  1114. "path": "introduce",
  1115. "style": {
  1116. "navigationBarTitleText": "病虫害介绍",
  1117. "enablePullDownRefresh": false,
  1118. "navigationStyle": "custom"
  1119. }
  1120. }
  1121. ]
  1122. },
  1123. {
  1124. "root": "pages/afterSale",
  1125. "pages": [
  1126. {
  1127. "path": "index",
  1128. "style": {
  1129. "navigationBarTitleText": "售后服务",
  1130. "enablePullDownRefresh": false,
  1131. "navigationStyle": "custom"
  1132. }
  1133. },
  1134. {
  1135. "path": "search",
  1136. "style": {
  1137. "navigationBarTitleText": "售后服务搜索",
  1138. "enablePullDownRefresh": false,
  1139. "navigationStyle": "custom"
  1140. }
  1141. },
  1142. {
  1143. "path": "addafter",
  1144. "style": {
  1145. "navigationBarTitleText": "设备报修",
  1146. "enablePullDownRefresh": false,
  1147. "navigationStyle": "custom"
  1148. }
  1149. }
  1150. ]
  1151. },
  1152. {
  1153. "root": "pages/equipList2/seabox",
  1154. "pages": [
  1155. {
  1156. "path": "search",
  1157. "style": {
  1158. "navigationBarTitleText": "",
  1159. "enablePullDownRefresh": false,
  1160. "navigationStyle": "custom"
  1161. }
  1162. },
  1163. {
  1164. "path": "modification",
  1165. "style": {
  1166. "navigationBarTitleText": "",
  1167. "enablePullDownRefresh": false,
  1168. "navigationStyle": "custom"
  1169. }
  1170. }
  1171. ]
  1172. },
  1173. {
  1174. "root": "pages/fourBase",
  1175. "pages": [
  1176. {
  1177. "path": "index",
  1178. "style": {
  1179. "navigationBarTitleText": "四情基地首页",
  1180. "enablePullDownRefresh": false,
  1181. "navigationStyle": "custom"
  1182. }
  1183. },
  1184. {
  1185. "path": "addbase",
  1186. "style": {
  1187. "navigationBarTitleText": "新增基地",
  1188. "enablePullDownRefresh": false,
  1189. "navigationStyle": "custom"
  1190. }
  1191. },
  1192. {
  1193. "path": "allocation",
  1194. "style": {
  1195. "navigationBarTitleText": "设备分配",
  1196. "enablePullDownRefresh": false,
  1197. "navigationStyle": "custom"
  1198. }
  1199. },
  1200. {
  1201. "path": "basefacility",
  1202. "style": {
  1203. "navigationBarTitleText": "",
  1204. "enablePullDownRefresh": false,
  1205. "navigationStyle": "custom"
  1206. }
  1207. },
  1208. {
  1209. "path": "modification",
  1210. "style": {
  1211. "navigationBarTitleText": "四情基地编辑基地",
  1212. "enablePullDownRefresh": false,
  1213. "navigationStyle": "custom"
  1214. }
  1215. },
  1216. {
  1217. "path": "city",
  1218. "style": {
  1219. "navigationBarTitleText": "",
  1220. "enablePullDownRefresh": false,
  1221. "app-plus": {
  1222. "softinputMode": "adjustResize"
  1223. }
  1224. }
  1225. }
  1226. ]
  1227. },
  1228. {
  1229. "root": "pages/prevention",
  1230. "pages": [
  1231. {
  1232. "path": "index",
  1233. "style": {
  1234. "navigationBarTitleText": "防治系统",
  1235. "enablePullDownRefresh": false,
  1236. "navigationStyle": "custom"
  1237. }
  1238. },
  1239. {
  1240. "path": "search",
  1241. "style": {
  1242. "navigationBarTitleText": "防治系统搜索",
  1243. "enablePullDownRefresh": false,
  1244. "navigationStyle": "custom"
  1245. }
  1246. },
  1247. {
  1248. "path": "equipmentdetails",
  1249. "style": {
  1250. "navigationBarTitleText": "防治系统设备详细",
  1251. "enablePullDownRefresh": false,
  1252. "navigationStyle": "custom"
  1253. }
  1254. },
  1255. {
  1256. "path": "sim",
  1257. "style": {
  1258. "navigationBarTitleText": "sim卡详情",
  1259. "enablePullDownRefresh": false
  1260. }
  1261. },
  1262. {
  1263. "path": "control",
  1264. "style": {
  1265. "navigationBarTitleText": "设备控制",
  1266. "enablePullDownRefresh": false,
  1267. "navigationStyle": "custom"
  1268. }
  1269. },
  1270. {
  1271. "path": "ucharts",
  1272. "style": {
  1273. "navigationBarTitleText": "历史数据",
  1274. "enablePullDownRefresh": false,
  1275. "navigationStyle": "custom"
  1276. }
  1277. }
  1278. ]
  1279. },
  1280. {
  1281. "root": "pages/environment",
  1282. "pages": [
  1283. {
  1284. "path": "index",
  1285. "style": {
  1286. "navigationBarTitleText": "环境监测",
  1287. "enablePullDownRefresh": false,
  1288. "navigationStyle": "custom"
  1289. }
  1290. },
  1291. {
  1292. "path": "search",
  1293. "style": {
  1294. "navigationBarTitleText": "环境监测搜索",
  1295. "enablePullDownRefresh": false,
  1296. "navigationStyle": "custom"
  1297. }
  1298. },
  1299. {
  1300. "path": "equipment",
  1301. "style": {
  1302. "navigationBarTitleText": "环境监测设备详情",
  1303. "enablePullDownRefresh": false,
  1304. "navigationStyle": "custom"
  1305. }
  1306. },
  1307. {
  1308. "path": "equipment-new",
  1309. "style": {
  1310. "navigationBarTitleText": "环境监测设备1.0详情",
  1311. "enablePullDownRefresh": false,
  1312. "navigationStyle": "custom"
  1313. }
  1314. },
  1315. {
  1316. "path": "contros",
  1317. "style": {
  1318. "navigationBarTitleText": "环境监测控制页面",
  1319. "enablePullDownRefresh": false,
  1320. "navigationStyle": "custom"
  1321. }
  1322. },
  1323. {
  1324. "path": "onedaythedata",
  1325. "style": {
  1326. "navigationBarTitleText": "环境检测24小时数据",
  1327. "enablePullDownRefresh": false,
  1328. "navigationStyle": "custom"
  1329. }
  1330. },
  1331. {
  1332. "path": "history",
  1333. "style": {
  1334. "navigationBarTitleText": "环境检测历史数据",
  1335. "enablePullDownRefresh": false,
  1336. "navigationStyle": "custom"
  1337. }
  1338. },
  1339. {
  1340. "path": "history-new",
  1341. "style": {
  1342. "navigationBarTitleText": "环境检测1.0历史数据",
  1343. "enablePullDownRefresh": false,
  1344. "navigationStyle": "custom"
  1345. }
  1346. },
  1347. {
  1348. "path": "sim",
  1349. "style": {
  1350. "navigationBarTitleText": "环境监测sim卡信息",
  1351. "enablePullDownRefresh": false,
  1352. "navigationStyle": "custom"
  1353. }
  1354. },
  1355. {
  1356. "path": "gsequipment",
  1357. "style": {
  1358. "navigationBarTitleText": "管式墒情设备详情页",
  1359. "enablePullDownRefresh": false,
  1360. "navigationStyle": "custom"
  1361. }
  1362. },
  1363. {
  1364. "path": "gshistory",
  1365. "style": {
  1366. "navigationBarTitleText": "管式墒情历史记录页",
  1367. "enablePullDownRefresh": false,
  1368. "navigationStyle": "custom"
  1369. }
  1370. }
  1371. ]
  1372. },
  1373. {
  1374. "root": "pages/monitor",
  1375. "pages": [
  1376. {
  1377. "path": "index",
  1378. "style": {
  1379. "navigationBarTitleText": "监控列表",
  1380. "enablePullDownRefresh": true,
  1381. "navigationStyle": "custom"
  1382. }
  1383. },
  1384. {
  1385. "path": "sim",
  1386. "style": {
  1387. "navigationBarTitleText": "监控SIM卡",
  1388. "enablePullDownRefresh": false,
  1389. "navigationStyle": "custom"
  1390. }
  1391. },
  1392. {
  1393. "path": "imagelist",
  1394. "style": {
  1395. "navigationBarTitleText": "",
  1396. "enablePullDownRefresh": false
  1397. }
  1398. },
  1399. {
  1400. "path": "dgpImagelist",
  1401. "style": {
  1402. "navigationBarTitleText": "光谱图片列表",
  1403. "enablePullDownRefresh": false
  1404. }
  1405. }
  1406. ]
  1407. },
  1408. {
  1409. "root": "pages/disease",
  1410. "pages": [
  1411. {
  1412. "path": "cmb",
  1413. "style": {
  1414. "navigationBarTitleText": "病害设备详情页",
  1415. "enablePullDownRefresh": false,
  1416. "navigationStyle": "custom"
  1417. }
  1418. },
  1419. {
  1420. "path": "forecastResult",
  1421. "style": {
  1422. "navigationBarTitleText": "预测结果",
  1423. "enablePullDownRefresh": false
  1424. }
  1425. },
  1426. {
  1427. "path": "mls/mls",
  1428. "style": {
  1429. "navigationBarTitleText": "马铃薯晚疫病详情页"
  1430. }
  1431. },
  1432. {
  1433. "path": "mls/forecastResult",
  1434. "style": {
  1435. "navigationBarTitleText": "防控决策"
  1436. }
  1437. }
  1438. ]
  1439. },
  1440. {
  1441. "root": "pages/irrigate",
  1442. "pages": [
  1443. {
  1444. "path": "index",
  1445. "style": {
  1446. "navigationBarTitleText": "智能灌溉",
  1447. "enablePullDownRefresh": false,
  1448. "navigationStyle": "custom"
  1449. }
  1450. },
  1451. {
  1452. "path": "irrmap",
  1453. "style": {
  1454. "navigationBarTitleText": "设备位置",
  1455. "enablePullDownRefresh": false
  1456. }
  1457. },
  1458. {
  1459. "path": "realtimedata",
  1460. "style": {
  1461. "navigationBarTitleText": "设备实时数据",
  1462. "enablePullDownRefresh": false
  1463. }
  1464. },
  1465. {
  1466. "path": "weathdata",
  1467. "style": {
  1468. "navigationBarTitleText": "设备变量数据",
  1469. "enablePullDownRefresh": false
  1470. }
  1471. },
  1472. {
  1473. "path": "search",
  1474. "style": {
  1475. "navigationBarTitleText": "设备搜索",
  1476. "enablePullDownRefresh": false
  1477. }
  1478. }
  1479. ]
  1480. },
  1481. {
  1482. "root": "pages/waterandfer",
  1483. "pages": [
  1484. {
  1485. "path": "index",
  1486. "style": {
  1487. "navigationBarTitleText": "水肥一体化",
  1488. "enablePullDownRefresh": false,
  1489. "navigationStyle": "custom"
  1490. }
  1491. },
  1492. {
  1493. "path": "datails",
  1494. "style": {
  1495. "navigationBarTitleText": "设备详情",
  1496. "enablePullDownRefresh": false,
  1497. "navigationStyle": "custom"
  1498. }
  1499. },
  1500. {
  1501. "path": "basestate",
  1502. "style": {
  1503. "navigationBarTitleText": "设备状态",
  1504. "enablePullDownRefresh": false,
  1505. "titleNView": {
  1506. "buttons": [
  1507. {
  1508. "text": "记录",
  1509. "fontSize": "14px"
  1510. }
  1511. ]
  1512. }
  1513. }
  1514. },
  1515. {
  1516. "path": "elementdata",
  1517. "style": {
  1518. "navigationBarTitleText": "要素数据",
  1519. "enablePullDownRefresh": false
  1520. }
  1521. },
  1522. {
  1523. "path": "waterhis",
  1524. "style": {
  1525. "navigationBarTitleText": "控制历史记录",
  1526. "enablePullDownRefresh": false
  1527. }
  1528. }
  1529. ]
  1530. },
  1531. {
  1532. "root": "pages/cbqxyj",
  1533. "pages": [
  1534. {
  1535. "path": "cbwarn",
  1536. "style": {
  1537. "navigationBarTitleText": "测报预警",
  1538. "enablePullDownRefresh": false
  1539. }
  1540. },
  1541. {
  1542. "path": "basemap",
  1543. "style": {
  1544. "navigationBarTitleText": "设备位置",
  1545. "enablePullDownRefresh": false
  1546. }
  1547. },
  1548. {
  1549. "path": "addressbook",
  1550. "style": {
  1551. "navigationBarTitleText": "预警通讯录",
  1552. "enablePullDownRefresh": false
  1553. }
  1554. },
  1555. {
  1556. "path": "warnset",
  1557. "style": {
  1558. "navigationBarTitleText": "预警设置",
  1559. "enablePullDownRefresh": false
  1560. }
  1561. }
  1562. ]
  1563. },
  1564. {
  1565. "root": "pages/qxzyj",
  1566. "pages": [
  1567. {
  1568. "path": "cbwarn",
  1569. "style": {
  1570. "navigationBarTitleText": "气象预警",
  1571. "enablePullDownRefresh": false
  1572. }
  1573. },
  1574. {
  1575. "path": "warnset",
  1576. "style": {
  1577. "navigationBarTitleText": "预警设置",
  1578. "enablePullDownRefresh": false
  1579. }
  1580. }
  1581. ]
  1582. },
  1583. {
  1584. "root": "pages/cb/sy",
  1585. "pages": [
  1586. {
  1587. "path": "detail",
  1588. "style": {
  1589. "navigationBarTitleText": "设备详情",
  1590. "enablePullDownRefresh": false
  1591. }
  1592. },
  1593. {
  1594. "path": "imgList",
  1595. "style": {
  1596. "navigationBarTitleText": "查看图片",
  1597. "enablePullDownRefresh": false,
  1598. "navigationStyle": "custom"
  1599. }
  1600. },
  1601. {
  1602. "path": "history",
  1603. "style": {
  1604. "navigationBarTitleText": "历史记录",
  1605. "enablePullDownRefresh": false
  1606. }
  1607. }
  1608. ]
  1609. },
  1610. {
  1611. "root": "pages/waterandfernew",
  1612. "pages": [
  1613. {
  1614. "path": "details",
  1615. "style": {
  1616. "navigationBarTitleText": "水肥详情",
  1617. "enablePullDownRefresh": false,
  1618. "navigationStyle": "custom"
  1619. }
  1620. }
  1621. ]
  1622. },
  1623. {
  1624. "root": "pages/identifyPest",
  1625. "pages": [
  1626. {
  1627. "path": "identifyPest",
  1628. "style": {
  1629. "navigationBarTitleText": "田间随识"
  1630. }
  1631. },
  1632. {
  1633. "path": "recognizeSucceed/recognizeSucceed",
  1634. "style": {
  1635. "navigationBarTitleText": "识别结果",
  1636. "enablePullDownRefresh": false
  1637. }
  1638. },
  1639. {
  1640. "path": "recognizeFail/recognizeFail",
  1641. "style": {
  1642. "navigationBarTitleText": "识别结果",
  1643. "enablePullDownRefresh": false
  1644. }
  1645. },
  1646. {
  1647. "path": "guidance/guidance",
  1648. "style": {
  1649. "navigationBarTitleText": "拍照指南",
  1650. "enablePullDownRefresh": false
  1651. }
  1652. },
  1653. {
  1654. "path": "identifyPestIndex/identifyPestIndex",
  1655. "style": {
  1656. "navigationBarTitleText": "选择识别类型",
  1657. "enablePullDownRefresh": false
  1658. }
  1659. },
  1660. {
  1661. "path": "detailsA/detailsA",
  1662. "style": {
  1663. "navigationBarTitleText": "病虫害介绍",
  1664. "enablePullDownRefresh": false
  1665. }
  1666. }
  1667. ]
  1668. },
  1669. {
  1670. "root": "pages/deviceDetails/weatherStation",
  1671. "pages": [
  1672. {
  1673. "path": "index",
  1674. "style": {
  1675. "enablePullDownRefresh": false,
  1676. "navigationStyle": "custom"
  1677. }
  1678. },
  1679. {
  1680. "path": "devControl",
  1681. "style": {
  1682. "enablePullDownRefresh": false,
  1683. "navigationStyle": "custom"
  1684. }
  1685. },
  1686. {
  1687. "path": "simDetail",
  1688. "style": {
  1689. "enablePullDownRefresh": false,
  1690. "navigationStyle": "custom"
  1691. }
  1692. },
  1693. {
  1694. "path": "devRepair",
  1695. "style": {
  1696. "enablePullDownRefresh": false,
  1697. "navigationStyle": "custom"
  1698. }
  1699. },
  1700. {
  1701. "path": "eleDetail",
  1702. "style": {
  1703. "enablePullDownRefresh": false,
  1704. "navigationStyle": "custom"
  1705. }
  1706. }
  1707. ]
  1708. },
  1709. {
  1710. "root": "pages/deviceDetails/weatherStation1",
  1711. "pages": [
  1712. {
  1713. "path": "index",
  1714. "style": {
  1715. "enablePullDownRefresh": false,
  1716. "navigationStyle": "custom"
  1717. }
  1718. },
  1719. {
  1720. "path": "devControl",
  1721. "style": {
  1722. "enablePullDownRefresh": false,
  1723. "navigationStyle": "custom"
  1724. }
  1725. },
  1726. {
  1727. "path": "simDetail",
  1728. "style": {
  1729. "enablePullDownRefresh": false,
  1730. "navigationStyle": "custom"
  1731. }
  1732. },
  1733. {
  1734. "path": "devRepair",
  1735. "style": {
  1736. "enablePullDownRefresh": false,
  1737. "navigationStyle": "custom"
  1738. }
  1739. },
  1740. {
  1741. "path": "eleDetail",
  1742. "style": {
  1743. "enablePullDownRefresh": false,
  1744. "navigationStyle": "custom"
  1745. }
  1746. }
  1747. ]
  1748. },
  1749. {
  1750. "root": "pages/deviceDetails/weatherStation2",
  1751. "pages": [
  1752. {
  1753. "path": "index",
  1754. "style": {
  1755. "enablePullDownRefresh": false,
  1756. "navigationStyle": "custom"
  1757. }
  1758. },
  1759. {
  1760. "path": "devControl",
  1761. "style": {
  1762. "enablePullDownRefresh": false,
  1763. "navigationStyle": "custom"
  1764. }
  1765. },
  1766. {
  1767. "path": "simDetail",
  1768. "style": {
  1769. "enablePullDownRefresh": false,
  1770. "navigationStyle": "custom"
  1771. }
  1772. },
  1773. {
  1774. "path": "devRepair",
  1775. "style": {
  1776. "enablePullDownRefresh": false,
  1777. "navigationStyle": "custom"
  1778. }
  1779. },
  1780. {
  1781. "path": "eleDetail",
  1782. "style": {
  1783. "enablePullDownRefresh": false,
  1784. "navigationStyle": "custom"
  1785. }
  1786. }
  1787. ]
  1788. },
  1789. {
  1790. "root": "pages/deviceDetails/SoilMoisturelist",
  1791. "pages": [
  1792. {
  1793. "path": "index",
  1794. "style": {
  1795. "enablePullDownRefresh": false,
  1796. "navigationStyle": "custom"
  1797. }
  1798. },
  1799. {
  1800. "path": "devControl",
  1801. "style": {
  1802. "enablePullDownRefresh": false,
  1803. "navigationStyle": "custom"
  1804. }
  1805. },
  1806. {
  1807. "path": "simDetail",
  1808. "style": {
  1809. "enablePullDownRefresh": false,
  1810. "navigationStyle": "custom"
  1811. }
  1812. },
  1813. {
  1814. "path": "devRepair",
  1815. "style": {
  1816. "enablePullDownRefresh": false,
  1817. "navigationStyle": "custom"
  1818. }
  1819. },
  1820. {
  1821. "path": "eleDetail",
  1822. "style": {
  1823. "enablePullDownRefresh": false,
  1824. "navigationStyle": "custom"
  1825. }
  1826. }
  1827. ]
  1828. }
  1829. ],
  1830. "condition": {
  1831. "current": 3,
  1832. "list": [
  1833. {
  1834. "name": "about",
  1835. "path": "pages/my/about/about"
  1836. },
  1837. {
  1838. "name": "feedback",
  1839. "path": "pages/my/feedback/feedback"
  1840. },
  1841. {
  1842. "name": "cdIndex",
  1843. "path": "pages/cb/index/index"
  1844. },
  1845. {
  1846. "name": "login",
  1847. "path": "pages/login/login"
  1848. }
  1849. ]
  1850. },
  1851. "globalStyle": {
  1852. "navigationBarTextStyle": "black",
  1853. "navigationBarTitleText": "大数据平台",
  1854. "navigationBarBackgroundColor": "#fff",
  1855. "backgroundColor": "#FFFFFF"
  1856. },
  1857. "requiredPrivateInfos": ["getLocation", "getFuzzyLocation"],
  1858. "tabBar": {
  1859. "color": "#5C5C5C",
  1860. "selectedColor": "#018B3F",
  1861. "borderStyle": "white",
  1862. "list": [
  1863. {
  1864. "pagePath": "pages/index/index",
  1865. "iconPath": "static/images/tabBar/shouye.png",
  1866. "selectedIconPath": "static/images/tabBar/shouyesel.png",
  1867. "text": "首页"
  1868. },
  1869. {
  1870. "pagePath": "pages/equipList2/index",
  1871. "iconPath": "static/images/tabBar/device.png",
  1872. "selectedIconPath": "static/images/tabBar/devicesel.png",
  1873. "text": "设备列表"
  1874. },
  1875. {
  1876. "pagePath": "pages/my/index/index",
  1877. "iconPath": "static/images/tabBar/user.png",
  1878. "selectedIconPath": "static/images/tabBar/usersel.png",
  1879. "text": "个人中心"
  1880. }
  1881. ]
  1882. }
  1883. }