pages.json 19 KB

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