├── README.md ├── app.js ├── app.json ├── app.wxss ├── custom-tab-bar ├── index.js ├── index.json ├── index.wxml └── index.wxss ├── image ├── icon_API.png ├── icon_API_HL.png ├── icon_component.png ├── icon_component_HL.png └── icon_release.png ├── pages ├── add │ ├── add.js │ ├── add.json │ ├── add.wxml │ └── add.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── project.config.json ├── sitemap.json └── utils └── util.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/app.wxss -------------------------------------------------------------------------------- /custom-tab-bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/custom-tab-bar/index.js -------------------------------------------------------------------------------- /custom-tab-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /custom-tab-bar/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/custom-tab-bar/index.wxml -------------------------------------------------------------------------------- /custom-tab-bar/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/custom-tab-bar/index.wxss -------------------------------------------------------------------------------- /image/icon_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/image/icon_API.png -------------------------------------------------------------------------------- /image/icon_API_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/image/icon_API_HL.png -------------------------------------------------------------------------------- /image/icon_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/image/icon_component.png -------------------------------------------------------------------------------- /image/icon_component_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/image/icon_component_HL.png -------------------------------------------------------------------------------- /image/icon_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/image/icon_release.png -------------------------------------------------------------------------------- /pages/add/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/add/add.js -------------------------------------------------------------------------------- /pages/add/add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/add/add.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/add/add.wxml -------------------------------------------------------------------------------- /pages/add/add.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/add/add.wxss -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/logs/logs.js -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/pages/logs/logs.wxml -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/project.config.json -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/sitemap.json -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtjsoft/customTabBar/HEAD/utils/util.js --------------------------------------------------------------------------------