Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
app
Project
Project
Details
Activity
Releases
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
hel-guide
app
Commits
457271ae
Commit
457271ae
authored
Aug 15, 2017
by
宋帮潮
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://hel.hand-china.com/hel-guide/app
parents
a0f4334d
402f8f7b
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
442 additions
and
192 deletions
+442
-192
app.md
ionic/app.md
+138
-54
gulpfile.md
ionic/gulpfile.md
+48
-19
hooks.md
ionic/hooks.md
+35
-16
node-modules.md
ionic/node-modules.md
+29
-13
platforms.md
ionic/platforms.md
+41
-19
plugins.md
ionic/plugins.md
+43
-20
publish.md
ionic/publish.md
+69
-33
resources.md
ionic/resources.md
+39
-18
No files found.
ionic/app.md
View file @
457271ae
<<<<<<< HEAD
# app目录介绍
app:.
├─img
│
├─lib
│
├─pages
│ ├─applications
│ │
│ ├─charts
│ │
│ ├─login
│ │
│ ├─myInfo
│ │
│ ├─tab
│ │
│ └─tools
│
├─scripts
│
│
├─scss
│
│
└─theme
---
*
### I. app
\_
子目录(列表)
*
1.1.config
\_
目录
*
1.2.img
\_
目录
*
1.3.lib
\_
目录
*
1.4.pages
\_
目录
*
1.5.scripts
\_
目录
*
1.4.scss
\_
目录
*
1.5.theme
\_
目录
---
*
### II. app
\_
子目录(简介)
*
1.1.config
\_
目录
* `存放配置文件`
*
1.2.img
\_
目录
* `项目中图片的存放路径`
*
1.3.lib
\_
目录
* `项目自动生成`
*
1.4.pages
\_
目录
* `app前台页面html文件,和js文件`
*
1.5.scripts
\_
目录
* `项目所引用的js文件`
*
1.4.scss
\_
目录
* `项目的全局样式文件(scss文件)`
*
1.5.theme
\_
目录
* `项目页面的样式引入,例子:(@import "../pages/charts/contract-chart/con-chart-query";)`
=======
# app目录介绍
# app目录介绍
---
---
...
@@ -52,3 +135,4 @@
...
@@ -52,3 +135,4 @@
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/gulpfile.md
View file @
457271ae
<<<<<<< HEAD
# gulpfile.js文件介绍
---
*
### gulpfile.js_文件
-
`
gulp命令`
- `gulp-jshint 检查代码,打印报告信息`
-
`
gulp-useref html页面中的js,css引用进行合并,压缩等操作`
-
`
gulp sass 把 Sass 编译成 CSS`
-
`
gulp-concat 合并javascript文件,减少网络请求. `
-
`
gulp-uglify 压缩javascript文件,减小文件大小`
- `gulp-rename 把处理好的文件存放到指定的位置之前,我们可以先去重新命名一下它`
-
`
gulp-cssnano 优化 css 的插件如空白转换`
-
`
gulp-run-sequence 控制多个任务进行顺序执行或者并行执行插件安装`
-
`
gulp-clean 清理档案`
-
`
gulp-notify 显示报错信息和报错后不终止当前gulp任务`
-
`
gulp-ng-config 提示信息`
-
`
tiny-lr 自动刷新页面`
-
`
lazypipe 提出流中的公共部分`
=======
# gulpfile.js文件介绍
# gulpfile.js文件介绍
...
@@ -17,3 +45,4 @@
...
@@ -17,3 +45,4 @@
-
`gulp-gzip 压缩zip`
-
`gulp-gzip 压缩zip`
-
`gulp-imagemin 压缩png/jpg/git/svg 格式图片文件`
-
`gulp-imagemin 压缩png/jpg/git/svg 格式图片文件`
-
`gulp-clean 清理档案`
-
`gulp-clean 清理档案`
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/hooks.md
View file @
457271ae
<<<<<<< HEAD
# hooks目录介绍
# hooks目录介绍
...
@@ -14,3 +15,21 @@
...
@@ -14,3 +15,21 @@
=======
# hooks目录介绍
---
*
### I. hooks_目录
- 介绍: hooks 文件夹是伴随 Cordova 的安装 自动生成的文件夹 , 该文件夹有脚本 可以定制 Cordova 命令 。 一般情况下 , 不对该文件夹中的文件进行更改 。
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/node-modules.md
View file @
457271ae
<<<<<<< HEAD
# node-modules目录介绍
# node-modules目录介绍
...
@@ -11,3 +12,18 @@
...
@@ -11,3 +12,18 @@
-
介绍: devDependencies与Dependencies都是依赖。npm install就会把里面二者所有的模块都安装到node_modules。
-
介绍: devDependencies与Dependencies都是依赖。npm install就会把里面二者所有的模块都安装到node_modules。
=======
# node-modules目录介绍
---
*
### I. node-modules_目录
-
介绍: devDependencies与Dependencies都是依赖。npm install就会把里面二者所有的模块都安装到node_modules。
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/platforms.md
View file @
457271ae
<<<<<<< HEAD
# platforms目录介绍
# platforms目录介绍
...
@@ -17,3 +18,24 @@
...
@@ -17,3 +18,24 @@
=======
# platforms目录介绍
---
*
### I. platforms_目录
-
`自动生成`
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/plugins.md
View file @
457271ae
<<<<<<< HEAD
# plugins目录介绍
# plugins目录介绍
...
@@ -18,3 +19,25 @@
...
@@ -18,3 +19,25 @@
=======
# plugins目录介绍
---
*
### I. plugins目录介绍
-
介绍: plugins 文件夹是项目中所要的插件。如 相机插件,极光推送 等等
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
ionic/publish.md
View file @
457271ae
<<<<<<< HEAD
# publish目录介绍
# publish目录介绍
...
@@ -31,4 +32,39 @@
...
@@ -31,4 +32,39 @@
=======
# publish目录介绍
---
*
### I. pubish_子目录(列表)
*
1.1.develop_目录
-
`生产环境目录(config.xml的是控制cordova应用程序的行为的许多方面的全局配置文件)`
*
1.2.product_目录
-
`正式环境目录,config.xml是全局配置文件(包括一些插件的配置等)`
`
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
\ No newline at end of file
ionic/resources.md
View file @
457271ae
<<<<<<< HEAD
# resources目录介绍
# resources目录介绍
...
@@ -16,3 +17,23 @@
...
@@ -16,3 +17,23 @@
- `ios(app图标,app启动图片)`
- `ios(app图标,app启动图片)`
=======
# resources目录介绍
---
*
### I. resources_子目录(列表)
*
1.1.android_目录
-
`安卓(app图标,app启动图片)`
*
1.2.ios_目录
-
`ios(app图标,app启动图片)`
>>>>>>> b086492be6a234e8e7f1408fcbeec39e95809fd5
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