|
@@ -0,0 +1,38 @@
|
|
|
|
|
+# i2School 员工端
|
|
|
|
|
+
|
|
|
|
|
+# 技术栈
|
|
|
|
|
+- **Vue2.0**: https://cn.vuejs.org/index.html
|
|
|
|
|
+- **Vuex**: https://vuex.vuejs.org/zh/
|
|
|
|
|
+- **vuex-persistedstate**: https://github.com/robinvdvleuten/vuex-persistedstate
|
|
|
|
|
+- **uView**: https://www.uviewui.com/
|
|
|
|
|
+- **i18n**: https://kazupon.github.io/vue-i18n/zh/
|
|
|
|
|
+
|
|
|
|
|
+# How to use
|
|
|
|
|
+```
|
|
|
|
|
+1. https://git.i2edu.net/cee.yang/i2-school-employee-uniapp.git
|
|
|
|
|
+2. cd i2-school-employee-uniapp
|
|
|
|
|
+3. npm install # 导入 Vue 第三方包
|
|
|
|
|
+4. HBuilder 导入项目, 自动引入第三方包
|
|
|
|
|
+5. HBuilder -> Run/Build
|
|
|
|
|
+```
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+# 目录介绍
|
|
|
|
|
+```
|
|
|
|
|
+.
|
|
|
|
|
+├── api /// api 接口目录
|
|
|
|
|
+├── common /// 公共脚本
|
|
|
|
|
+├── components /// 公共组件
|
|
|
|
|
+├── i18n /// 国际化目录
|
|
|
|
|
+├── node_modules /// Vue 依赖与插件目录
|
|
|
|
|
+├── pages /// 页面目录
|
|
|
|
|
+├── static /// 静态资源目录
|
|
|
|
|
+├── store /// 数据持久化目录
|
|
|
|
|
+├── uni_modules /// HBuilder 导入插件目录, 如需要改写插件内容, 请手动导入到 components 再修改
|
|
|
|
|
+├── unpackage /// 打包文件, 请勿手动编写
|
|
|
|
|
+|
|
|
|
|
|
+├ main.js /// 程序入口
|
|
|
|
|
+├ manifest.json /// UniApp 配置文件
|
|
|
|
|
+├ package.json /// 第三方依赖
|
|
|
|
|
+└ uni.scss /// 公共样式
|
|
|
|
|
+```
|