pages.json 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. // "condition": { //模式配置,仅开发期间生效
  6. // "current": 0, //当前激活的模式(list 的索引项)
  7. // "list": [{
  8. // "name": "test", //模式名称
  9. // "path": "pages/componentsC/test/index", //启动页面,必选
  10. // "query": "uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1" //启动参数,在页面的onLoad函数里面得到
  11. // }]
  12. // },
  13. "pages": [
  14. // 首页
  15. {
  16. "path" : "pages/home/index",
  17. "style" :
  18. {
  19. "navigationBarTitleText": "首页"
  20. }
  21. },
  22. // 消息
  23. {
  24. "path" : "pages/msg/index",
  25. "style" :
  26. {
  27. "navigationBarTitleText": "消息"
  28. }
  29. },
  30. // 我的
  31. {
  32. "path" : "pages/me/index",
  33. "style" :
  34. {
  35. "navigationBarTitleText": "我的"
  36. }
  37. },
  38. //登录
  39. {
  40. "path" : "pages/login/index"
  41. },
  42. // 演示-组件
  43. {
  44. "path": "pages/example/components",
  45. "style": {
  46. "navigationBarTitleText": "组件"
  47. }
  48. },
  49. // avatarCropper-头像裁剪
  50. {
  51. "path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
  52. "style": {
  53. "navigationBarTitleText": "头像裁剪",
  54. "navigationBarBackgroundColor": "#000000"
  55. }
  56. },
  57. // 演示-工具
  58. {
  59. "path": "pages/example/js",
  60. "style": {
  61. "navigationBarTitleText": "工具"
  62. }
  63. },
  64. // 演示-模板
  65. {
  66. "path": "pages/example/template",
  67. "style": {
  68. "navigationBarTitleText": "模板"
  69. }
  70. },
  71. // fullScreen-压窗屏
  72. {
  73. "path": "uview-ui/components/u-full-screen/u-full-screen",
  74. "style": {
  75. "navigationStyle": "custom",
  76. "app-plus": {
  77. "animationType": "fade-in",
  78. "background": "transparent",
  79. "backgroundColor": "rgba(0,0,0,0)",
  80. "popGesture": "none"
  81. }
  82. }
  83. }
  84. ],
  85. "subPackages": [{
  86. "root": "pages/componentsC",
  87. "pages": [
  88. // test-测试
  89. {
  90. "path": "test/index",
  91. "style": {
  92. "navigationBarTitleText": "Test"
  93. // "navigationStyle": "custom" ,// 隐藏系统导航栏
  94. // "navigationBarTextStyle": "white" // 状态栏字体为白色
  95. }
  96. },
  97. // gap-间隔槽
  98. {
  99. "path": "gap/index",
  100. "style": {
  101. "navigationBarTitleText": "gap-间隔槽"
  102. }
  103. },
  104. // subsection分段器
  105. {
  106. "path": "subsection/index",
  107. "style": {
  108. "navigationBarTitleText": "subsection-分段器"
  109. }
  110. },
  111. // section 查看更多
  112. {
  113. "path": "section/index",
  114. "style": {
  115. "navigationBarTitleText": "section-查看更多"
  116. }
  117. },
  118. // link链接
  119. {
  120. "path": "link/index",
  121. "style": {
  122. "navigationBarTitleText": "link-链接"
  123. }
  124. },
  125. // mask遮罩层
  126. {
  127. "path": "mask/index",
  128. "style": {
  129. "navigationBarTitleText": "mask-遮罩层"
  130. }
  131. },
  132. // countTo数字滚动
  133. {
  134. "path": "countTo/index",
  135. "style": {
  136. "navigationBarTitleText": "countTo-数字滚动"
  137. }
  138. },
  139. // color颜色
  140. {
  141. "path": "color/index",
  142. "style": {
  143. "navigationBarTitleText": "color-颜色"
  144. }
  145. },
  146. // countDown倒计时
  147. {
  148. "path": "countDown/index",
  149. "style": {
  150. "navigationBarTitleText": "countDown-倒计时"
  151. }
  152. },
  153. // progress进度条
  154. {
  155. "path": "progress/index",
  156. "style": {
  157. "navigationBarTitleText": "progress-进度条"
  158. }
  159. },
  160. // alertTips警告提示
  161. {
  162. "path": "alertTips/index",
  163. "style": {
  164. "navigationBarTitleText": "alertTips-警告提示"
  165. }
  166. },
  167. // badge 徽标数
  168. {
  169. "path": "badge/index",
  170. "style": {
  171. "navigationBarTitleText": "badge-徽标数"
  172. }
  173. },
  174. // button按钮
  175. {
  176. "path": "button/index",
  177. "style": {
  178. "navigationBarTitleText": "button-按钮"
  179. }
  180. },
  181. // collapse折叠面板
  182. {
  183. "path": "collapse/index",
  184. "style": {
  185. "navigationBarTitleText": "collapse-折叠面板"
  186. }
  187. },
  188. // actionSheet操作菜单
  189. {
  190. "path": "actionSheet/index",
  191. "style": {
  192. "navigationBarTitleText": "actionSheet-操作菜单"
  193. }
  194. },
  195. // messageInput验证码输入
  196. {
  197. "path": "messageInput/index",
  198. "style": {
  199. "navigationBarTitleText": "messageInput-验证码输入"
  200. }
  201. },
  202. // popup弹窗
  203. {
  204. "path": "popup/index",
  205. "style": {
  206. "navigationBarTitleText": "popup-弹窗"
  207. }
  208. },
  209. // listCell
  210. {
  211. "path": "cell/index",
  212. "style": {
  213. "navigationBarTitleText": "listCell-列表"
  214. }
  215. },
  216. // numberBox数字输入框
  217. {
  218. "path": "numberBox/index",
  219. "style": {
  220. "navigationBarTitleText": "numberBox-步进器"
  221. }
  222. },
  223. // grid宫格布局
  224. {
  225. "path": "grid/index",
  226. "style": {
  227. "navigationBarTitleText": "grid-宫格布局"
  228. }
  229. },
  230. // layout栅格布局
  231. {
  232. "path": "layout/index",
  233. "style": {
  234. "navigationBarTitleText": "layout-栅格布局"
  235. }
  236. },
  237. // 加载更多
  238. {
  239. "path": "loadmore/index",
  240. "style": {
  241. "navigationBarTitleText": "loadmore-加载更多"
  242. }
  243. }
  244. ]
  245. },
  246. {
  247. "root": "pages/template",
  248. "pages": [
  249. // wxCenter 仿微信个人中心
  250. {
  251. "path": "wxCenter/index",
  252. "style": {
  253. "navigationBarTitleText": "wxCenter 仿微信个人中心",
  254. "navigationStyle": "custom"
  255. }
  256. },
  257. // keyboardPay 自定义键盘支付
  258. {
  259. "path": "keyboardPay/index",
  260. "style": {
  261. "navigationBarTitleText": "keyboardPay 自定义键盘支付"
  262. }
  263. },
  264. // douyin 仿抖音
  265. // {
  266. // "path": "douyin/index",
  267. // "style": {
  268. // "navigationBarTitleText": "douyin 仿抖音"
  269. // }
  270. // },
  271. // mallMenu商城分类
  272. {
  273. "path": "mallMenu/index2",
  274. "style": {
  275. "navigationBarTitleText": "mallMenu-商城分类"
  276. }
  277. },
  278. // mallMenu商城分类
  279. {
  280. "path": "mallMenu/index1",
  281. "style": {
  282. "navigationBarTitleText": "mallMenu-商城分类"
  283. }
  284. },
  285. // coupon优惠券
  286. {
  287. "path": "coupon/index",
  288. "style": {
  289. "navigationBarTitleText": "coupon-优惠券"
  290. }
  291. },
  292. {
  293. "path": "login/index",
  294. "style": {
  295. "navigationBarTitleText": "美团登录"
  296. }
  297. },
  298. // 城市选择
  299. {
  300. "path": "citySelect/index",
  301. "style": {
  302. "navigationBarTitleText": "城市选择"
  303. }
  304. },
  305. // SubmitBar提交订单栏
  306. {
  307. "path": "submitBar/index",
  308. "style": {
  309. "navigationBarTitleText": "提交订单栏"
  310. }
  311. },
  312. // comment评论
  313. {
  314. "path": "comment/index",
  315. "style": {
  316. "navigationBarTitleText": "评论"
  317. }
  318. },
  319. // comment评论详情
  320. {
  321. "path": "comment/reply",
  322. "style": {
  323. "navigationBarTitleText": "评论详情"
  324. }
  325. },
  326. // order订单
  327. {
  328. "path": "order/index",
  329. "style": {
  330. "navigationBarTitleText": "订单"
  331. }
  332. },
  333. // login登录获取验证码
  334. {
  335. "path": "login/code",
  336. "style": {
  337. "navigationBarTitleText": "登录获取验证码"
  338. }
  339. },
  340. // address用户地址
  341. {
  342. "path": "address/index",
  343. "style": {
  344. "navigationBarTitleText": "用户地址"
  345. }
  346. },
  347. // address添加用户地址
  348. {
  349. "path": "address/addSite",
  350. "style": {
  351. "navigationBarTitleText": "添加用户地址"
  352. }
  353. }
  354. ]
  355. },
  356. {
  357. "root": "pages/library",
  358. "pages": [
  359. // debounce-节流防抖
  360. {
  361. "path": "debounce/index",
  362. "style": {
  363. "navigationBarTitleText": "throttle | debounce-节流防抖"
  364. }
  365. },
  366. // deepClone-对象深度克隆
  367. {
  368. "path": "deepClone/index",
  369. "style": {
  370. "navigationBarTitleText": "deepClone-对象深度克隆"
  371. }
  372. },
  373. // deepMerge-对象深度合并
  374. {
  375. "path": "deepMerge/index",
  376. "style": {
  377. "navigationBarTitleText": "deepMerge-对象深度合并"
  378. }
  379. },
  380. // getRect-元素节点
  381. {
  382. "path": "getRect/index",
  383. "style": {
  384. "navigationBarTitleText": "getRect-元素节点"
  385. }
  386. },
  387. // timeFrom-多久之前
  388. {
  389. "path": "timeFrom/index",
  390. "style": {
  391. "navigationBarTitleText": "timeFrom-多久之前"
  392. }
  393. },
  394. // globalData-全局变量
  395. {
  396. "path": "globalVariable/globalData",
  397. "style": {
  398. "navigationBarTitleText": "globalData-全局变量"
  399. }
  400. },
  401. // prototype-全局变量
  402. {
  403. "path": "globalVariable/prototype",
  404. "style": {
  405. "navigationBarTitleText": "prototype-全局变量"
  406. }
  407. },
  408. // vuex-全局变量
  409. {
  410. "path": "globalVariable/vuex",
  411. "style": {
  412. "navigationBarTitleText": "vuex-全局变量"
  413. }
  414. },
  415. // globalVariable-全局变量
  416. {
  417. "path": "globalVariable/index",
  418. "style": {
  419. "navigationBarTitleText": "globalVariable-全局变量"
  420. }
  421. },
  422. // http-请求
  423. {
  424. "path": "http/index",
  425. "style": {
  426. "navigationBarTitleText": "http-请求"
  427. }
  428. },
  429. // test-规则验证
  430. {
  431. "path": "test/index",
  432. "style": {
  433. "navigationBarTitleText": "test-规则验证"
  434. }
  435. },
  436. // mpShare-小程序分享
  437. {
  438. "path": "mpShare/index",
  439. "style": {
  440. "navigationBarTitleText": "mpShare-小程序分享"
  441. }
  442. },
  443. // color-JS调用颜色
  444. {
  445. "path": "color/index",
  446. "style": {
  447. "navigationBarTitleText": "color-JS调用颜色"
  448. }
  449. },
  450. // trim-去除空格
  451. {
  452. "path": "trim/index",
  453. "style": {
  454. "navigationBarTitleText": "trim-去除空格"
  455. }
  456. },
  457. // random-随机数生成
  458. {
  459. "path": "random/index",
  460. "style": {
  461. "navigationBarTitleText": "random-随机数生成"
  462. }
  463. },
  464. // md5加密
  465. {
  466. "path": "md5/index",
  467. "style": {
  468. "navigationBarTitleText": "md5-加密"
  469. }
  470. },
  471. // colorSwitch颜色转换
  472. {
  473. "path": "colorSwitch/index",
  474. "style": {
  475. "navigationBarTitleText": "colorSwitch-颜色转换"
  476. }
  477. },
  478. // randomArray数组乱序
  479. {
  480. "path": "randomArray/index",
  481. "style": {
  482. "navigationBarTitleText": "randomArray-数组乱序"
  483. }
  484. },
  485. // guid全局唯一标识符
  486. {
  487. "path": "guid/index",
  488. "style": {
  489. "navigationBarTitleText": "guid-全局唯一标识符"
  490. }
  491. },
  492. // timeFormat时间格式化
  493. {
  494. "path": "timeFormat/index",
  495. "style": {
  496. "navigationBarTitleText": "timeFormat-时间格式化"
  497. }
  498. }, // route-路由
  499. {
  500. "path": "route/index",
  501. "style": {
  502. "navigationBarTitleText": "route-路由"
  503. }
  504. },
  505. // route-路由跳转
  506. {
  507. "path": "route/routeTo",
  508. "style": {
  509. "navigationBarTitleText": "route-路由跳转"
  510. }
  511. },
  512. // queryParams-对象转URL参数
  513. {
  514. "path": "queryParams/index",
  515. "style": {
  516. "navigationBarTitleText": "queryParams-对象转URL参数"
  517. }
  518. }
  519. ]
  520. },
  521. {
  522. "root": "pages/componentsA",
  523. "pages": [
  524. // parse-富文本解析器
  525. {
  526. "path": "parse/index",
  527. "style": {
  528. "navigationBarTitleText": "parse-富文本解析器"
  529. }
  530. },
  531. // backTop-返回顶部
  532. {
  533. "path": "backTop/index",
  534. "style": {
  535. "navigationBarTitleText": "backTop-返回顶部"
  536. }
  537. },
  538. // calendar-日历
  539. {
  540. "path": "calendar/index",
  541. "style": {
  542. "navigationBarTitleText": "calendar-日历"
  543. }
  544. },
  545. // form-表单
  546. {
  547. "path": "form/index",
  548. "style": {
  549. "navigationBarTitleText": "form-表单"
  550. }
  551. },
  552. // select-列选择器
  553. {
  554. "path": "select/index",
  555. "style": {
  556. "navigationBarTitleText": "select-列选择器"
  557. }
  558. },
  559. // slider-滑动选择器
  560. {
  561. "path": "slider/index",
  562. "style": {
  563. "navigationBarTitleText": "slider-滑动选择器"
  564. }
  565. },
  566. // fullScreen-压窗屏
  567. {
  568. "path": "fullScreen/index",
  569. "style": {
  570. "navigationBarTitleText": "fullScreen-压窗屏"
  571. }
  572. },
  573. // navbar-自定义导航栏
  574. {
  575. "path": "navbar/index",
  576. "style": {
  577. // "navigationBarTitleText": "navbar-自定义导航栏",
  578. "navigationStyle": "custom", // 隐藏系统导航栏
  579. "navigationBarTextStyle": "white" // 状态栏字体为白色
  580. }
  581. },
  582. // field-输入框
  583. {
  584. "path": "field/index",
  585. "style": {
  586. "navigationBarTitleText": "field-输入框"
  587. }
  588. },
  589. // modal-模态框
  590. {
  591. "path": "modal/index",
  592. "style": {
  593. "navigationBarTitleText": "modal-模态框"
  594. }
  595. },
  596. // indexList索引列表
  597. {
  598. "path": "indexList/index",
  599. "style": {
  600. "navigationBarTitleText": "indexList-索引列表"
  601. }
  602. },
  603. // empty内容为空
  604. {
  605. "path": "empty/index",
  606. "style": {
  607. "navigationBarTitleText": "empty-内容为空"
  608. }
  609. },
  610. // avatarCropper-头像裁剪
  611. {
  612. "path": "avatarCropper/index",
  613. "style": {
  614. "navigationBarTitleText": "avatarCropper-头像裁剪"
  615. }
  616. }, // noNetwork没有网络
  617. {
  618. "path": "noNetwork/index",
  619. "style": {
  620. "navigationBarTitleText": "noNetwork-没有网络"
  621. }
  622. }, // icon字体图标
  623. {
  624. "path": "icon/index",
  625. "style": {
  626. "navigationBarTitleText": "icon-字体图标"
  627. }
  628. }, // avatar-用户头像展示
  629. {
  630. "path": "avatar/index",
  631. "style": {
  632. "navigationBarTitleText": "avatar-用户头像展示"
  633. }
  634. }, // keyboard键盘
  635. {
  636. "path": "keyboard/index",
  637. "style": {
  638. "navigationBarTitleText": "keyboard-键盘"
  639. }
  640. }, // 图片懒加载
  641. {
  642. "path": "lazyLoad/index",
  643. "style": {
  644. "navigationBarTitleText": "lazyLoad-懒加载"
  645. }
  646. },
  647. // tabs切换
  648. {
  649. "path": "tabs/index",
  650. "style": {
  651. "navigationBarTitleText": "Tabs-切换"
  652. }
  653. },
  654. // tag标签
  655. {
  656. "path": "tag/index",
  657. "style": {
  658. "navigationBarTitleText": "tag-标签"
  659. }
  660. },
  661. // timeLine时间轴
  662. {
  663. "path": "timeLine/index",
  664. "style": {
  665. "navigationBarTitleText": "timeLine-时间轴"
  666. }
  667. },
  668. // toast轻提示
  669. {
  670. "path": "toast/index",
  671. "style": {
  672. "navigationBarTitleText": "toast-轻提示"
  673. }
  674. },
  675. // topTips消息提示
  676. {
  677. "path": "topTips/index",
  678. "style": {
  679. "navigationBarTitleText": "topTips-消息提示"
  680. }
  681. },
  682. // Code-验证码倒计时
  683. {
  684. "path": "verificationCode/index",
  685. "style": {
  686. "navigationBarTitleText": "Code-验证码倒计时"
  687. }
  688. }
  689. ]
  690. },
  691. {
  692. "root": "pages/componentsB",
  693. "pages": [
  694. // dropdown-下拉菜单
  695. {
  696. "path": "dropdown/index",
  697. "style": {
  698. "navigationBarTitleText": "dropdown-下拉菜单"
  699. }
  700. },
  701. // tabbar-底部导航栏
  702. {
  703. "path": "tabbar/index",
  704. "style": {
  705. "navigationBarTitleText": "tabbar-底部导航栏"
  706. }
  707. },
  708. // line-线条
  709. {
  710. "path": "line/index",
  711. "style": {
  712. "navigationBarTitleText": "line-线条"
  713. }
  714. },
  715. // image-图片
  716. {
  717. "path": "image/index",
  718. "style": {
  719. "navigationBarTitleText": "image-图片"
  720. }
  721. },
  722. // card-卡片
  723. {
  724. "path": "card/index",
  725. "style": {
  726. "navigationBarTitleText": "card-卡片"
  727. }
  728. },
  729. // divider-分割线
  730. {
  731. "path": "divider/index",
  732. "style": {
  733. "navigationBarTitleText": "divider-分割线"
  734. }
  735. },
  736. // picker选择器
  737. {
  738. "path": "picker/index",
  739. "style": {
  740. "navigationBarTitleText": "picker-选择器"
  741. }
  742. }, // noticeBar通告栏
  743. {
  744. "path": "noticeBar/index",
  745. "style": {
  746. "navigationBarTitleText": "noticeBar-通告栏"
  747. }
  748. },
  749. // checkbox-复选框
  750. {
  751. "path": "checkbox/index",
  752. "style": {
  753. "navigationBarTitleText": "checkbox-复选框"
  754. }
  755. },
  756. // radio-单选框
  757. {
  758. "path": "radio/index",
  759. "style": {
  760. "navigationBarTitleText": "radio-单选框"
  761. }
  762. },
  763. // loading-加载动画
  764. {
  765. "path": "loading/index",
  766. "style": {
  767. "navigationBarTitleText": "loading-加载动画"
  768. }
  769. },
  770. // switch-开关选择器
  771. {
  772. "path": "switch/index",
  773. "style": {
  774. "navigationBarTitleText": "switch-开关选择器"
  775. }
  776. },
  777. // 骨架屏
  778. {
  779. "path": "skeleton/index",
  780. "style": {
  781. "navigationBarTitleText": "skeleton-骨架屏"
  782. }
  783. }, // upload上传
  784. {
  785. "path": "upload/index",
  786. "style": {
  787. "navigationBarTitleText": "upload-上传"
  788. }
  789. },
  790. // waterfall瀑布流
  791. // #ifndef MP-TOUTIAO
  792. {
  793. "path": "waterfall/index",
  794. "style": {
  795. "navigationBarTitleText": "waterfall-瀑布流"
  796. }
  797. },
  798. // #endif
  799. // table表格
  800. {
  801. "path": "table/index",
  802. "style": {
  803. "navigationBarTitleText": "table-表格"
  804. }
  805. },
  806. // rate评分
  807. {
  808. "path": "rate/index",
  809. "style": {
  810. "navigationBarTitleText": "rate-评分"
  811. }
  812. },
  813. // readMore显示更多
  814. {
  815. "path": "readMore/index",
  816. "style": {
  817. "navigationBarTitleText": "readMore-查看更多"
  818. }
  819. },
  820. // search搜索框
  821. {
  822. "path": "search/index",
  823. "style": {
  824. "navigationBarTitleText": "search-搜索框"
  825. }
  826. },
  827. // steps步骤条
  828. {
  829. "path": "steps/index",
  830. "style": {
  831. "navigationBarTitleText": "steps-步骤条"
  832. }
  833. },
  834. // sticky吸顶
  835. {
  836. "path": "sticky/index",
  837. "style": {
  838. "navigationBarTitleText": "sticky-吸顶"
  839. }
  840. },
  841. // swiper轮播图
  842. {
  843. "path": "swiper/index",
  844. "style": {
  845. "navigationBarTitleText": "swiper-轮播图"
  846. }
  847. },
  848. // swipeAction-左滑删除
  849. {
  850. "path": "swipeAction/index",
  851. "style": {
  852. "navigationBarTitleText": "swipeAction-左滑删除"
  853. }
  854. }
  855. ]
  856. }
  857. ],
  858. "preloadRule": {
  859. "pages/example/components": {
  860. "network": "all",
  861. "packages": ["pages/componentsA", "pages/componentsB", "pages/componentsC"]
  862. }
  863. },
  864. "globalStyle": {
  865. "navigationBarTextStyle": "black",
  866. "navigationBarTitleText": "uView",
  867. "navigationBarBackgroundColor": "#FFFFFF",
  868. "backgroundColor": "#FFFFFF"
  869. },
  870. "tabBar": {
  871. // "color": "#909399",
  872. // "selectedColor": "#303133",
  873. // "backgroundColor": "#FFFFFF",
  874. // "borderStyle": "black",
  875. // "list": [{
  876. // "pagePath": "pages/example/components",
  877. // "iconPath": "static/uview/example/component.png",
  878. // "selectedIconPath": "static/uview/example/component_select.png",
  879. // "text": "组件"
  880. // },
  881. // {
  882. // "pagePath": "pages/example/js",
  883. // "iconPath": "static/uview/example/js.png",
  884. // "selectedIconPath": "static/uview/example/js_select.png",
  885. // "text": "工具"
  886. // },
  887. // {
  888. // "pagePath": "pages/example/template",
  889. // "iconPath": "static/uview/example/template.png",
  890. // "selectedIconPath": "static/uview/example/template_select.png",
  891. // "text": "模板"
  892. // }
  893. // ]
  894. "list": [{
  895. "pagePath": "pages/home/index"
  896. },
  897. {
  898. "pagePath": "pages/msg/index"
  899. },
  900. {
  901. "pagePath": "pages/me/index"
  902. }
  903. ]
  904. }
  905. }