Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-ces
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqinghua
wisdom-ces
Commits
cf218f22
Commit
cf218f22
authored
Jul 30, 2018
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
README
parent
966ad2f2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
165 additions
and
0 deletions
+165
-0
README.md
README.md
+165
-0
No files found.
README.md
View file @
cf218f22
项目结构
├── README.md
├── config.xml //cordova插件配置目录
├── ionic.config.json
├── ionic.starter.json
├── package-lock.json
├── package.json //项目依赖目录
├── platforms
│ └── android
│ ├── CordovaLib
│ ├── android.json
│ ├── app
│ ├── build
│ ├── build.gradle
│ ├── cordova
│ ├── gradle
│ ├── gradlew
│ ├── gradlew.bat
│ ├── platform_www
│ ├── project.properties
│ ├── settings.gradle
│ └── wrapper.gradle
├── plugins
│ ├── android.json
│ ├── cordova-plugin-app-version
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── VERSION
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── src
│ │ └── www
│ ├── cordova-plugin-device
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── doc
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── src
│ │ ├── tests
│ │ ├── types
│ │ └── www
│ ├── cordova-plugin-ionic-keyboard
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── src
│ │ └── www
│ ├── cordova-plugin-ionic-webview
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ └── src
│ ├── cordova-plugin-splashscreen
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── doc
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ ├── src
│ │ ├── tests
│ │ ├── types
│ │ └── www
│ ├── cordova-plugin-whitelist
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── README.md
│ │ ├── RELEASENOTES.md
│ │ ├── doc
│ │ ├── package.json
│ │ ├── plugin.xml
│ │ └── src
│ ├── fetch.json
│ └── ionic-plugin-keyboard
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── plugin.xml
│ ├── src
│ └── www
├── resources
│ ├── README.md
│ ├── android
│ │ ├── icon
│ │ └── splash
│ ├── icon.png
│ ├── icon.png.md5
│ ├── ios
│ │ ├── icon
│ │ └── splash
│ ├── splash.png
│ └── splash.png.md5
├── src //项目模块代码
│ ├── app //根组件代码
│ │ ├── app.component.ts
│ │ ├── app.html
│ │ ├── app.module.ts
│ │ ├── app.scss
│ │ └── main.ts
│ ├── assets //资源文件
│ │ ├── icon
│ │ ├── imgs
│ │ └── swiper
│ ├── components //自定义组件模块
│ ├── index.html
│ ├── manifest.json
│ ├── pages //项目模块
│ │ ├── activityApply
│ │ ├── activityConfirm
│ │ ├── activityDetail
│ │ ├── activityList
│ │ ├── activityTrack
│ │ ├── announcement
│ │ ├── announcementView
│ │ ├── chooseAddress
│ │ ├── contactList
│ │ ├── contract-personinfo
│ │ ├── editPersonInfo
│ │ ├── joinDetail
│ │ ├── joinPersons
│ │ ├── login
│ │ ├── modifyPassword
│ │ ├── myActivityList
│ │ ├── myReport
│ │ ├── operation-list
│ │ ├── outGoingReport
│ │ ├── outGoingReportDetail
│ │ ├── outGoingReportEdit
│ │ ├── outGoingReportView
│ │ ├── personInfo
│ │ ├── reportDetail
│ │ ├── reportTrack
│ │ ├── search
│ │ ├── tabs
│ │ └── version
│ ├── service //异常处理
│ │ ├── activityStatisticService.ts
│ │ ├── appHttpService.ts
│ │ └── appUpdateService.ts
│ ├── service-worker.js
│ └── theme //核心CSS
│ ├── icon.scss
│ └── variables.scss
├── tsconfig.json
└── tslint.json //ts规范
启动命令:
1.
npm install //安装项目依赖
2.
ionic serve //项目编译启动
安装 cordova插件命令:
ionic cordova plugin add 插件名
例如:
ionic cordova plugin add cordova-plugin-badge
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment