``` . ├── common #全局工具类 │ ├── api.js │ ├── demo.scss │ ├── mixin.js │ └── props.js │ └── tool.css ├── components #全局组件 │ └── yx-navbar │ └── yx-navbar.vue ├── pages #页面 │ ├── home #页面A │ │ ├── ... │ │ ├── ... │ ├── rank #页面B │ │ ├── ... │ │ ├── ... ├── static #静态目录 │ ├── app-plus │ │ └── mp-html │ ├── common │ │ └── js #IAM配置文件存放目录 │ ├── img │ └── uview │ ├── common │ └── example ├── store │ └── index.js ├── uni_modules │ └── uview-ui #uView2.0主包 │ ├── LICENSE │ ├── README.md │ ├── changelog.md │ ├── components #所有的组件 │ ├── index.js │ ├── index.scss │ ├── libs │ ├── package.json │ └── theme.scss ├── unpackage │ └── res │ └── icons ├── util #工具类封装 │ └── request │ ├── index.js │ ├── requestInterceptors.js │ └── responseInterceptors.js ├── App.vue ├── LICENSE ├── main.js ├── manifest.json ├── package-lock.json ├── pages.json #页面配置 ├── package.json ├── README.md ├── template.h5.html #h5模板 ├── tree.md ├── uni.scss └── vue.config.js ```