pages.json 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": "",
  10. "enablePullDownRefresh": false,
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "首页"
  18. }
  19. }
  20. ,{
  21. "path" : "pages/my/about/about",
  22. "style" :
  23. {
  24. "navigationBarTitleText": "关于",
  25. "enablePullDownRefresh": false
  26. }
  27. }
  28. ,{
  29. "path" : "pages/cb/index/index",
  30. "style" :
  31. {
  32. "navigationBarTitleText": "测报系统",
  33. "enablePullDownRefresh": true,
  34. "navigationStyle":"custom"
  35. }
  36. }
  37. ,{
  38. "path" : "pages/my/user-info/user-info",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "个人信息",
  42. "enablePullDownRefresh": false
  43. }
  44. }
  45. ,{
  46. "path" : "pages/my/feedback/feedback",
  47. "style" :
  48. {
  49. "navigationBarTitleText": "反馈",
  50. "enablePullDownRefresh": false
  51. }
  52. }
  53. ,{
  54. "path" : "pages/search/search",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "",
  58. "enablePullDownRefresh": false,
  59. "app-plus":{}
  60. }
  61. }, {
  62. "path": "pages/my/about/about",
  63. "style": {
  64. "navigationBarTitleText": "关于",
  65. "enablePullDownRefresh": false
  66. }
  67. }, {
  68. "path": "pages/cb/index/index",
  69. "style": {
  70. "navigationBarTitleText": "测报系统",
  71. "enablePullDownRefresh": true,
  72. "navigationStyle": "custom"
  73. }
  74. }, {
  75. "path": "pages/my/user-info/user-info",
  76. "style": {
  77. "navigationBarTitleText": "个人信息",
  78. "enablePullDownRefresh": false
  79. }
  80. }, {
  81. "path": "pages/my/feedback/feedback",
  82. "style": {
  83. "navigationBarTitleText": "反馈",
  84. "enablePullDownRefresh": false
  85. }
  86. }, {
  87. "path": "pages/search/search",
  88. "style": {
  89. "navigationBarTitleText": "",
  90. "enablePullDownRefresh": false,
  91. "app-plus": {
  92. "bounce": "none",
  93. "titleNView": {
  94. "searchInput": {
  95. "autoFocus": true,
  96. "align": "center",
  97. "placeholder": "输入设备号搜索",
  98. "borderRadius": "50px",
  99. "backgroundColor": "#E4E4E4",
  100. "placeholderColor": "#333"
  101. }
  102. }
  103. }
  104. }
  105. }, {
  106. "path": "pages/cb/equip-detail/equip-detail",
  107. "style": {
  108. "navigationBarTitleText": "设备详情",
  109. "enablePullDownRefresh": false
  110. }
  111. }, {
  112. "path": "pages/cb/cbd/equip-set/equip-set",
  113. "style": {
  114. "navigationBarTitleText": "设备控制",
  115. "enablePullDownRefresh": false
  116. }
  117. }, {
  118. "path": "pages/equipMange/index/index",
  119. "style": {
  120. "navigationBarTitleText": "设备分配主页",
  121. "enablePullDownRefresh": false,
  122. "navigationStyle": "custom"
  123. }
  124. },
  125. {
  126. "path": "pages/equipMange/index/addusers",
  127. "style": {
  128. "navigationBarTitleText": "增加用户",
  129. "enablePullDownRefresh": false,
  130. "navigationStyle": "custom"
  131. }
  132. }, {
  133. "path": "pages/equipMange/index/useroperation",
  134. "style": {
  135. "navigationBarTitleText": "用户详情",
  136. "enablePullDownRefresh": false,
  137. "navigationStyle": "custom"
  138. }
  139. }, {
  140. "path": "pages/equipMange/index/changepasswold",
  141. "style": {
  142. "navigationBarTitleText": "更改密码",
  143. "enablePullDownRefresh": false,
  144. "navigationStyle": "custom"
  145. }
  146. }, {
  147. "path": "pages/equipMange/index/assignment",
  148. "style": {
  149. "navigationBarTitleText": "分配设备",
  150. "enablePullDownRefresh": false,
  151. "navigationStyle": "custom"
  152. }
  153. }, {
  154. "path": "pages/cb/bzy/equip-set/equip-set",
  155. "style": {
  156. "navigationBarTitleText": "设备控制",
  157. "enablePullDownRefresh": false
  158. }
  159. }, {
  160. "path": "pages/cb/xy/equip-set/equip-set",
  161. "style": {
  162. "navigationBarTitleText": "设备控制",
  163. "enablePullDownRefresh": false
  164. }
  165. }, {
  166. "path": "pages/cb/sim/sim",
  167. "style": {
  168. "navigationBarTitleText": "sim卡详情",
  169. "enablePullDownRefresh": false
  170. }
  171. }, {
  172. "path": "pages/expertDiagnosis/index",
  173. "style": {
  174. "navigationBarTitleText": "专家诊断",
  175. "enablePullDownRefresh": false,
  176. "navigationStyle": "custom"
  177. }
  178. }, {
  179. "path": "pages/expertDiagnosis/wormcase",
  180. "style": {
  181. "navigationBarTitleText": "虫情百科",
  182. "enablePullDownRefresh": false,
  183. "navigationStyle": "custom"
  184. }
  185. }, {
  186. "path": "pages/expertDiagnosis/exchangeShare",
  187. "style": {
  188. "navigationBarTitleText": "交流圈",
  189. "enablePullDownRefresh": false,
  190. "navigationStyle": "custom"
  191. }
  192. }, {
  193. "path": "pages/expertDiagnosis/particulars",
  194. "style": {
  195. "navigationBarTitleText": "交流圈详情",
  196. "enablePullDownRefresh": false,
  197. "navigationStyle": "custom"
  198. }
  199. }, {
  200. "path": "pages/expertDiagnosis/postmessage",
  201. "style": {
  202. "navigationBarTitleText": "发帖",
  203. "enablePullDownRefresh": false,
  204. "navigationStyle": "custom"
  205. }
  206. }, {
  207. "path": "pages/afterSale/index",
  208. "style": {
  209. "navigationBarTitleText": "售后服务",
  210. "enablePullDownRefresh": false,
  211. "navigationStyle": "custom"
  212. }
  213. }, {
  214. "path": "pages/afterSale/search",
  215. "style": {
  216. "navigationBarTitleText": "售后服务搜索",
  217. "enablePullDownRefresh": false,
  218. "navigationStyle": "custom"
  219. }
  220. }, {
  221. "path": "pages/expertDiagnosis/introduce",
  222. "style": {
  223. "navigationBarTitleText": "病虫害介绍",
  224. "enablePullDownRefresh": false,
  225. "navigationStyle": "custom"
  226. }
  227. }, {
  228. "path": "pages/afterSale/addafter",
  229. "style": {
  230. "navigationBarTitleText": "设备报修",
  231. "enablePullDownRefresh": false,
  232. "navigationStyle": "custom"
  233. }
  234. }, {
  235. "path": "pages/my/index/index",
  236. "style": {
  237. "navigationBarTitleText": "个人中心",
  238. "enablePullDownRefresh": false
  239. }
  240. }, {
  241. "path": "pages/equipList/index",
  242. "style": {
  243. "navigationBarTitleText": "",
  244. "enablePullDownRefresh": false,
  245. "navigationStyle": "custom"
  246. }
  247. }, {
  248. "path": "pages/equipList/search",
  249. "style": {
  250. "navigationBarTitleText": "",
  251. "enablePullDownRefresh": false,
  252. "navigationStyle": "custom"
  253. }
  254. }, {
  255. "path": "pages/equipList/modification",
  256. "style": {
  257. "navigationBarTitleText": "",
  258. "enablePullDownRefresh": false,
  259. "navigationStyle": "custom"
  260. }
  261. }, {
  262. "path": "pages/distribution/index",
  263. "style": {
  264. "navigationBarTitleText": "设备分布",
  265. "enablePullDownRefresh": false
  266. }
  267. }, {
  268. "path": "pages/fourBase/index",
  269. "style": {
  270. "navigationBarTitleText": "四情基地首页",
  271. "enablePullDownRefresh": false,
  272. "navigationStyle": "custom"
  273. }
  274. }, {
  275. "path": "pages/fourBase/addbase",
  276. "style": {
  277. "navigationBarTitleText": "新增基地",
  278. "enablePullDownRefresh": false,
  279. "navigationStyle": "custom"
  280. }
  281. }, {
  282. "path": "pages/fourBase/allocation",
  283. "style": {
  284. "navigationBarTitleText": "设备分配",
  285. "enablePullDownRefresh": false,
  286. "navigationStyle": "custom"
  287. }
  288. }, {
  289. "path": "pages/prevention/index",
  290. "style": {
  291. "navigationBarTitleText": "防治系统",
  292. "enablePullDownRefresh": false,
  293. "navigationStyle": "custom"
  294. }
  295. }, {
  296. "path": "pages/prevention/search",
  297. "style": {
  298. "navigationBarTitleText": "防治系统搜索",
  299. "enablePullDownRefresh": false,
  300. "navigationStyle": "custom"
  301. }
  302. }, {
  303. "path": "pages/prevention/equipmentdetails",
  304. "style": {
  305. "navigationBarTitleText": "防治系统设备详细",
  306. "enablePullDownRefresh": false,
  307. "navigationStyle": "custom"
  308. }
  309. }, {
  310. "path": "pages/prevention/sim",
  311. "style": {
  312. "navigationBarTitleText": "sim卡详情",
  313. "enablePullDownRefresh": false,
  314. "navigationStyle": "custom"
  315. }
  316. }, {
  317. "path": "pages/prevention/control",
  318. "style": {
  319. "navigationBarTitleText": "设备控制",
  320. "enablePullDownRefresh": false,
  321. "navigationStyle": "custom"
  322. }
  323. }, {
  324. "path": "pages/prevention/ucharts",
  325. "style": {
  326. "navigationBarTitleText": "历史数据",
  327. "enablePullDownRefresh": false,
  328. "navigationStyle": "custom"
  329. }
  330. }, {
  331. "path": "pages/environment/index",
  332. "style": {
  333. "navigationBarTitleText": "环境监测",
  334. "enablePullDownRefresh": false,
  335. "navigationStyle": "custom"
  336. }
  337. }, {
  338. "path": "pages/environment/search",
  339. "style": {
  340. "navigationBarTitleText": "环境监测搜索",
  341. "enablePullDownRefresh": false,
  342. "navigationStyle": "custom"
  343. }
  344. }, {
  345. "path": "pages/environment/equipment",
  346. "style": {
  347. "navigationBarTitleText": "环境监测设备详情",
  348. "enablePullDownRefresh": false,
  349. "navigationStyle": "custom"
  350. }
  351. }, {
  352. "path": "pages/environment/contros",
  353. "style": {
  354. "navigationBarTitleText": "环境监测控制页面",
  355. "enablePullDownRefresh": false,
  356. "navigationStyle": "custom"
  357. }
  358. }, {
  359. "path": "pages/environment/onedaythedata",
  360. "style": {
  361. "navigationBarTitleText": "环境检测24小时数据",
  362. "enablePullDownRefresh": false,
  363. "navigationStyle": "custom"
  364. }
  365. }, {
  366. "path": "pages/environment/history",
  367. "style": {
  368. "navigationBarTitleText": "环境检测历史数据",
  369. "enablePullDownRefresh": false,
  370. "navigationStyle": "custom"
  371. }
  372. }, {
  373. "path": "pages/cb/cbd/equip-set/imgpage",
  374. "style": {
  375. "navigationBarTitleText": "图片列表",
  376. "enablePullDownRefresh": false,
  377. "navigationStyle": "custom"
  378. }
  379. }, {
  380. "path": "pages/cb/cbd/equip-set/addimg",
  381. "style": {
  382. "navigationBarTitleText": "手动添加",
  383. "enablePullDownRefresh": false,
  384. "navigationStyle": "custom"
  385. }
  386. }, {
  387. "path": "pages/cb/cbd/equip-set/historyfile",
  388. "style": {
  389. "navigationBarTitleText": "测报灯历史记录",
  390. "enablePullDownRefresh": false,
  391. "navigationStyle": "custom"
  392. }
  393. }, {
  394. "path": "pages/cb/cbd/equip-set/note",
  395. "style": {
  396. "navigationBarTitleText": "短信预警",
  397. "enablePullDownRefresh": false,
  398. "navigationStyle": "custom"
  399. }
  400. }, {
  401. "path": "pages/cb/cbd/equip-set/statistics",
  402. "style": {
  403. "navigationBarTitleText": "害虫统计",
  404. "enablePullDownRefresh": false,
  405. "navigationStyle": "custom"
  406. }
  407. }, {
  408. "path": "pages/cb/bzy/equip-set/bzyhistoryile",
  409. "style": {
  410. "navigationBarTitleText": "孢子仪历史记录",
  411. "enablePullDownRefresh": false,
  412. "navigationStyle": "custom"
  413. }
  414. }, {
  415. "path": "pages/cb/xy/equip-set/xyhistoryile",
  416. "style": {
  417. "navigationBarTitleText": "性诱设备历史记录",
  418. "enablePullDownRefresh": false,
  419. "navigationStyle": "custom"
  420. }
  421. }, {
  422. "path": "pages/disandpests/index",
  423. "style": {
  424. "navigationBarTitleText": "病虫害识别",
  425. "enablePullDownRefresh": false,
  426. "navigationStyle": "custom"
  427. }
  428. }, {
  429. "path": "pages/monitor/index",
  430. "style": {
  431. "navigationBarTitleText": "监控列表",
  432. "enablePullDownRefresh": true,
  433. "navigationStyle": "custom"
  434. }
  435. }, {
  436. "path": "pages/webview",
  437. "style": {
  438. "navigationBarTitleText": "监控列表"
  439. }
  440. }
  441. ,{
  442. "path" : "pages/equipMange/index/useroperation",
  443. "style" :
  444. {
  445. "navigationBarTitleText": "用户详情",
  446. "enablePullDownRefresh": false,
  447. "navigationStyle":"custom"
  448. }
  449. }
  450. ,{
  451. "path" : "pages/equipMange/index/changepasswold",
  452. "style" :
  453. {
  454. "navigationBarTitleText": "更改密码",
  455. "enablePullDownRefresh": false,
  456. "navigationStyle":"custom"
  457. }
  458. }
  459. ,{
  460. "path" : "pages/equipMange/index/assignment",
  461. "style" :
  462. {
  463. "navigationBarTitleText": "分配设备",
  464. "enablePullDownRefresh": false,
  465. "navigationStyle":"custom"
  466. }
  467. }
  468. ,{
  469. "path" : "pages/cb/bzy/equip-set/equip-set",
  470. "style" :
  471. {
  472. "navigationBarTitleText": "设备控制",
  473. "enablePullDownRefresh": false
  474. }
  475. }
  476. ,{
  477. "path" : "pages/cb/xy/equip-set/equip-set",
  478. "style" :
  479. {
  480. "navigationBarTitleText": "设备控制",
  481. "enablePullDownRefresh": false
  482. }
  483. }
  484. ,{
  485. "path" : "pages/cb/sim/sim",
  486. "style" :
  487. {
  488. "navigationBarTitleText": "sim卡详情",
  489. "enablePullDownRefresh": false
  490. }
  491. }
  492. ,{
  493. "path" : "pages/expertDiagnosis/index",
  494. "style" :
  495. {
  496. "navigationBarTitleText": "专家诊断",
  497. "enablePullDownRefresh": false,
  498. "navigationStyle":"custom"
  499. }
  500. }
  501. ,{
  502. "path" : "pages/expertDiagnosis/wormcase",
  503. "style" :
  504. {
  505. "navigationBarTitleText": "虫情百科",
  506. "enablePullDownRefresh": false,
  507. "navigationStyle":"custom"
  508. }
  509. },{
  510. "path" : "pages/expertDiagnosis/exchangeShare",
  511. "style" :
  512. {
  513. "navigationBarTitleText": "交流圈",
  514. "enablePullDownRefresh": false,
  515. "navigationStyle":"custom"
  516. }
  517. }
  518. ,{
  519. "path" : "pages/expertDiagnosis/particulars",
  520. "style" :
  521. {
  522. "navigationBarTitleText": "交流圈详情",
  523. "enablePullDownRefresh": false,
  524. "navigationStyle":"custom"
  525. }
  526. }
  527. ,{
  528. "path" : "pages/expertDiagnosis/postmessage",
  529. "style" :
  530. {
  531. "navigationBarTitleText": "发帖",
  532. "enablePullDownRefresh": false,
  533. "navigationStyle":"custom"
  534. }
  535. }
  536. ,{
  537. "path" : "pages/afterSale/index",
  538. "style" :
  539. {
  540. "navigationBarTitleText": "售后服务",
  541. "enablePullDownRefresh": false,
  542. "navigationStyle":"custom"
  543. }
  544. }
  545. ,{
  546. "path" : "pages/afterSale/search",
  547. "style" :
  548. {
  549. "navigationBarTitleText": "售后服务搜索",
  550. "enablePullDownRefresh": false,
  551. "navigationStyle":"custom"
  552. }
  553. }
  554. ,{
  555. "path" : "pages/expertDiagnosis/introduce",
  556. "style" :
  557. {
  558. "navigationBarTitleText": "病虫害介绍",
  559. "enablePullDownRefresh": false,
  560. "navigationStyle":"custom"
  561. }
  562. }
  563. ,{
  564. "path" : "pages/afterSale/addafter",
  565. "style" :
  566. {
  567. "navigationBarTitleText": "设备报修",
  568. "enablePullDownRefresh": false,
  569. "navigationStyle":"custom"
  570. }
  571. }
  572. ,{
  573. "path" : "pages/equipList/index",
  574. "style" :
  575. {
  576. "navigationBarTitleText": "",
  577. "enablePullDownRefresh": false,
  578. "navigationStyle":"custom"
  579. }
  580. }
  581. ,{
  582. "path" : "pages/equipList/search",
  583. "style" :
  584. {
  585. "navigationBarTitleText": "",
  586. "enablePullDownRefresh": false,
  587. "navigationStyle":"custom"
  588. }
  589. }
  590. ,{
  591. "path" : "pages/equipList/modification",
  592. "style" :
  593. {
  594. "navigationBarTitleText": "",
  595. "enablePullDownRefresh": false,
  596. "navigationStyle":"custom"
  597. }
  598. }
  599. ,{
  600. "path" : "pages/fourBase/index",
  601. "style" :
  602. {
  603. "navigationBarTitleText": "四情基地首页",
  604. "enablePullDownRefresh": false,
  605. "navigationStyle":"custom"
  606. }
  607. }
  608. ,{
  609. "path" : "pages/fourBase/addbase",
  610. "style" :
  611. {
  612. "navigationBarTitleText": "新增基地",
  613. "enablePullDownRefresh": false,
  614. "navigationStyle":"custom"
  615. }
  616. }
  617. ,{
  618. "path" : "pages/fourBase/allocation",
  619. "style" :
  620. {
  621. "navigationBarTitleText": "设备分配",
  622. "enablePullDownRefresh": false,
  623. "navigationStyle":"custom"
  624. }
  625. }
  626. ,{
  627. "path" : "pages/fourBase/basefacility",
  628. "style" :
  629. {
  630. "navigationBarTitleText": "",
  631. "enablePullDownRefresh": false,
  632. "navigationStyle":"custom"
  633. }
  634. }
  635. ,{
  636. "path" : "pages/prevention/index",
  637. "style" :
  638. {
  639. "navigationBarTitleText": "防治系统",
  640. "enablePullDownRefresh": false,
  641. "navigationStyle":"custom"
  642. }
  643. }
  644. ,{
  645. "path" : "pages/prevention/search",
  646. "style" :
  647. {
  648. "navigationBarTitleText": "防治系统搜索",
  649. "enablePullDownRefresh": false,
  650. "navigationStyle":"custom"
  651. }
  652. }
  653. ,{
  654. "path" : "pages/prevention/equipmentdetails",
  655. "style" :
  656. {
  657. "navigationBarTitleText": "防治系统设备详细",
  658. "enablePullDownRefresh": false,
  659. "navigationStyle":"custom"
  660. }
  661. }
  662. ,{
  663. "path" : "pages/prevention/sim",
  664. "style" :
  665. {
  666. "navigationBarTitleText": "sim卡详情",
  667. "enablePullDownRefresh": false,
  668. "navigationStyle":"custom"
  669. }
  670. }
  671. ,{
  672. "path" : "pages/prevention/control",
  673. "style" :
  674. {
  675. "navigationBarTitleText": "设备控制",
  676. "enablePullDownRefresh": false,
  677. "navigationStyle":"custom"
  678. }
  679. }
  680. ,{
  681. "path" : "pages/prevention/ucharts",
  682. "style" :
  683. {
  684. "navigationBarTitleText": "历史数据",
  685. "enablePullDownRefresh": false,
  686. "navigationStyle":"custom"
  687. }
  688. }
  689. ,{
  690. "path" : "pages/environment/index",
  691. "style" :
  692. {
  693. "navigationBarTitleText": "环境监测",
  694. "enablePullDownRefresh": false,
  695. "navigationStyle":"custom"
  696. }
  697. }
  698. ,{
  699. "path" : "pages/environment/search",
  700. "style" :
  701. {
  702. "navigationBarTitleText": "环境监测搜索",
  703. "enablePullDownRefresh": false,
  704. "navigationStyle":"custom"
  705. }
  706. }
  707. ,{
  708. "path" : "pages/environment/equipment",
  709. "style" :
  710. {
  711. "navigationBarTitleText": "环境监测设备详情",
  712. "enablePullDownRefresh": false,
  713. "navigationStyle":"custom"
  714. }
  715. }
  716. ,{
  717. "path" : "pages/environment/contros",
  718. "style" :
  719. {
  720. "navigationBarTitleText": "环境监测控制页面",
  721. "enablePullDownRefresh": false,
  722. "navigationStyle":"custom"
  723. }
  724. }
  725. ,{
  726. "path" : "pages/environment/onedaythedata",
  727. "style" :
  728. {
  729. "navigationBarTitleText": "环境检测24小时数据",
  730. "enablePullDownRefresh": false,
  731. "navigationStyle":"custom"
  732. }
  733. }
  734. ,{
  735. "path" : "pages/environment/history",
  736. "style" :
  737. {
  738. "navigationBarTitleText": "环境检测历史数据",
  739. "enablePullDownRefresh": false,
  740. "navigationStyle":"custom"
  741. }
  742. }
  743. ,{
  744. "path" : "pages/cb/cbd/equip-set/imgpage",
  745. "style" :
  746. {
  747. "navigationBarTitleText": "图片列表",
  748. "enablePullDownRefresh": false,
  749. "navigationStyle":"custom"
  750. }
  751. }
  752. ,{
  753. "path" : "pages/cb/cbd/equip-set/addimg",
  754. "style" :
  755. {
  756. "navigationBarTitleText": "手动添加",
  757. "enablePullDownRefresh": false,
  758. "navigationStyle":"custom"
  759. }
  760. }
  761. ,{
  762. "path" : "pages/cb/cbd/equip-set/historyfile",
  763. "style" :
  764. {
  765. "navigationBarTitleText": "测报灯历史记录",
  766. "enablePullDownRefresh": false,
  767. "navigationStyle":"custom"
  768. }
  769. }
  770. ,{
  771. "path" : "pages/cb/cbd/equip-set/note",
  772. "style" :
  773. {
  774. "navigationBarTitleText": "短信预警",
  775. "enablePullDownRefresh": false,
  776. "navigationStyle":"custom"
  777. }
  778. }
  779. ,{
  780. "path" : "pages/cb/cbd/equip-set/statistics",
  781. "style" :
  782. {
  783. "navigationBarTitleText": "害虫统计",
  784. "enablePullDownRefresh": false,
  785. "navigationStyle":"custom"
  786. }
  787. }
  788. ,{
  789. "path" : "pages/cb/bzy/equip-set/bzyhistoryile",
  790. "style" :
  791. {
  792. "navigationBarTitleText": "孢子仪历史记录",
  793. "enablePullDownRefresh": false,
  794. "navigationStyle":"custom"
  795. }
  796. }
  797. ,{
  798. "path" : "pages/cb/xy/equip-set/xyhistoryile",
  799. "style" :
  800. {
  801. "navigationBarTitleText": "性诱设备历史记录",
  802. "enablePullDownRefresh": false,
  803. "navigationStyle":"custom"
  804. }
  805. }
  806. ,{
  807. "path" : "pages/disandpests/index",
  808. "style" :
  809. {
  810. "navigationBarTitleText": "病虫害识别",
  811. "enablePullDownRefresh": false,
  812. "navigationStyle":"custom"
  813. }
  814. }
  815. ,{
  816. "path" : "pages/fourBase/modification",
  817. "style" :
  818. {
  819. "navigationBarTitleText": "四情基地编辑基地",
  820. "enablePullDownRefresh": false,
  821. "navigationStyle":"custom"
  822. }
  823. }
  824. ,{
  825. "path" : "pages/distribution/index",
  826. "style" :
  827. {
  828. "navigationBarTitleText": "设备分布",
  829. "enablePullDownRefresh": false
  830. }
  831. }
  832. ],
  833. "condition": { //模式配置,仅开发期间生效
  834. "current": 3, //当前激活的模式(list 的索引项)
  835. "list": [{
  836. "name": "about",
  837. "path": "pages/my/about/about"
  838. }, {
  839. "name": "feedback",
  840. "path": "pages/my/feedback/feedback"
  841. }, {
  842. "name": "cdIndex",
  843. "path": "pages/cb/index/index"
  844. }, {
  845. "name": "login",
  846. "path": "pages/login/login"
  847. }]
  848. },
  849. "globalStyle": {
  850. "navigationBarTextStyle": "black",
  851. "navigationBarTitleText": "大数据平台",
  852. "navigationBarBackgroundColor": "#fff",
  853. "backgroundColor": "#ff0000"
  854. },
  855. "tabBar": {
  856. "color": "#cdcdcd",
  857. "selectedColor": "#56C979",
  858. "borderStyle": "white",
  859. "list": [{
  860. "pagePath": "pages/index/index",
  861. "iconPath": "static/image/index/13.png",
  862. "selectedIconPath": "static/image/index/12.png",
  863. "text": "首页"
  864. },
  865. {
  866. "pagePath": "pages/equipList/index",
  867. "iconPath": "static/image/index/14.png",
  868. "selectedIconPath": "static/image/index/15.png",
  869. "text": "设备列表"
  870. },
  871. {
  872. "pagePath": "pages/distribution/index",
  873. "iconPath": "static/image/index/16.png",
  874. "selectedIconPath": "static/image/index/17.png",
  875. "text": "设备分布"
  876. },
  877. {
  878. "pagePath": "pages/my/index/index",
  879. "iconPath": "static/image/index/18.png",
  880. "selectedIconPath": "static/image/index/19.png",
  881. "text": "个人中心"
  882. }
  883. ]
  884. }
  885. }