pages.json 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010
  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. "navigationStyle": "custom"
  240. }
  241. }, {
  242. "path": "pages/equipList/index",
  243. "style": {
  244. "navigationBarTitleText": "",
  245. "enablePullDownRefresh": false,
  246. "navigationStyle": "custom"
  247. }
  248. }, {
  249. "path": "pages/equipList/search",
  250. "style": {
  251. "navigationBarTitleText": "",
  252. "enablePullDownRefresh": false,
  253. "navigationStyle": "custom"
  254. }
  255. }, {
  256. "path": "pages/equipList/modification",
  257. "style": {
  258. "navigationBarTitleText": "",
  259. "enablePullDownRefresh": false,
  260. "navigationStyle": "custom"
  261. }
  262. }, {
  263. "path": "pages/distribution/index",
  264. "style": {
  265. "navigationBarTitleText": "设备分布",
  266. "enablePullDownRefresh": false
  267. }
  268. }, {
  269. "path": "pages/fourBase/index",
  270. "style": {
  271. "navigationBarTitleText": "四情基地首页",
  272. "enablePullDownRefresh": false,
  273. "navigationStyle": "custom"
  274. }
  275. }, {
  276. "path": "pages/fourBase/addbase",
  277. "style": {
  278. "navigationBarTitleText": "新增基地",
  279. "enablePullDownRefresh": false,
  280. "navigationStyle": "custom"
  281. }
  282. }, {
  283. "path": "pages/fourBase/allocation",
  284. "style": {
  285. "navigationBarTitleText": "设备分配",
  286. "enablePullDownRefresh": false,
  287. "navigationStyle": "custom"
  288. }
  289. }, {
  290. "path": "pages/prevention/index",
  291. "style": {
  292. "navigationBarTitleText": "防治系统",
  293. "enablePullDownRefresh": false,
  294. "navigationStyle": "custom"
  295. }
  296. }, {
  297. "path": "pages/prevention/search",
  298. "style": {
  299. "navigationBarTitleText": "防治系统搜索",
  300. "enablePullDownRefresh": false,
  301. "navigationStyle": "custom"
  302. }
  303. }, {
  304. "path": "pages/prevention/equipmentdetails",
  305. "style": {
  306. "navigationBarTitleText": "防治系统设备详细",
  307. "enablePullDownRefresh": false,
  308. "navigationStyle": "custom"
  309. }
  310. }, {
  311. "path": "pages/prevention/sim",
  312. "style": {
  313. "navigationBarTitleText": "sim卡详情",
  314. "enablePullDownRefresh": false,
  315. "navigationStyle": "custom"
  316. }
  317. }, {
  318. "path": "pages/prevention/control",
  319. "style": {
  320. "navigationBarTitleText": "设备控制",
  321. "enablePullDownRefresh": false,
  322. "navigationStyle": "custom"
  323. }
  324. }, {
  325. "path": "pages/prevention/ucharts",
  326. "style": {
  327. "navigationBarTitleText": "历史数据",
  328. "enablePullDownRefresh": false,
  329. "navigationStyle": "custom"
  330. }
  331. }, {
  332. "path": "components/highcharts/highcharts",
  333. "style": {
  334. "navigationBarTitleText": "",
  335. "enablePullDownRefresh": false
  336. }
  337. }, {
  338. "path": "pages/environment/index",
  339. "style": {
  340. "navigationBarTitleText": "环境监测",
  341. "enablePullDownRefresh": false,
  342. "navigationStyle": "custom"
  343. }
  344. }, {
  345. "path": "pages/environment/search",
  346. "style": {
  347. "navigationBarTitleText": "环境监测搜索",
  348. "enablePullDownRefresh": false,
  349. "navigationStyle": "custom"
  350. }
  351. }, {
  352. "path": "pages/environment/equipment",
  353. "style": {
  354. "navigationBarTitleText": "环境监测设备详情",
  355. "enablePullDownRefresh": false,
  356. "navigationStyle": "custom"
  357. }
  358. }, {
  359. "path": "pages/environment/contros",
  360. "style": {
  361. "navigationBarTitleText": "环境监测控制页面",
  362. "enablePullDownRefresh": false,
  363. "navigationStyle": "custom"
  364. }
  365. }, {
  366. "path": "pages/environment/onedaythedata",
  367. "style": {
  368. "navigationBarTitleText": "环境检测24小时数据",
  369. "enablePullDownRefresh": false,
  370. "navigationStyle": "custom"
  371. }
  372. }, {
  373. "path": "pages/environment/history",
  374. "style": {
  375. "navigationBarTitleText": "环境检测历史数据",
  376. "enablePullDownRefresh": false,
  377. "navigationStyle": "custom"
  378. }
  379. }, {
  380. "path": "pages/cb/cbd/equip-set/imgpage",
  381. "style": {
  382. "navigationBarTitleText": "图片列表",
  383. "enablePullDownRefresh": false,
  384. "navigationStyle": "custom"
  385. }
  386. }, {
  387. "path": "pages/cb/cbd/equip-set/addimg",
  388. "style": {
  389. "navigationBarTitleText": "手动添加",
  390. "enablePullDownRefresh": false,
  391. "navigationStyle": "custom"
  392. }
  393. }, {
  394. "path": "pages/cb/cbd/equip-set/historyfile",
  395. "style": {
  396. "navigationBarTitleText": "测报灯历史记录",
  397. "enablePullDownRefresh": false,
  398. "navigationStyle": "custom"
  399. }
  400. }, {
  401. "path": "pages/cb/cbd/equip-set/note",
  402. "style": {
  403. "navigationBarTitleText": "短信预警",
  404. "enablePullDownRefresh": false,
  405. "navigationStyle": "custom"
  406. }
  407. }, {
  408. "path": "pages/cb/cbd/equip-set/statistics",
  409. "style": {
  410. "navigationBarTitleText": "害虫统计",
  411. "enablePullDownRefresh": false,
  412. "navigationStyle": "custom"
  413. }
  414. }, {
  415. "path": "pages/cb/bzy/equip-set/bzyhistoryile",
  416. "style": {
  417. "navigationBarTitleText": "孢子仪历史记录",
  418. "enablePullDownRefresh": false,
  419. "navigationStyle": "custom"
  420. }
  421. }, {
  422. "path": "pages/cb/xy/equip-set/xyhistoryile",
  423. "style": {
  424. "navigationBarTitleText": "性诱设备历史记录",
  425. "enablePullDownRefresh": false,
  426. "navigationStyle": "custom"
  427. }
  428. }, {
  429. "path": "pages/disandpests/index",
  430. "style": {
  431. "navigationBarTitleText": "病虫害识别",
  432. "enablePullDownRefresh": false,
  433. "navigationStyle": "custom"
  434. }
  435. }, {
  436. "path": "pages/monitor/index",
  437. "style": {
  438. "navigationBarTitleText": "监控列表",
  439. "enablePullDownRefresh": true,
  440. "navigationStyle": "custom"
  441. }
  442. }, {
  443. "path": "pages/webview",
  444. "style": {
  445. "navigationBarTitleText": "监控列表"
  446. }
  447. }
  448. ,{
  449. "path" : "pages/equipMange/index/useroperation",
  450. "style" :
  451. {
  452. "navigationBarTitleText": "用户详情",
  453. "enablePullDownRefresh": false,
  454. "navigationStyle":"custom"
  455. }
  456. }
  457. ,{
  458. "path" : "pages/equipMange/index/changepasswold",
  459. "style" :
  460. {
  461. "navigationBarTitleText": "更改密码",
  462. "enablePullDownRefresh": false,
  463. "navigationStyle":"custom"
  464. }
  465. }
  466. ,{
  467. "path" : "pages/equipMange/index/assignment",
  468. "style" :
  469. {
  470. "navigationBarTitleText": "分配设备",
  471. "enablePullDownRefresh": false,
  472. "navigationStyle":"custom"
  473. }
  474. }
  475. ,{
  476. "path" : "pages/cb/bzy/equip-set/equip-set",
  477. "style" :
  478. {
  479. "navigationBarTitleText": "设备控制",
  480. "enablePullDownRefresh": false
  481. }
  482. }
  483. ,{
  484. "path" : "pages/cb/xy/equip-set/equip-set",
  485. "style" :
  486. {
  487. "navigationBarTitleText": "设备控制",
  488. "enablePullDownRefresh": false
  489. }
  490. }
  491. ,{
  492. "path" : "pages/cb/sim/sim",
  493. "style" :
  494. {
  495. "navigationBarTitleText": "sim卡详情",
  496. "enablePullDownRefresh": false
  497. }
  498. }
  499. ,{
  500. "path" : "pages/expertDiagnosis/index",
  501. "style" :
  502. {
  503. "navigationBarTitleText": "专家诊断",
  504. "enablePullDownRefresh": false,
  505. "navigationStyle":"custom"
  506. }
  507. }
  508. ,{
  509. "path" : "pages/expertDiagnosis/wormcase",
  510. "style" :
  511. {
  512. "navigationBarTitleText": "虫情百科",
  513. "enablePullDownRefresh": false,
  514. "navigationStyle":"custom"
  515. }
  516. },{
  517. "path" : "pages/expertDiagnosis/exchangeShare",
  518. "style" :
  519. {
  520. "navigationBarTitleText": "交流圈",
  521. "enablePullDownRefresh": false,
  522. "navigationStyle":"custom"
  523. }
  524. }
  525. ,{
  526. "path" : "pages/expertDiagnosis/particulars",
  527. "style" :
  528. {
  529. "navigationBarTitleText": "交流圈详情",
  530. "enablePullDownRefresh": false,
  531. "navigationStyle":"custom"
  532. }
  533. }
  534. ,{
  535. "path" : "pages/expertDiagnosis/postmessage",
  536. "style" :
  537. {
  538. "navigationBarTitleText": "发帖",
  539. "enablePullDownRefresh": false,
  540. "navigationStyle":"custom"
  541. }
  542. }
  543. ,{
  544. "path" : "pages/afterSale/index",
  545. "style" :
  546. {
  547. "navigationBarTitleText": "售后服务",
  548. "enablePullDownRefresh": false,
  549. "navigationStyle":"custom"
  550. }
  551. }
  552. ,{
  553. "path" : "pages/afterSale/search",
  554. "style" :
  555. {
  556. "navigationBarTitleText": "售后服务搜索",
  557. "enablePullDownRefresh": false,
  558. "navigationStyle":"custom"
  559. }
  560. }
  561. ,{
  562. "path" : "pages/expertDiagnosis/introduce",
  563. "style" :
  564. {
  565. "navigationBarTitleText": "病虫害介绍",
  566. "enablePullDownRefresh": false,
  567. "navigationStyle":"custom"
  568. }
  569. }
  570. ,{
  571. "path" : "pages/afterSale/addafter",
  572. "style" :
  573. {
  574. "navigationBarTitleText": "设备报修",
  575. "enablePullDownRefresh": false,
  576. "navigationStyle":"custom"
  577. }
  578. }
  579. ,{
  580. "path" : "pages/my/index/index",
  581. "style" :
  582. {
  583. "navigationBarTitleText": "个人中心",
  584. "enablePullDownRefresh": false,
  585. "navigationStyle":"custom"
  586. }
  587. }
  588. ,{
  589. "path" : "pages/equipList/index",
  590. "style" :
  591. {
  592. "navigationBarTitleText": "",
  593. "enablePullDownRefresh": false,
  594. "navigationStyle":"custom"
  595. }
  596. }
  597. ,{
  598. "path" : "pages/equipList/search",
  599. "style" :
  600. {
  601. "navigationBarTitleText": "",
  602. "enablePullDownRefresh": false,
  603. "navigationStyle":"custom"
  604. }
  605. }
  606. ,{
  607. "path" : "pages/equipList/modification",
  608. "style" :
  609. {
  610. "navigationBarTitleText": "",
  611. "enablePullDownRefresh": false,
  612. "navigationStyle":"custom"
  613. }
  614. }
  615. ,{
  616. "path" : "pages/distribution/index",
  617. "style" :
  618. {
  619. "navigationBarTitleText": "设备分布",
  620. "enablePullDownRefresh": false
  621. }
  622. }
  623. ,{
  624. "path" : "pages/fourBase/index",
  625. "style" :
  626. {
  627. "navigationBarTitleText": "四情基地首页",
  628. "enablePullDownRefresh": false,
  629. "navigationStyle":"custom"
  630. }
  631. }
  632. ,{
  633. "path" : "pages/fourBase/addbase",
  634. "style" :
  635. {
  636. "navigationBarTitleText": "新增基地",
  637. "enablePullDownRefresh": false,
  638. "navigationStyle":"custom"
  639. }
  640. }
  641. ,{
  642. "path" : "pages/fourBase/allocation",
  643. "style" :
  644. {
  645. "navigationBarTitleText": "设备分配",
  646. "enablePullDownRefresh": false,
  647. "navigationStyle":"custom"
  648. }
  649. }
  650. ,{
  651. "path" : "pages/fourBase/basefacility",
  652. "style" :
  653. {
  654. "navigationBarTitleText": "",
  655. "enablePullDownRefresh": false,
  656. "navigationStyle":"custom"
  657. }
  658. }
  659. ,{
  660. "path" : "pages/prevention/index",
  661. "style" :
  662. {
  663. "navigationBarTitleText": "防治系统",
  664. "enablePullDownRefresh": false,
  665. "navigationStyle":"custom"
  666. }
  667. }
  668. ,{
  669. "path" : "pages/prevention/search",
  670. "style" :
  671. {
  672. "navigationBarTitleText": "防治系统搜索",
  673. "enablePullDownRefresh": false,
  674. "navigationStyle":"custom"
  675. }
  676. }
  677. ,{
  678. "path" : "pages/prevention/equipmentdetails",
  679. "style" :
  680. {
  681. "navigationBarTitleText": "防治系统设备详细",
  682. "enablePullDownRefresh": false,
  683. "navigationStyle":"custom"
  684. }
  685. }
  686. ,{
  687. "path" : "pages/prevention/sim",
  688. "style" :
  689. {
  690. "navigationBarTitleText": "sim卡详情",
  691. "enablePullDownRefresh": false,
  692. "navigationStyle":"custom"
  693. }
  694. }
  695. ,{
  696. "path" : "pages/prevention/control",
  697. "style" :
  698. {
  699. "navigationBarTitleText": "设备控制",
  700. "enablePullDownRefresh": false,
  701. "navigationStyle":"custom"
  702. }
  703. }
  704. ,{
  705. "path" : "pages/prevention/ucharts",
  706. "style" :
  707. {
  708. "navigationBarTitleText": "历史数据",
  709. "enablePullDownRefresh": false,
  710. "navigationStyle":"custom"
  711. }
  712. }
  713. ,{
  714. "path" : "components/highcharts/highcharts",
  715. "style" :
  716. {
  717. "navigationBarTitleText": "",
  718. "enablePullDownRefresh": false
  719. }
  720. }
  721. ,{
  722. "path" : "pages/environment/index",
  723. "style" :
  724. {
  725. "navigationBarTitleText": "环境监测",
  726. "enablePullDownRefresh": false,
  727. "navigationStyle":"custom"
  728. }
  729. }
  730. ,{
  731. "path" : "pages/environment/search",
  732. "style" :
  733. {
  734. "navigationBarTitleText": "环境监测搜索",
  735. "enablePullDownRefresh": false,
  736. "navigationStyle":"custom"
  737. }
  738. }
  739. ,{
  740. "path" : "pages/environment/equipment",
  741. "style" :
  742. {
  743. "navigationBarTitleText": "环境监测设备详情",
  744. "enablePullDownRefresh": false,
  745. "navigationStyle":"custom"
  746. }
  747. }
  748. ,{
  749. "path" : "pages/environment/contros",
  750. "style" :
  751. {
  752. "navigationBarTitleText": "环境监测控制页面",
  753. "enablePullDownRefresh": false,
  754. "navigationStyle":"custom"
  755. }
  756. }
  757. ,{
  758. "path" : "pages/environment/onedaythedata",
  759. "style" :
  760. {
  761. "navigationBarTitleText": "环境检测24小时数据",
  762. "enablePullDownRefresh": false,
  763. "navigationStyle":"custom"
  764. }
  765. }
  766. ,{
  767. "path" : "pages/environment/history",
  768. "style" :
  769. {
  770. "navigationBarTitleText": "环境检测历史数据",
  771. "enablePullDownRefresh": false,
  772. "navigationStyle":"custom"
  773. }
  774. }
  775. ,{
  776. "path" : "pages/cb/cbd/equip-set/imgpage",
  777. "style" :
  778. {
  779. "navigationBarTitleText": "图片列表",
  780. "enablePullDownRefresh": false,
  781. "navigationStyle":"custom"
  782. }
  783. }
  784. ,{
  785. "path" : "pages/cb/cbd/equip-set/addimg",
  786. "style" :
  787. {
  788. "navigationBarTitleText": "手动添加",
  789. "enablePullDownRefresh": false,
  790. "navigationStyle":"custom"
  791. }
  792. }
  793. ,{
  794. "path" : "pages/cb/cbd/equip-set/historyfile",
  795. "style" :
  796. {
  797. "navigationBarTitleText": "测报灯历史记录",
  798. "enablePullDownRefresh": false,
  799. "navigationStyle":"custom"
  800. }
  801. }
  802. ,{
  803. "path" : "pages/cb/cbd/equip-set/note",
  804. "style" :
  805. {
  806. "navigationBarTitleText": "短信预警",
  807. "enablePullDownRefresh": false,
  808. "navigationStyle":"custom"
  809. }
  810. }
  811. ,{
  812. "path" : "pages/cb/cbd/equip-set/statistics",
  813. "style" :
  814. {
  815. "navigationBarTitleText": "害虫统计",
  816. "enablePullDownRefresh": false,
  817. "navigationStyle":"custom"
  818. }
  819. }
  820. ,{
  821. "path" : "pages/cb/bzy/equip-set/bzyhistoryile",
  822. "style" :
  823. {
  824. "navigationBarTitleText": "孢子仪历史记录",
  825. "enablePullDownRefresh": false,
  826. "navigationStyle":"custom"
  827. }
  828. }
  829. ,{
  830. "path" : "pages/cb/xy/equip-set/xyhistoryile",
  831. "style" :
  832. {
  833. "navigationBarTitleText": "性诱设备历史记录",
  834. "enablePullDownRefresh": false,
  835. "navigationStyle":"custom"
  836. }
  837. }
  838. ,{
  839. "path" : "pages/disandpests/index",
  840. "style" :
  841. {
  842. "navigationBarTitleText": "病虫害识别",
  843. "enablePullDownRefresh": false,
  844. "navigationStyle":"custom"
  845. }
  846. }
  847. ,{
  848. "path" : "pages/fourBase/modification",
  849. "style" :
  850. {
  851. "navigationBarTitleText": "四情基地编辑基地",
  852. "enablePullDownRefresh": false,
  853. "navigationStyle":"custom"
  854. }
  855. }
  856. ],
  857. "condition": { //模式配置,仅开发期间生效
  858. "current": 3, //当前激活的模式(list 的索引项)
  859. "list": [{
  860. "name": "about",
  861. "path": "pages/my/about/about"
  862. }, {
  863. "name": "feedback",
  864. "path": "pages/my/feedback/feedback"
  865. }, {
  866. "name": "cdIndex",
  867. "path": "pages/cb/index/index"
  868. }, {
  869. "name": "login",
  870. "path": "pages/login/login"
  871. }]
  872. },
  873. "globalStyle": {
  874. "navigationBarTextStyle": "black",
  875. "navigationBarTitleText": "大数据平台",
  876. "navigationBarBackgroundColor": "#fff",
  877. "backgroundColor": "#ff0000"
  878. },
  879. "tabBar": {
  880. "color": "#cdcdcd",
  881. "selectedColor": "#56C979",
  882. "borderStyle": "white",
  883. "list": [{
  884. "pagePath": "pages/index/index",
  885. "iconPath": "static/image/index/13.png",
  886. "selectedIconPath": "static/image/index/12.png",
  887. "text": "首页"
  888. },
  889. {
  890. "pagePath": "pages/equipList/index",
  891. "iconPath": "static/image/index/14.png",
  892. "selectedIconPath": "static/image/index/15.png",
  893. "text": "设备列表"
  894. },
  895. {
  896. "pagePath": "pages/distribution/index",
  897. "iconPath": "static/image/index/16.png",
  898. "selectedIconPath": "static/image/index/17.png",
  899. "text": "设备分布"
  900. },
  901. {
  902. "pagePath": "pages/my/index/index",
  903. "iconPath": "static/image/index/18.png",
  904. "selectedIconPath": "static/image/index/19.png",
  905. "text": "个人中心"
  906. }
  907. ]
  908. }
  909. }