"
47 | ],
48 | "schemes" : "euler-demo"
49 | },
50 | "ios" : {
51 | "urltypes" : "euler-demo",
52 | "idfa" : false
53 | },
54 | /* ios打包配置 */
55 | "sdkConfigs" : {
56 | "push" : {
57 | "unipush" : {}
58 | }
59 | },
60 | "icons" : {
61 | "android" : {
62 | "xhdpi" : "",
63 | "hdpi" : "",
64 | "xxhdpi" : "",
65 | "xxxhdpi" : ""
66 | },
67 | "ios" : {
68 | "iphone" : {
69 | "app@2x" : "",
70 | "app@3x" : "",
71 | "notification@2x" : "",
72 | "notification@3x" : "",
73 | "settings@2x" : "",
74 | "settings@3x" : "",
75 | "spotlight@2x" : "",
76 | "spotlight@3x" : ""
77 | },
78 | "appstore" : "",
79 | "ipad" : {
80 | "app" : "",
81 | "app@2x" : "",
82 | "notification" : "",
83 | "notification@2x" : "",
84 | "proapp@2x" : "",
85 | "settings" : "",
86 | "settings@2x" : "",
87 | "spotlight" : "",
88 | "spotlight@2x" : ""
89 | }
90 | }
91 | }
92 | }
93 | },
94 | /* SDK配置 */
95 | "quickapp" : {},
96 | /* 快应用特有相关 */
97 | "mp-weixin" : {
98 | "appid" : "",
99 | "setting" : {
100 | "urlCheck" : true,
101 | "es6" : false
102 | }
103 | },
104 | "mp-toutiao" : {
105 | "appid" : ""
106 | },
107 | "h5" : {
108 | "router" : {
109 | "base" : "/umobile/"
110 | }
111 | }
112 | }
113 |
--------------------------------------------------------------------------------
/node_modules/.bin/prettier:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3 |
4 | case `uname` in
5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6 | esac
7 |
8 | if [ -x "$basedir/node" ]; then
9 | "$basedir/node" "$basedir/../prettier/bin-prettier.js" "$@"
10 | ret=$?
11 | else
12 | node "$basedir/../prettier/bin-prettier.js" "$@"
13 | ret=$?
14 | fi
15 | exit $ret
16 |
--------------------------------------------------------------------------------
/node_modules/.bin/prettier.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\prettier\bin-prettier.js" %*
3 | ) ELSE (
4 | @SETLOCAL
5 | @SET PATHEXT=%PATHEXT:;.JS;=;%
6 | node "%~dp0\..\prettier\bin-prettier.js" %*
7 | )
--------------------------------------------------------------------------------
/node_modules/prettier/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | Opinionated Code Formatter
4 |
5 |
6 |
7 | JavaScript
8 | · Flow
9 | · TypeScript
10 | · CSS
11 | · SCSS
12 | · Less
13 | · JSX
14 | · Vue
15 | · GraphQL
16 | · JSON
17 | · Markdown
18 | ·
19 | Your favorite language?
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | ## Intro
49 |
50 | Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
51 |
52 | ### Input
53 |
54 |
55 | ```js
56 | foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());
57 | ```
58 |
59 | ### Output
60 |
61 | ```js
62 | foo(
63 | reallyLongArg(),
64 | omgSoManyParameters(),
65 | IShouldRefactorThis(),
66 | isThereSeriouslyAnotherOne()
67 | );
68 | ```
69 |
70 | Prettier can be run [in your editor](http://prettier.io/docs/en/editors.html) on-save, in a [pre-commit hook](https://prettier.io/docs/en/precommit.html), or in [CI environments](https://prettier.io/docs/en/cli.html#list-different) to ensure your codebase has a consistent style without devs ever having to post a nit-picky comment on a code review ever again!
71 |
72 | ---
73 |
74 | **[Documentation](https://prettier.io/docs/en/)**
75 |
76 |
77 | [Install](https://prettier.io/docs/en/install.html) ·
78 | [Options](https://prettier.io/docs/en/options.html) ·
79 | [CLI](https://prettier.io/docs/en/cli.html) ·
80 | [API](https://prettier.io/docs/en/api.html)
81 |
82 | **[Playground](https://prettier.io/playground/)**
83 |
84 | ---
85 |
86 | ## Badge
87 |
88 | Show the world you're using _Prettier_ → [](https://github.com/prettier/prettier)
89 |
90 | ```md
91 | [](https://github.com/prettier/prettier)
92 | ```
93 |
94 | ## Contributing
95 |
96 | See [CONTRIBUTING.md](CONTRIBUTING.md).
97 |
--------------------------------------------------------------------------------
/node_modules/prettier/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "_from": "prettier@~1.12.0",
3 | "_id": "prettier@1.12.1",
4 | "_inBundle": false,
5 | "_integrity": "sha1-wa0g6APndJ+vkFpAnSNn4Gu+cyU=",
6 | "_location": "/prettier",
7 | "_phantomChildren": {},
8 | "_requested": {
9 | "type": "range",
10 | "registry": true,
11 | "raw": "prettier@~1.12.0",
12 | "name": "prettier",
13 | "escapedName": "prettier",
14 | "rawSpec": "~1.12.0",
15 | "saveSpec": null,
16 | "fetchSpec": "~1.12.0"
17 | },
18 | "_requiredBy": [
19 | "#USER",
20 | "/"
21 | ],
22 | "_resolved": "http://registry.npm.taobao.org/prettier/download/prettier-1.12.1.tgz",
23 | "_shasum": "c1ad20e803e7749faf905a409d2367e06bbe7325",
24 | "_spec": "prettier@~1.12.0",
25 | "_where": "E:\\weilanwlSVN\\colorui\\github\\ColorUI\\Colorui-UniApp",
26 | "author": {
27 | "name": "James Long"
28 | },
29 | "bin": {
30 | "prettier": "./bin-prettier.js"
31 | },
32 | "bugs": {
33 | "url": "https://github.com/prettier/prettier/issues"
34 | },
35 | "bundleDependencies": false,
36 | "deprecated": false,
37 | "description": "Prettier is an opinionated code formatter",
38 | "devDependencies": {
39 | "babel-cli": "6.24.1",
40 | "babel-preset-es2015": "6.24.1",
41 | "codecov": "2.2.0",
42 | "cross-env": "5.0.5",
43 | "eslint": "4.18.2",
44 | "eslint-config-prettier": "2.9.0",
45 | "eslint-friendly-formatter": "3.0.0",
46 | "eslint-plugin-import": "2.9.0",
47 | "eslint-plugin-prettier": "2.6.0",
48 | "eslint-plugin-react": "7.7.0",
49 | "jest": "21.1.0",
50 | "mkdirp": "0.5.1",
51 | "prettier": "1.12.0",
52 | "prettylint": "1.0.0",
53 | "rimraf": "2.6.2",
54 | "rollup": "0.47.6",
55 | "rollup-plugin-commonjs": "8.2.6",
56 | "rollup-plugin-json": "2.1.1",
57 | "rollup-plugin-node-builtins": "2.0.0",
58 | "rollup-plugin-node-globals": "1.1.0",
59 | "rollup-plugin-node-resolve": "2.0.0",
60 | "rollup-plugin-replace": "1.2.1",
61 | "shelljs": "0.8.1",
62 | "snapshot-diff": "0.2.2",
63 | "strip-ansi": "4.0.0",
64 | "tempy": "0.2.1",
65 | "uglify-es": "3.3.9",
66 | "webpack": "2.6.1"
67 | },
68 | "engines": {
69 | "node": ">=4"
70 | },
71 | "files": [
72 | "*.js"
73 | ],
74 | "homepage": "https://prettier.io",
75 | "license": "MIT",
76 | "main": "./index.js",
77 | "name": "prettier",
78 | "repository": {
79 | "type": "git",
80 | "url": "git+https://github.com/prettier/prettier.git"
81 | },
82 | "scripts": {
83 | "prepublishOnly": "node -e \"assert.equal(require('.').version, require('..').version)\""
84 | },
85 | "version": "1.12.1"
86 | }
87 |
--------------------------------------------------------------------------------
/node_modules/prettier/parser-vue.js:
--------------------------------------------------------------------------------
1 | "use strict";function makeMap(e,t){const n=Object.create(null),a=e.split(",");for(let e=0;en[e.toLowerCase()]:e=>n[e]}const no=()=>!1,isNonPhrasingTag=makeMap("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),attribute=/^\s*([^\s"'<>/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ncname="[a-zA-Z_][\\w\\-\\.]*",qnameCapture=`((?:${ncname}\\:)?${ncname})`,startTagOpen=new RegExp(`^<${qnameCapture}`),startTagClose=/^\s*(\/?)>/,endTag=new RegExp(`^<\\/${qnameCapture}[^>]*>`),doctype=/^]+>/i,comment=/^/g,"$1").replace(//g,"$1")),shouldIgnoreFirstNewline(a,r)&&(r=r.slice(1)),t.chars&&t.chars(r),""));i+=e.length-o.length,e=o,h(a,i-n,i)}else{let n,a,r,o=e.indexOf("<");if(0===o){if(comment.test(e)){const n=e.indexOf("--\x3e");if(n>=0){t.shouldKeepComment&&t.comment(e.substring(4,n)),l(n+3);continue}}if(conditionalComment.test(e)){const t=e.indexOf("]>");if(t>=0){l(t+2);continue}}const n=e.match(doctype);if(n){l(n[0].length);continue}const a=e.match(endTag);if(a){const e=i;l(a[0].length),h(a[1],e,i);continue}const r=d();if(r){g(r),shouldIgnoreFirstNewline(c,e)&&l(1);continue}}if(o>=0){for(a=e.slice(o);!(endTag.test(a)||startTagOpen.test(a)||comment.test(a)||conditionalComment.test(a)||(r=a.indexOf("<",1))<0);)o+=r,a=e.slice(o);n=e.substring(0,o),l(o)}o<0&&(n=e,e=""),t.chars&&n&&t.chars(n)}if(e===s){t.chars&&t.chars(e),"production"!==process.env.NODE_ENV&&!n.length&&t.warn&&t.warn(`Mal-formatted tag at end of template: "${e}"`);break}}function l(t){i+=t,e=e.substring(t)}function d(){const t=e.match(startTagOpen);if(t){const n={tagName:t[1],attrs:[],start:i};let a,r;for(l(t[0].length);!(a=e.match(startTagClose))&&(r=e.match(attribute));)l(r[0].length),n.attrs.push(r);if(a)return n.unarySlash=a[1],l(a[0].length),n.end=i,n}}function g(e){const s=e.tagName,i=e.unarySlash;a&&("p"===c&&isNonPhrasingTag(s)&&h(c),o(s)&&c===s&&h(s));const l=r(s)||!!i,d=e.attrs.length,g=new Array(d);for(let n=0;n=0&&n[o].lowerCasedTag!==s;o--);else o=0;if(o>=0){for(let s=n.length-1;s>=o;s--)"production"!==process.env.NODE_ENV&&(s>o||!e)&&t.warn&&t.warn(`tag <${n[s].tag}> has no matching end tag.`),t.end&&t.end(n[s].tag,a,r);n.length=o,c=o&&n[o-1].tag}else"br"===s?t.start&&t.start(e,[],!0,a,r):"p"===s&&(t.start&&t.start(e,[],!1,a,r),t.end&&t.end(e,a,r))}h()}function parse(e){const t={tag:"root",attrs:[],unary:!1,start:0,contentStart:0,contentEnd:e.length,end:e.length,children:[],comments:[]},n=[t];let a=t;return parseHTML(e,{start:function(e,t,r,o,s){const c={tag:e,attrs:t,unary:r,start:o,children:[]};a.children.push(c),r?c.end=s:(c.contentStart=s,n.push(c),a=c)},end:function(e,t,r){n.pop(),a.contentEnd=t,a.end=r,a=n[n.length-1]}}),t}var parserVue=parse;module.exports=parserVue;
2 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "requires": true,
3 | "lockfileVersion": 1,
4 | "dependencies": {
5 | "prettier": {
6 | "version": "1.12.1",
7 | "resolved": "http://registry.npm.taobao.org/prettier/download/prettier-1.12.1.tgz",
8 | "integrity": "sha1-wa0g6APndJ+vkFpAnSNn4Gu+cyU="
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/pages.json:
--------------------------------------------------------------------------------
1 | {
2 | "pages": [
3 | //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
4 | {
5 | "path": "pages/index/index",
6 | "style": {}
7 | },
8 | {
9 | "path": "pages/basics/layout",
10 | "style": {}
11 | },
12 | {
13 | "path": "pages/basics/background",
14 | "style": {}
15 | },
16 | {
17 | "path": "pages/basics/text",
18 | "style": {}
19 | },
20 | {
21 | "path": "pages/basics/icon",
22 | "style": {}
23 | },
24 | {
25 | "path": "pages/basics/button",
26 | "style": {}
27 | },
28 | {
29 | "path": "pages/basics/design",
30 | "style": {}
31 | },
32 | {
33 | "path": "pages/basics/tag",
34 | "style": {}
35 | },
36 | {
37 | "path": "pages/basics/avatar",
38 | "style": {}
39 | },
40 | {
41 | "path": "pages/basics/progress",
42 | "style": {}
43 | },
44 | {
45 | "path": "pages/basics/shadow",
46 | "style": {}
47 | },
48 | {
49 | "path": "pages/basics/loading",
50 | "style": {}
51 | },
52 | {
53 | "path": "pages/component/bar",
54 | "style": {}
55 | },
56 | {
57 | "path": "pages/component/nav",
58 | "style": {}
59 | },
60 | {
61 | "path": "pages/component/list",
62 | "style": {}
63 | },
64 | {
65 | "path": "pages/component/card",
66 | "style": {}
67 | },
68 | {
69 | "path": "pages/component/form",
70 | "style": {}
71 | },
72 | {
73 | "path": "pages/component/timeline",
74 | "style": {}
75 | },
76 | {
77 | "path": "pages/component/chat",
78 | "style": {}
79 | },
80 | {
81 | "path": "pages/component/swiper",
82 | "style": {}
83 | },
84 | {
85 | "path": "pages/component/modal",
86 | "style": {}
87 | },
88 | {
89 | "path": "pages/component/steps",
90 | "style": {}
91 | },
92 | {
93 | "path": "pages/plugin/indexes",
94 | "style": {}
95 | },
96 | {
97 | "path": "pages/plugin/animation",
98 | "style": {}
99 | },
100 | {
101 | "path": "pages/plugin/drawer",
102 | "style": {}
103 | },
104 | {
105 | "path": "pages/plugin/verticalnav",
106 | "style": {}
107 | },
108 | {
109 | "path": "pages/sys-component/notice-list",
110 | "style": {}
111 | },
112 | {
113 | "path": "pages/sys-component/notice-content",
114 | "style": {}
115 | },
116 | {
117 | "path": "pages/sys-component/menu",
118 | "style": {}
119 | },
120 | {
121 | "path": "components/hm/more-menu",
122 | "style": {}
123 | },
124 | {
125 | "path": "pages/third",
126 | "style": {}
127 | },{
128 | "path": "pages/search-page",
129 | "style": {}
130 | },{
131 | "path": "pages/page/euler/login",
132 | "style": {}
133 | },{
134 | "path": "pages/page/euler/main",
135 | "style": {}
136 | },{
137 | "path": "pages/page/euler/forget-pwd",
138 | "style": {}
139 | },{
140 | "path": "pages/page/euler/tab-main",
141 | "style": {}
142 | },{
143 | "path": "pages/page/euler/tab-message",
144 | "style": {}
145 | },{
146 | "path": "pages/page/euler/tab-my",
147 | "style": {}
148 | },{
149 | "path": "pages/page/euler/msg-list",
150 | "style": {}
151 | },{
152 | "path": "pages/page/euler/msg-content",
153 | "style": {}
154 | },{
155 | "path": "pages/page/euler/upgrade",
156 | "style": {}
157 | },{
158 | "path": "pages/page/euler/modify-pwd",
159 | "style": {}
160 | },{
161 | "path": "pages/page/euler/upgrade-info",
162 | "style": {}
163 | },{
164 | "path": "pages/page/euler/404",
165 | "style": {}
166 | },{
167 | "path": "pages/page/euler/500",
168 | "style": {}
169 | },{
170 | "path": "pages/page/euler/net-disconnect",
171 | "style": {}
172 | },{
173 | "path": "pages/page/euler/user-not-bind",
174 | "style": {}
175 | },{
176 | "path": "pages/page/euler/user-bind",
177 | "style": {}
178 | },{
179 | "path": "pages/page/euler/user-center",
180 | "style": {}
181 | },{
182 | "path": "pages/other/awake",
183 | "style": {}
184 | }
185 | ],
186 | "globalStyle": {
187 | "mp-alipay": {
188 | /* 支付宝小程序特有相关 */
189 | "transparentTitle": "always",
190 | "allowsBounceVertical": "NO"
191 | },
192 | "navigationBarBackgroundColor": "#0081ff",
193 | "navigationBarTitleText": "ColorUi for UniApp",
194 | "navigationStyle": "custom",
195 | "navigationBarTextStyle": "white"
196 | },
197 | "usingComponts": true,
198 | "condition": {
199 | //模式配置,仅开发期间生效
200 | "current": 0,
201 | //当前激活的模式(list 的索引项)
202 | "list": [
203 | /*{
204 | "name": "表单",
205 | //模式名称
206 | "path": "pages/component/form",
207 | //启动页面
208 | "query": ""
209 | //启动参数
210 | }*/
211 | ]
212 | }
213 | }
214 |
--------------------------------------------------------------------------------
/pages/basics/avatar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回头像
4 |
5 |
6 | 头像形状
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | 头像尺寸
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | A
26 | B
27 | C
28 | D
29 |
30 |
31 | 蔚
32 | 蓝
33 |
34 | wl
35 |
36 |
37 | 网络
38 |
39 |
40 |
41 |
42 | 内嵌文字(图标)
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 | 港
51 |
52 |
53 |
54 |
55 |
56 | 头像颜色
57 |
58 |
59 |
60 |
61 | {{item.name}}
62 |
63 |
64 |
65 |
66 | 头像组
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 | 头像标签
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
105 |
106 |
109 |
--------------------------------------------------------------------------------
/pages/basics/button.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回按钮
4 |
5 |
6 | 按钮形状
7 |
8 |
9 |
10 |
11 | 设计
12 |
13 |
14 |
15 |
16 |
17 |
18 |
21 |
22 |
23 |
24 | 按钮尺寸
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | 按钮颜色
35 |
36 |
37 | 阴影
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | 镂空按钮
49 |
50 |
51 |
52 |
56 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | 块状按钮
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 | 无效状态
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 | 按钮加图标
89 |
90 |
91 |
92 |
94 |
96 |
97 |
98 |
99 |
100 |
101 |
120 |
121 |
124 |
--------------------------------------------------------------------------------
/pages/basics/design.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回 按钮 / 设计
4 |
5 |
6 |
7 |
8 |
9 | class="cu-btn {{' '}} {{border?bordersize?'lines-' + color:'line-' + color:'bg-'+ color}} {{round?'round':''}} {{size}} {{shadow?'shadow':''}}"
10 |
11 |
12 |
13 | 选择颜色
14 |
15 |
16 |
17 | 是否圆角
18 |
19 |
20 |
21 | 选择尺寸
22 |
23 |
27 |
31 |
35 |
36 |
37 |
38 | 是否添加阴影
39 |
40 |
41 |
42 | 是否镂空
43 |
44 |
45 |
46 | 边框大小
47 |
48 |
52 |
56 |
57 |
58 |
59 |
60 |
61 | 选择颜色
62 |
63 |
64 |
65 |
66 |
67 |
68 | {{item.title}}
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
122 |
123 |
131 |
--------------------------------------------------------------------------------
/pages/basics/home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
9 | {{item.title}}
10 | {{item.name}}
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
95 |
96 |
101 |
--------------------------------------------------------------------------------
/pages/basics/loading.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回加载
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 背景
13 |
14 |
15 |
16 |
17 |
18 | 加载状态
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | 加载错误
28 |
29 |
30 |
31 |
32 |
33 |
34 | 弹框加载
35 |
36 |
37 |
40 |
41 |
42 |
43 |
44 |
45 | 加载中...
46 |
47 |
48 |
49 | 进度条加载
50 |
51 |
52 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
98 |
99 |
102 |
--------------------------------------------------------------------------------
/pages/basics/shadow.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回边框阴影
4 |
5 |
6 | 边框
7 |
8 |
9 |
10 |
11 |
12 |
13 | 四周
14 | 上
15 | 右
16 | 下
17 | 左
18 |
19 |
20 |
21 | 阴影
22 |
23 |
24 |
25 | 默认阴影
26 | 根据背景颜色而改变的阴影
27 | 长阴影
28 | 长阴影
29 | 翘边阴影
30 |
31 | 根据背景图而改变的阴影
32 |
33 |
34 |
35 |
36 |
37 |
51 |
52 |
55 |
--------------------------------------------------------------------------------
/pages/basics/tag.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回标签
4 |
5 |
6 | 标签形状
7 |
8 |
9 |
10 | 默认
11 | 椭圆
12 | 圆角
13 |
14 |
15 |
16 |
17 | 标签尺寸
18 |
19 |
20 |
21 | 小尺寸
22 | 普通尺寸
23 |
24 |
25 |
26 | 标签颜色
27 |
28 |
29 |
30 |
31 | {{item.title}}
32 |
33 |
34 | {{item.title}}
35 |
36 |
37 |
38 |
39 | 镂空标签
40 |
41 |
42 |
43 |
44 | {{item.title}}
45 |
46 |
47 |
48 |
49 | 胶囊样式
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | 12
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 | 23
67 |
68 |
69 |
70 |
71 | 说明
72 |
73 |
74 | 123
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 | 23
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 | 23
91 |
92 |
93 |
94 |
95 |
96 | 数字标签
97 |
98 |
99 |
100 |
101 | 港
102 | 99+
103 |
104 |
105 | 9
106 |
107 |
108 | 99
109 |
110 |
111 |
112 | 99+
113 |
114 |
115 |
116 |
117 |
118 |
127 |
128 |
131 |
--------------------------------------------------------------------------------
/pages/component/chat.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回聊天
4 |
5 |
6 |
7 |
8 | 喵喵喵!喵喵喵!喵喵喵!喵喵!喵喵!!喵!喵喵喵!
9 |
10 |
11 |
12 | 2018年3月23日 13:23
13 |
14 | 对方撤回一条消息!
15 |
16 |
17 |
18 |
19 | 喵喵喵!喵喵喵!
20 |
21 |
22 | 13:23
23 |
24 |
25 | 对方拒绝了你的消息
26 |
27 |
28 | 对方开启了好友验证,你还不是他(她)的好友。请先发送好友验证请求,对方验证通过后,才能聊天。
29 | 发送好友验证
30 |
31 |
32 |
33 |
34 |
35 |
36 | 13:23
37 |
38 |
39 |
40 |
41 | 3"
42 |
43 |
44 |
45 |
46 |
47 |
48 | 13:23
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | 喵星球,喵喵市
57 |
58 |
59 |
60 | 13:23
61 |
62 |
63 |
64 |
65 |
66 | @#$^&**
67 |
68 |
69 | 翻译错误
70 |
71 |
72 | 13:23
73 |
74 |
75 |
76 |
87 |
88 |
89 |
90 |
91 |
108 |
109 |
114 |
--------------------------------------------------------------------------------
/pages/component/home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
8 | {{item.title}}
9 | {{item.name}}
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
87 |
88 |
93 |
--------------------------------------------------------------------------------
/pages/component/nav.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回导航栏
4 |
5 | Tab{{index}}
6 |
7 |
8 |
9 | 默认
10 |
11 |
12 |
13 |
14 | Tab{{index}}
15 |
16 |
17 |
18 |
19 |
20 | 居中
21 |
22 |
23 |
24 |
25 | Tab{{index}}
26 |
27 |
28 |
29 |
30 |
31 | 平分
32 |
33 |
34 |
35 |
36 |
37 | Tab{{index}}
38 |
39 |
40 |
41 |
42 |
43 | 背景
44 |
45 |
46 |
47 |
48 | Tab{{index}}
49 |
50 |
51 |
52 |
53 | 图标
54 |
55 |
56 |
57 |
58 | 数码
59 |
60 |
61 | 排行榜
62 |
63 |
64 | 皮肤
65 |
66 |
67 |
68 |
69 |
70 |
71 |
87 |
88 |
91 |
--------------------------------------------------------------------------------
/pages/component/steps.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回步骤条
4 |
5 |
6 | 基本用法
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{item.name}}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | {{item.name}}
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | {{item.name}}
32 |
33 |
34 |
35 |
36 |
37 | 数字完成
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | {{item.name}}
47 |
48 |
49 |
50 |
51 |
52 | 多级显示
53 |
54 |
55 |
56 |
57 |
58 |
60 |
61 | Level {{index + 1}}
62 |
63 |
64 |
65 |
66 |
67 |
111 |
112 |
115 |
--------------------------------------------------------------------------------
/pages/component/timeline.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回时间轴
4 |
5 | 昨天
6 |
7 |
8 | 22:22 【广州市】快件已到达地球
9 |
10 |
11 |
12 |
13 | 这是第一次,我家的铲屎官走了这么久。久到足足有三天!!
14 |
15 |
16 |
17 |
18 | 这是第一次,我家的铲屎官走了这么久。
19 |
20 |
21 |
22 |
23 | 20:00 【月球】快件已到达月球,准备发往地球
24 |
25 |
26 | 10:00 【银河系】快件已到达银河系,准备发往月球
27 |
28 |
29 |
30 |
31 |
32 | 06-17
33 |
34 |
35 | 01:30 【喵星】 MX-12138 已揽收,准备发往银河系
36 |
37 |
38 |
39 |
40 |
41 | 06-17
42 |
43 |
44 |
45 | 上午
46 | 10:00
47 |
48 | 这是第一次,我家的铲屎官走了这么久。久到足足有三天!! 在听到他的脚步声响在楼梯间的那一刻,我简直想要破门而出,对着他狠狠地吼上10分钟,然后再看心情要不要他进门。
49 |
50 |
51 |
52 |
53 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
98 |
99 |
102 |
--------------------------------------------------------------------------------
/pages/index/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | 元素
15 |
16 |
17 |
18 |
19 |
20 | 组件
21 |
22 |
23 |
24 |
25 |
26 | 扩展
27 |
28 |
29 |
30 |
31 |
32 | 系统组件
33 |
34 |
35 |
36 |
37 |
38 | 页面
39 |
40 |
41 |
42 |
43 |
44 | 其他
45 |
46 |
47 |
48 |
49 |
50 |
64 |
65 |
73 |
--------------------------------------------------------------------------------
/pages/other/awake.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回唤醒的页面
5 |
6 | 参数为:{{params}}
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/pages/page/euler/404.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 404
6 |
7 |
8 |
9 |
10 |
11 |
12 | 页面找不到
13 |
14 |
15 | 请检查页面配置
16 |
17 |
18 |
19 |
20 |
21 |
30 |
31 |
--------------------------------------------------------------------------------
/pages/page/euler/500.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 500
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | 系统错误
14 |
15 |
16 | 请通知管理员
17 |
18 |
19 |
20 |
21 |
22 |
31 |
32 |
--------------------------------------------------------------------------------
/pages/page/euler/main.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | 首页
12 |
13 |
14 |
15 |
16 |
17 | 消息
18 |
19 |
20 |
21 | 发布
22 |
23 |
24 |
25 |
26 |
27 | 我的
28 |
29 |
30 |
31 |
32 |
58 |
--------------------------------------------------------------------------------
/pages/page/euler/modify-pwd.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 修改密码
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 密码不能小于6位。
22 |
23 |
24 |
26 | 确认
27 |
28 |
29 |
30 |
31 |
32 | 联系管理员后台开启功能!
33 |
34 |
35 |
36 |
37 |
38 |
69 |
70 |
--------------------------------------------------------------------------------
/pages/page/euler/msg-content.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 消息内容
6 |
7 |
8 |
9 | {{title}}
10 |
11 |
12 | {{createTime}}
13 |
14 |
15 |
16 |
21 |
22 |
23 |
24 |
58 |
59 |
62 |
--------------------------------------------------------------------------------
/pages/page/euler/msg-list.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 消息列表
6 |
7 |
10 |
27 |
28 |
29 |
30 |
111 |
112 |
--------------------------------------------------------------------------------
/pages/page/euler/net-disconnect.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 网络不给力
6 |
7 |
8 |
9 |
10 |
11 |
12 | 网络不给力
13 |
14 |
15 |
20 |
21 |
22 |
23 |
24 |
25 |
39 |
40 |
--------------------------------------------------------------------------------
/pages/page/euler/tab-main.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
18 |
19 |
21 |
22 |
23 |
24 |
25 |
59 |
--------------------------------------------------------------------------------
/pages/page/euler/tab-message.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 消息中心
4 |
26 |
27 |
28 |
57 |
--------------------------------------------------------------------------------
/pages/page/euler/tab-my.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | LD
9 | 厦门市 录单员
10 | 手机:1141242422
11 | 邮箱:abc2@163.com
12 |
13 |
14 |
34 |
35 | 退出登录
36 |
37 |
38 |
39 |
63 |
--------------------------------------------------------------------------------
/pages/page/euler/upgrade-info.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 版本说明
6 |
7 |
8 |
9 | 近期主要更新
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
39 |
40 |
--------------------------------------------------------------------------------
/pages/page/euler/upgrade.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 版本升级
6 |
7 |
8 |
9 | 版本号1.0.0
10 |
11 |
25 |
26 |
27 |
28 |
29 |
46 |
47 |
--------------------------------------------------------------------------------
/pages/page/euler/user-bind.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 用户绑定
6 |
7 |
8 |
9 | 添加绑定账号
10 |
11 |
12 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | 绑定
32 |
33 |
34 |
35 |
40 |
41 |
42 |
43 |
65 |
66 |
--------------------------------------------------------------------------------
/pages/page/euler/user-center.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 公众号用户中心
6 |
7 |
8 |
9 |
10 |
11 | CG
12 | 厦门市局
13 |
14 |
33 |
34 |
35 | 添加绑定账号
36 |
37 |
38 |
39 |
40 |
41 |
56 |
57 |
--------------------------------------------------------------------------------
/pages/page/euler/user-not-bind.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 企业微信用户错误
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | 用户未同步
14 |
15 |
16 | 请联系管理员同步到系统用户
17 |
18 |
19 |
20 |
21 | 用户被锁定
22 |
23 |
24 | 请联系管理员解锁用户
25 |
26 |
27 |
28 |
29 |
30 |
31 |
44 |
45 |
--------------------------------------------------------------------------------
/pages/page/home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 页面展示
5 |
6 |
7 |
9 | 以下是页面展示
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 | {{list.name}}
20 |
21 |
22 |
25 | {{item.name}}
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
109 |
110 |
115 |
--------------------------------------------------------------------------------
/pages/plugin/animation.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回
4 | 微动画
5 |
6 |
7 |
8 | 默认效果
9 |
10 |
11 |
12 |
13 |
15 |
16 |
17 |
18 |
19 | 反向动画
20 |
21 |
22 |
23 |
24 |
25 |
27 |
28 |
29 |
30 |
31 | 延迟执行
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
42 |
43 |
44 |
45 |
46 | Gif动画
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
137 |
138 |
--------------------------------------------------------------------------------
/pages/plugin/drawer.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 全屏抽屉
6 |
7 |
8 |
9 | 打开抽屉
10 |
11 |
12 |
13 |
14 |
15 |
16 | {{index +1}}
17 |
18 |
19 |
20 |
21 |
22 |
23 | 打开抽屉
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | {{index +1}}
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
64 |
65 |
171 |
--------------------------------------------------------------------------------
/pages/plugin/home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
12 |
13 | {{item.title}}
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
61 |
62 |
104 |
--------------------------------------------------------------------------------
/pages/search-page.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回
5 | 菜单搜索
6 |
7 |
8 |
9 |
10 |
11 |
26 |
27 |
30 |
--------------------------------------------------------------------------------
/pages/sys-component/notice-content.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回公告内容
4 |
5 |
6 | {{title}}
7 |
8 |
9 | {{createTime}}
10 |
11 |
12 |
13 |
14 |
15 |
16 |
48 |
49 |
52 |
--------------------------------------------------------------------------------
/pages/sys-component/notice-list.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 返回公告列表
4 |
7 |
20 |
21 |
22 |
23 |
24 |
90 |
91 |
94 |
--------------------------------------------------------------------------------
/pages/third.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 返回{{title}}
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
51 |
52 |
55 |
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 4.0.0
6 | euler-uniapp-boilerplate
7 | com.hsit
8 | 5.5.0-SNAPSHOT
9 |
10 | maven.hsit.com.cn:8081
11 | 2.6
12 | 2.1.2
13 |
14 |
15 |
16 |
17 |
18 |
19 | copy
20 | prepare-package
21 |
22 | copy-resources
23 |
24 |
25 | true
26 |
27 | ${basedir}/target/classes/euler-uniapp-bolierplate
28 |
29 |
30 |
31 | .
32 | pom.xml
33 | unpackage/**
34 | target/**
35 | *.iml
36 |
37 |
38 |
39 |
40 |
41 | org.apache.maven.plugins
42 | maven-resources-plugin
43 | ${resources-plugin.version}
44 |
45 | false
46 |
47 |
48 |
49 | org.apache.maven.plugins
50 | maven-source-plugin
51 | ${source-plugin.version}
52 |
53 |
54 | attach-sources
55 | none
56 |
57 | jar-no-fork
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 | internal.repo.release
67 | http://${repo.host}/nexus/content/repositories/releases/
68 |
69 |
70 | internal.repo.snapshot
71 | http://${repo.host}/nexus/content/repositories/snapshots/
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/screenshot/screenshot1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot1.png
--------------------------------------------------------------------------------
/screenshot/screenshot2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot2.png
--------------------------------------------------------------------------------
/screenshot/screenshot3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot3.png
--------------------------------------------------------------------------------
/screenshot/screenshot4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot4.png
--------------------------------------------------------------------------------
/screenshot/screenshot5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot5.png
--------------------------------------------------------------------------------
/screenshot/screenshot6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot6.png
--------------------------------------------------------------------------------
/screenshot/screenshot7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot7.png
--------------------------------------------------------------------------------
/screenshot/screenshot8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/screenshot/screenshot8.png
--------------------------------------------------------------------------------
/static/BasicsBg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/BasicsBg.png
--------------------------------------------------------------------------------
/static/basics-nav-li-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/basics-nav-li-bg.png
--------------------------------------------------------------------------------
/static/cjkz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/cjkz.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-cartoon-loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-cartoon-loading.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-cartoon-nfc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-cartoon-nfc.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-cartoon-nodata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-cartoon-nodata.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-cartoon-nowifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-cartoon-nowifi.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-cartoon-scan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-cartoon-scan.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-clound.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-clound.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-dange-sign.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-dange-sign.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-dange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-dange.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-leaf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-leaf.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-leaf2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-leaf2.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-loading.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-moon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-moon.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-nodata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-nodata.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-rain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-rain.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-success.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-sun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-sun.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-tips-dange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-tips-dange.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-tips-loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-tips-loading.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-tips-nodata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-tips-nodata.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/img-tips-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/img-tips-success.png
--------------------------------------------------------------------------------
/static/commons/images/alertImg/logo-loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/alertImg/logo-loading.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-arrow-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-arrow-down.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-btn-selected-disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-btn-selected-disabled.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-btn-selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-btn-selected.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-day.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-day.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-man.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-message.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-month.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-month.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-person.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-person.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-shop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-shop.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-week.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-week.png
--------------------------------------------------------------------------------
/static/commons/images/icons/icon-woman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/icons/icon-woman.png
--------------------------------------------------------------------------------
/static/commons/images/vcode.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/commons/images/vcode.jpg
--------------------------------------------------------------------------------
/static/componentBg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/componentBg.png
--------------------------------------------------------------------------------
/static/home/basics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/home/basics.png
--------------------------------------------------------------------------------
/static/home/cjkz2329.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/home/cjkz2329.jpg
--------------------------------------------------------------------------------
/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/logo.png
--------------------------------------------------------------------------------
/static/pages/login/banner-tobacco-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/banner-tobacco-1.jpg
--------------------------------------------------------------------------------
/static/pages/login/banner-tobacco-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/banner-tobacco-2.jpg
--------------------------------------------------------------------------------
/static/pages/login/banner_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/banner_1.jpg
--------------------------------------------------------------------------------
/static/pages/login/bg-login2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/bg-login2.jpg
--------------------------------------------------------------------------------
/static/pages/login/bg-login2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/bg-login2.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-e-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-e-white.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-e.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-e.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-h-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-h-white.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-h.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-v-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-v-white.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler-v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler-v.png
--------------------------------------------------------------------------------
/static/pages/login/logo-euler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-euler.png
--------------------------------------------------------------------------------
/static/pages/login/logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-white.png
--------------------------------------------------------------------------------
/static/pages/login/logo-yc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo-yc.png
--------------------------------------------------------------------------------
/static/pages/login/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/login/logo.png
--------------------------------------------------------------------------------
/static/pages/main/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/banner.png
--------------------------------------------------------------------------------
/static/pages/main/tabMain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMain.png
--------------------------------------------------------------------------------
/static/pages/main/tabMain_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMain_cur.png
--------------------------------------------------------------------------------
/static/pages/main/tabMessage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMessage.png
--------------------------------------------------------------------------------
/static/pages/main/tabMessage_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMessage_cur.png
--------------------------------------------------------------------------------
/static/pages/main/tabMy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMy.png
--------------------------------------------------------------------------------
/static/pages/main/tabMy_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabMy_cur.png
--------------------------------------------------------------------------------
/static/pages/main/tabTodo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabTodo.png
--------------------------------------------------------------------------------
/static/pages/main/tabTodo_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/main/tabTodo_cur.png
--------------------------------------------------------------------------------
/static/pages/my/user-man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/my/user-man.png
--------------------------------------------------------------------------------
/static/pages/user-center/bg-report-default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/pages/user-center/bg-report-default.jpg
--------------------------------------------------------------------------------
/static/tabbar/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/about.png
--------------------------------------------------------------------------------
/static/tabbar/about_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/about_cur.png
--------------------------------------------------------------------------------
/static/tabbar/basics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/basics.png
--------------------------------------------------------------------------------
/static/tabbar/basics_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/basics_cur.png
--------------------------------------------------------------------------------
/static/tabbar/component.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/component.png
--------------------------------------------------------------------------------
/static/tabbar/component_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/component_cur.png
--------------------------------------------------------------------------------
/static/tabbar/other.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/other.png
--------------------------------------------------------------------------------
/static/tabbar/other_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/other_cur.png
--------------------------------------------------------------------------------
/static/tabbar/page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/page.png
--------------------------------------------------------------------------------
/static/tabbar/page_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/page_cur.png
--------------------------------------------------------------------------------
/static/tabbar/plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/plugin.png
--------------------------------------------------------------------------------
/static/tabbar/plugin_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/plugin_cur.png
--------------------------------------------------------------------------------
/static/tabbar/sysComponent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/sysComponent.png
--------------------------------------------------------------------------------
/static/tabbar/sysComponent_cur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/czl0325/uniapp-demo/501ab8c14af62a24c6d03ced41c96fc92eeab3d9/static/tabbar/sysComponent_cur.png
--------------------------------------------------------------------------------
/uni.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * 这里是uni-app内置的常用样式变量
3 | *
4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
6 | *
7 | */
8 |
9 | /**
10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
11 | *
12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
13 | */
14 |
15 | /* 颜色变量 */
16 |
17 | /* 行为相关颜色 */
18 | $uni-color-primary: #007aff;
19 | $uni-color-success: #4cd964;
20 | $uni-color-warning: #f0ad4e;
21 | $uni-color-error: #dd524d;
22 |
23 | /* 文字基本颜色 */
24 | $uni-text-color:#333;//基本色
25 | $uni-text-color-inverse:#fff;//反色
26 | $uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
27 | $uni-text-color-placeholder: #808080;
28 | $uni-text-color-disable:#c0c0c0;
29 |
30 | /* 背景颜色 */
31 | $uni-bg-color:#ffffff;
32 | $uni-bg-color-grey:#f8f8f8;
33 | $uni-bg-color-hover:#f1f1f1;//点击状态颜色
34 | $uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
35 |
36 | /* 边框颜色 */
37 | $uni-border-color:#c8c7cc;
38 |
39 | /* 尺寸变量 */
40 |
41 | /* 文字尺寸 */
42 | $uni-font-size-sm:24upx;
43 | $uni-font-size-base:28upx;
44 | $uni-font-size-lg:32upx;
45 |
46 | /* 图片尺寸 */
47 | $uni-img-size-sm:40upx;
48 | $uni-img-size-base:52upx;
49 | $uni-img-size-lg:80upx;
50 |
51 | /* Border Radius */
52 | $uni-border-radius-sm: 4upx;
53 | $uni-border-radius-base: 6upx;
54 | $uni-border-radius-lg: 12upx;
55 | $uni-border-radius-circle: 50%;
56 |
57 | /* 水平间距 */
58 | $uni-spacing-row-sm: 10px;
59 | $uni-spacing-row-base: 20upx;
60 | $uni-spacing-row-lg: 30upx;
61 |
62 | /* 垂直间距 */
63 | $uni-spacing-col-sm: 8upx;
64 | $uni-spacing-col-base: 16upx;
65 | $uni-spacing-col-lg: 24upx;
66 |
67 | /* 透明度 */
68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度
69 |
70 | /* 文章场景相关 */
71 | $uni-color-title: #2C405A; // 文章标题颜色
72 | $uni-font-size-title:40upx;
73 | $uni-color-subtitle: #555555; // 二级标题颜色
74 | $uni-font-size-subtitle:36upx;
75 | $uni-color-paragraph: #3F536E; // 文章段落颜色
76 | $uni-font-size-paragraph:30upx;
--------------------------------------------------------------------------------