kn-cli 1.0.56 → 1.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cli.config.js +5 -0
- package/build/webpack.config.js +4 -3
- package/package.json +3 -1
- package/readme.md +8 -0
- package/src/build.js +1 -0
- package/templates/template_oa/.DS_Store +0 -0
- package/templates/template_oa/build.sh +2 -0
- package/templates/template_oa/cli.config.js +24 -0
- package/templates/template_oa/dev.sh +89 -0
- package/templates/template_oa/frontend_build.sh +83 -0
- package/templates/template_oa/init/prepare-commit-msg +5 -0
- package/templates/template_oa/init.sh +33 -0
- package/templates/template_oa/jsconfig.json +10 -0
- package/templates/template_oa/package-lock.json +1925 -0
- package/templates/template_oa/package.json +24 -0
- package/templates/template_oa/public/.DS_Store +0 -0
- package/templates/template_oa/public/404.html +26 -0
- package/templates/template_oa/public/favicon.ico +0 -0
- package/templates/template_oa/public/favicon.png +0 -0
- package/templates/template_oa/public/index.html +43 -0
- package/templates/template_oa/public/pluginjs/.DS_Store +0 -0
- package/templates/template_oa/public/src/.DS_Store +0 -0
- package/templates/template_oa/public/src/_antd.less +237 -0
- package/templates/template_oa/public/src/_reset.less +131 -0
- package/templates/template_oa/public/src/_variable.less +84 -0
- package/templates/template_oa/public/src/assets/.DS_Store +0 -0
- package/templates/template_oa/public/src/assets/iconfont/.DS_Store +0 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.eot +0 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.less +57 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.svg +36 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.ttf +0 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.woff +0 -0
- package/templates/template_oa/public/src/assets/iconfont/iconfont.woff2 +0 -0
- package/templates/template_oa/public/src/assets/images/.DS_Store +0 -0
- package/templates/template_oa/public/src/assets/images/avatar.png +0 -0
- package/templates/template_oa/public/src/assets/images/loading.svg +40 -0
- package/templates/template_oa/public/src/components/.DS_Store +0 -0
- package/templates/template_oa/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_oa/public/src/components/Alert/index.less +0 -0
- package/templates/template_oa/public/src/components/Auth/index.jsx +44 -0
- package/templates/template_oa/public/src/components/Footer/index.jsx +17 -0
- package/templates/template_oa/public/src/components/Footer/index.less +28 -0
- package/templates/template_oa/public/src/components/IFrame/index.jsx +37 -0
- package/templates/template_oa/public/src/components/IFrame/index.less +4 -0
- package/templates/template_oa/public/src/components/IconFont/index.jsx +10 -0
- package/templates/template_oa/public/src/components/IconFont/index.less +5 -0
- package/templates/template_oa/public/src/components/Layout/.DS_Store +0 -0
- package/templates/template_oa/public/src/components/Layout/Basic/index.jsx +31 -0
- package/templates/template_oa/public/src/components/Layout/Basic/index.less +74 -0
- package/templates/template_oa/public/src/components/Layout/CenterBody/index.jsx +15 -0
- package/templates/template_oa/public/src/components/Layout/CenterBody/index.less +36 -0
- package/templates/template_oa/public/src/components/Layout/FormBlock/index.jsx +23 -0
- package/templates/template_oa/public/src/components/Layout/FormBlock/index.less +34 -0
- package/templates/template_oa/public/src/components/Layout/Provider/index.jsx +12 -0
- package/templates/template_oa/public/src/components/Layout/index.jsx +26 -0
- package/templates/template_oa/public/src/components/Layout/index.less +8 -0
- package/templates/template_oa/public/src/components/Link/index.jsx +24 -0
- package/templates/template_oa/public/src/components/Link/index.less +11 -0
- package/templates/template_oa/public/src/components/Loading/index.jsx +14 -0
- package/templates/template_oa/public/src/components/Loading/index.less +85 -0
- package/templates/template_oa/public/src/components/Nav/index.jsx +121 -0
- package/templates/template_oa/public/src/components/Nav/index.less +38 -0
- package/templates/template_oa/public/src/components/Page/.DS_Store +0 -0
- package/templates/template_oa/public/src/components/Page/PageLoading/index.jsx +30 -0
- package/templates/template_oa/public/src/components/Page/PageLoading/index.less +29 -0
- package/templates/template_oa/public/src/components/Popup/index.jsx +22 -0
- package/templates/template_oa/public/src/components/Popup/index.less +18 -0
- package/templates/template_oa/public/src/components/Toast/index.jsx +60 -0
- package/templates/template_oa/public/src/components/Toast/index.less +43 -0
- package/templates/template_oa/public/src/components/mask/index.jsx +47 -0
- package/templates/template_oa/public/src/components/mask/index.less +32 -0
- package/templates/template_oa/public/src/dictionary/index.js +39 -0
- package/templates/template_oa/public/src/hooks/.DS_Store +0 -0
- package/templates/template_oa/public/src/hooks/index.jsx +20 -0
- package/templates/template_oa/public/src/hooks/useDelay.jsx +29 -0
- package/templates/template_oa/public/src/hooks/useImageLoader.jsx +27 -0
- package/templates/template_oa/public/src/hooks/useLoading.jsx +42 -0
- package/templates/template_oa/public/src/hooks/useLogin.jsx +33 -0
- package/templates/template_oa/public/src/hooks/usePreload.jsx +66 -0
- package/templates/template_oa/public/src/hooks/useScrollTop.jsx +32 -0
- package/templates/template_oa/public/src/hooks/useSearch.jsx +137 -0
- package/templates/template_oa/public/src/hooks/useUpdate.jsx +11 -0
- package/templates/template_oa/public/src/index.jsx +50 -0
- package/templates/template_oa/public/src/mock/auth.js +91 -0
- package/templates/template_oa/public/src/mock/index.js +63 -0
- package/templates/template_oa/public/src/mock/user.js +70 -0
- package/templates/template_oa/public/src/mock/utils.js +33 -0
- package/templates/template_oa/public/src/pages/.DS_Store +0 -0
- package/templates/template_oa/public/src/pages/components/pageTitle/index.jsx +13 -0
- package/templates/template_oa/public/src/pages/components/pageTitle/index.less +20 -0
- package/templates/template_oa/public/src/pages/login/index.jsx +27 -0
- package/templates/template_oa/public/src/pages/login/index.less +44 -0
- package/templates/template_oa/public/src/pages/video/index.jsx +91 -0
- package/templates/template_oa/public/src/pages/video/index.less +12 -0
- package/templates/template_oa/public/src/provider/app.jsx +119 -0
- package/templates/template_oa/public/src/provider/menu.jsx +20 -0
- package/templates/template_oa/public/src/route.jsx +43 -0
- package/templates/template_oa/public/src/services/.DS_Store +0 -0
- package/templates/template_oa/public/src/services/auth.js +121 -0
- package/templates/template_oa/public/src/services/index.js +181 -0
- package/templates/template_oa/public/src/services/user.js +26 -0
- package/templates/template_oa/public/src/services/video.js +33 -0
- package/templates/template_oa/public/src/utils/.DS_Store +0 -0
- package/templates/template_oa/public/src/utils/index.js +66 -0
- package/templates/template_oa/public/static/.DS_Store +0 -0
- package/templates/template_oa/public/static/about.html +1 -0
- package/templates/template_oa/public/static/kssoLogin.html +22 -0
- package/templates/template_oa/readme.md +60 -0
- package/templates/template_oa/release/.DS_Store +0 -0
- package/templates/template_oa/report.sh +68 -0
- package/templates/template_oa/tools/.DS_Store +0 -0
- package/templates/template_oa/tools/iconfont/.DS_Store +0 -0
- package/templates/template_oa/tools/iconfont/dist/.DS_Store +0 -0
- package/templates/template_oa/tools/iconfont/gulpfile.js +70 -0
- package/templates/template_oa/tools/iconfont/package.json +20 -0
- package/templates/template_oa/tools/iconfont/run.sh +39 -0
- package/templates/template_oa/tools/iconfont/svg/.DS_Store +0 -0
- package/templates/template_oa/tools/iconfont/svg/arrowBack.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/check.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/close.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/down.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/image.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/play.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/refresh.svg +1 -0
- package/templates/template_oa/tools/iconfont/svg/warn.svg +1 -0
- package/templates/template_oa/tools/iconfont/templates/_icons.css +26 -0
- package/templates/template_oa/tools/iconfont/templates/_icons.less +29 -0
- package/templates/template_oa/tools/iconfont/templates/index.html +56 -0
- package/templates/template_oa/tools/tinypng/.DS_Store +0 -0
- package/templates/template_oa/tools/tinypng/img/.DS_Store +0 -0
- package/templates/template_oa/tools/tinypng/package.json +11 -0
- package/templates/template_oa/tools/tinypng/run.sh +15 -0
- package/templates/template_oa/versionPublish.sh +27 -0
- package/templates/template_oa/webpack.api.js +62 -0
- package/templates/template_offcial/.gitignore +6 -0
- package/templates/template_offcial/build.sh +2 -0
- package/templates/template_offcial/cli.config.js +25 -0
- package/templates/template_offcial/dev.sh +89 -0
- package/templates/template_offcial/frontend_build.sh +83 -0
- package/templates/template_offcial/init/prepare-commit-msg +5 -0
- package/templates/template_offcial/init.sh +33 -0
- package/templates/template_offcial/jsconfig.json +10 -0
- package/templates/template_offcial/package.json +23 -0
- package/templates/template_offcial/public/404.html +26 -0
- package/templates/template_offcial/public/favicon.ico +0 -0
- package/templates/template_offcial/public/favicon.png +0 -0
- package/templates/template_offcial/public/index.html +52 -0
- package/templates/template_offcial/public/src/_antd.less +4 -0
- package/templates/template_offcial/public/src/_reset.less +130 -0
- package/templates/template_offcial/public/src/_variable.less +78 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.eot +0 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.less +57 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.svg +36 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.ttf +0 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.woff +0 -0
- package/templates/template_offcial/public/src/assets/iconfont/iconfont.woff2 +0 -0
- package/templates/template_offcial/public/src/assets/images/avatar.png +0 -0
- package/templates/template_offcial/public/src/assets/images/loading.svg +40 -0
- package/templates/template_offcial/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_offcial/public/src/components/Alert/index.less +0 -0
- package/templates/template_offcial/public/src/components/Footer/index.jsx +32 -0
- package/templates/template_offcial/public/src/components/Footer/index.less +8 -0
- package/templates/template_offcial/public/src/components/Header/index.jsx +68 -0
- package/templates/template_offcial/public/src/components/Header/index.less +76 -0
- package/templates/template_offcial/public/src/components/IconFont/index.jsx +10 -0
- package/templates/template_offcial/public/src/components/IconFont/index.less +5 -0
- package/templates/template_offcial/public/src/components/Layout/Provider/index.jsx +12 -0
- package/templates/template_offcial/public/src/components/Layout/index.jsx +20 -0
- package/templates/template_offcial/public/src/components/Layout/index.less +20 -0
- package/templates/template_offcial/public/src/components/Link/index.jsx +24 -0
- package/templates/template_offcial/public/src/components/Link/index.less +11 -0
- package/templates/template_offcial/public/src/components/Page/PageLoading/index.jsx +30 -0
- package/templates/template_offcial/public/src/components/Page/PageLoading/index.less +29 -0
- package/templates/template_offcial/public/src/components/Popup/index.jsx +22 -0
- package/templates/template_offcial/public/src/components/Popup/index.less +18 -0
- package/templates/template_offcial/public/src/components/Toast/index.jsx +60 -0
- package/templates/template_offcial/public/src/components/Toast/index.less +43 -0
- package/templates/template_offcial/public/src/hooks/index.jsx +12 -0
- package/templates/template_offcial/public/src/hooks/useImageLoader.jsx +27 -0
- package/templates/template_offcial/public/src/hooks/useInToView.jsx +55 -0
- package/templates/template_offcial/public/src/hooks/usePreload.jsx +66 -0
- package/templates/template_offcial/public/src/hooks/useScroll.jsx +66 -0
- package/templates/template_offcial/public/src/index.jsx +50 -0
- package/templates/template_offcial/public/src/mock/index.js +63 -0
- package/templates/template_offcial/public/src/mock/user.js +70 -0
- package/templates/template_offcial/public/src/mock/utils.js +33 -0
- package/templates/template_offcial/public/src/pages/index.jsx +23 -0
- package/templates/template_offcial/public/src/pages/index.less +0 -0
- package/templates/template_offcial/public/src/pages/mobile/index.jsx +11 -0
- package/templates/template_offcial/public/src/pages/mobile/index.less +0 -0
- package/templates/template_offcial/public/src/pages/pc/index.jsx +45 -0
- package/templates/template_offcial/public/src/pages/pc/index.less +42 -0
- package/templates/template_offcial/public/src/provider/app.jsx +26 -0
- package/templates/template_offcial/public/src/route.jsx +26 -0
- package/templates/template_offcial/public/src/services/index.js +182 -0
- package/templates/template_offcial/public/src/services/user.js +26 -0
- package/templates/template_offcial/public/src/utils/index.js +109 -0
- package/templates/template_offcial/public/static/about.html +1 -0
- package/templates/template_offcial/readme.md +59 -0
- package/templates/template_offcial/report.sh +68 -0
- package/templates/template_offcial/tools/iconfont/gulpfile.js +70 -0
- package/templates/template_offcial/tools/iconfont/package.json +20 -0
- package/templates/template_offcial/tools/iconfont/run.sh +39 -0
- package/templates/template_offcial/tools/iconfont/svg/arrowBack.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/check.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/close.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/down.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/image.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/play.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/refresh.svg +1 -0
- package/templates/template_offcial/tools/iconfont/svg/warn.svg +1 -0
- package/templates/template_offcial/tools/iconfont/templates/_icons.css +26 -0
- package/templates/template_offcial/tools/iconfont/templates/_icons.less +29 -0
- package/templates/template_offcial/tools/iconfont/templates/index.html +56 -0
- package/templates/template_offcial/tools/tinypng/package.json +11 -0
- package/templates/template_offcial/tools/tinypng/run.sh +15 -0
- package/templates/template_offcial/versionPublish.sh +27 -0
- package/templates/template_offcial/webpack.api.js +36 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
module.exports = {
|
|
3
|
+
name:'template-offical',
|
|
4
|
+
version:'1.0',
|
|
5
|
+
registryType:'npm',//npm镜像源,taobao|npm
|
|
6
|
+
less:{
|
|
7
|
+
javascriptEnabled:true,//是否开启less js
|
|
8
|
+
},
|
|
9
|
+
rules:{
|
|
10
|
+
compileNpmPackage:['kn-hooks'],//需要参与编译的npm包
|
|
11
|
+
},
|
|
12
|
+
cssModule: (resourcePath) => {
|
|
13
|
+
console.log(resourcePath)
|
|
14
|
+
// antd.less编译的时候使用global模式
|
|
15
|
+
if (/antd.less$/i.test(resourcePath)) {
|
|
16
|
+
return 'global'
|
|
17
|
+
}
|
|
18
|
+
return "local";
|
|
19
|
+
},
|
|
20
|
+
// 自定义多入口
|
|
21
|
+
// entry:{
|
|
22
|
+
// 'home/index': 'src/jsx/home/index.jsx',
|
|
23
|
+
// },
|
|
24
|
+
// copyFolder:['images','plugins'],//完整复制的文件夹
|
|
25
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
if [ -d "${HOME}/.nvm/" ]
|
|
2
|
+
then
|
|
3
|
+
. ${HOME}/.nvm/nvm.sh
|
|
4
|
+
fi
|
|
5
|
+
|
|
6
|
+
node_version="v16.18.0"
|
|
7
|
+
|
|
8
|
+
checkNode(){
|
|
9
|
+
for line in `node -v`
|
|
10
|
+
do
|
|
11
|
+
if [ $line != $node_version ]
|
|
12
|
+
then
|
|
13
|
+
echo "change Node from $line to $node_version"
|
|
14
|
+
nvm use $node_version
|
|
15
|
+
ret=$?
|
|
16
|
+
if [ $ret != 0 ]
|
|
17
|
+
then
|
|
18
|
+
echo "Please run nvm install $node_version"
|
|
19
|
+
exit 3
|
|
20
|
+
else
|
|
21
|
+
return 0
|
|
22
|
+
fi
|
|
23
|
+
else
|
|
24
|
+
return 0
|
|
25
|
+
fi
|
|
26
|
+
done
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
checkResult(){
|
|
30
|
+
ret=$?
|
|
31
|
+
if [ $ret != 0 ]
|
|
32
|
+
then
|
|
33
|
+
echo "[$1]执行失败"
|
|
34
|
+
exit 2
|
|
35
|
+
return 0
|
|
36
|
+
else
|
|
37
|
+
echo "[$1]执行成功"
|
|
38
|
+
return 0
|
|
39
|
+
fi
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# 智能检测并安装/升级CLI的版本
|
|
46
|
+
checkKnCli(){
|
|
47
|
+
# dev只需要保持安装了就行,版本通过开发自己控制
|
|
48
|
+
if ! [ -x "$(command -v kn-cli)" ]
|
|
49
|
+
then
|
|
50
|
+
echo "安装kn-cli"
|
|
51
|
+
npm i kn-cli -g
|
|
52
|
+
return 0
|
|
53
|
+
fi
|
|
54
|
+
# for line in `npm view kn-cli version`
|
|
55
|
+
# do
|
|
56
|
+
# for line2 in `kn-cli -v`
|
|
57
|
+
# do
|
|
58
|
+
# if [ $line != $line2 ]
|
|
59
|
+
# then
|
|
60
|
+
# echo "升级kn-cli"
|
|
61
|
+
# npm upgrade kn-cli -g
|
|
62
|
+
# return 0
|
|
63
|
+
# fi
|
|
64
|
+
# done
|
|
65
|
+
# done
|
|
66
|
+
# return 0
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
build(){
|
|
72
|
+
npm config delete registry -g
|
|
73
|
+
npm config delete registry
|
|
74
|
+
|
|
75
|
+
checkKnCli
|
|
76
|
+
checkResult "检查kn-cli"
|
|
77
|
+
# dev_mode=watch 代表使用 webpack -w模式将文件编译后生成到磁盘上进行监听更新
|
|
78
|
+
# 默认情况下为 webpack-dev-server模式,将资源编译后放入内存监听
|
|
79
|
+
# export dev_mode=watch
|
|
80
|
+
|
|
81
|
+
kn-cli --dev
|
|
82
|
+
checkResult "kn-cli --dev"
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
checkNode
|
|
86
|
+
checkResult "检查node"
|
|
87
|
+
|
|
88
|
+
build
|
|
89
|
+
checkResult "build"
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
if [ -d "${HOME}/.nvm/" ]
|
|
2
|
+
then
|
|
3
|
+
. ${HOME}/.nvm/nvm.sh
|
|
4
|
+
fi
|
|
5
|
+
|
|
6
|
+
export mock=0
|
|
7
|
+
export oSkipNpmInstall=1
|
|
8
|
+
node_version="v16.18.0"
|
|
9
|
+
|
|
10
|
+
checkNode(){
|
|
11
|
+
for line in `node -v`
|
|
12
|
+
do
|
|
13
|
+
if [ $line != $node_version ]
|
|
14
|
+
then
|
|
15
|
+
echo "change Node from $line to $node_version"
|
|
16
|
+
nvm use $node_version
|
|
17
|
+
ret=$?
|
|
18
|
+
if [ $ret != 0 ]
|
|
19
|
+
then
|
|
20
|
+
echo "Please run nvm install $node_version"
|
|
21
|
+
exit 3
|
|
22
|
+
else
|
|
23
|
+
return 0
|
|
24
|
+
fi
|
|
25
|
+
else
|
|
26
|
+
return 0
|
|
27
|
+
fi
|
|
28
|
+
done
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
checkKnCli(){
|
|
33
|
+
if ! [ -x "$(command -v kn-cli)" ]
|
|
34
|
+
then
|
|
35
|
+
npm i kn-cli -g
|
|
36
|
+
return 0
|
|
37
|
+
fi
|
|
38
|
+
return 0
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
checkResult(){
|
|
43
|
+
ret=$?
|
|
44
|
+
if [ $ret != 0 ]
|
|
45
|
+
then
|
|
46
|
+
echo "[$1]执行失败"
|
|
47
|
+
exit 2
|
|
48
|
+
return 0
|
|
49
|
+
else
|
|
50
|
+
echo "[$1]执行成功"
|
|
51
|
+
return 0
|
|
52
|
+
fi
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
build(){
|
|
56
|
+
npm config delete registry -g
|
|
57
|
+
npm config delete registry
|
|
58
|
+
|
|
59
|
+
rm -rf release
|
|
60
|
+
checkResult "清理release"
|
|
61
|
+
|
|
62
|
+
checkKnCli
|
|
63
|
+
checkResult "检查kn-cli"
|
|
64
|
+
|
|
65
|
+
# npm i kn-cli@1.0.2 -g
|
|
66
|
+
# checkResult "npm kn-cli"
|
|
67
|
+
|
|
68
|
+
kn-cli --build
|
|
69
|
+
checkResult "kn-cli --build"
|
|
70
|
+
|
|
71
|
+
mv public/dist release/
|
|
72
|
+
checkResult "打包结果同步至release"
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
checkNode
|
|
76
|
+
checkResult "检查node"
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
build
|
|
80
|
+
checkResult "build"
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
checkResult(){
|
|
2
|
+
ret=$?
|
|
3
|
+
if [ $ret != 0 ]
|
|
4
|
+
then
|
|
5
|
+
echo "[$1]执行失败"
|
|
6
|
+
exit 2
|
|
7
|
+
return 0
|
|
8
|
+
else
|
|
9
|
+
echo "[$1]执行成功"
|
|
10
|
+
return 0
|
|
11
|
+
fi
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
echo "安装git提交钩子脚本 cp prepare-commit-msg ./.git/hooks/prepare-commit-msg"
|
|
15
|
+
ls -A ./.git/
|
|
16
|
+
ret=$?
|
|
17
|
+
if [ $ret != 0 ]
|
|
18
|
+
then
|
|
19
|
+
echo "缺少.git文件夹"
|
|
20
|
+
exit 2
|
|
21
|
+
fi
|
|
22
|
+
|
|
23
|
+
ls -A ./.git/hooks/
|
|
24
|
+
ret=$?
|
|
25
|
+
if [ $ret != 0 ]
|
|
26
|
+
then
|
|
27
|
+
mkdir ./.git/hooks
|
|
28
|
+
checkResult '创建hooks文件夹'
|
|
29
|
+
fi
|
|
30
|
+
cp ./init/prepare-commit-msg ./.git/hooks/prepare-commit-msg
|
|
31
|
+
checkResult '复制prepare-commit-msg'
|
|
32
|
+
chmod u+x ./.git/hooks/prepare-commit-msg
|
|
33
|
+
checkResult '权限变更prepare-commit-msg'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "template-offical",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "lib/index",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"clean": "rm -rf ./dist"
|
|
7
|
+
},
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"axios": "~1.1.3",
|
|
11
|
+
"moment": "~2.29.4",
|
|
12
|
+
"kn-hooks": "~0.0.16",
|
|
13
|
+
"react": "~17.0.2",
|
|
14
|
+
"react-dom": "~17.0.2",
|
|
15
|
+
"react-router": "~6.3.0",
|
|
16
|
+
"react-router-dom": "~6.3.0",
|
|
17
|
+
"unstated-next": "~1.1.0",
|
|
18
|
+
"vconsole": "~3.9.5"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": "16.18.0"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
7
|
+
<title>404</title>
|
|
8
|
+
<style>
|
|
9
|
+
body{
|
|
10
|
+
background-color:#444;
|
|
11
|
+
font-size:14px;
|
|
12
|
+
}
|
|
13
|
+
h3{
|
|
14
|
+
font-size:60px;
|
|
15
|
+
color:#eee;
|
|
16
|
+
text-align:center;
|
|
17
|
+
padding-top:30px;
|
|
18
|
+
font-weight:normal;
|
|
19
|
+
}
|
|
20
|
+
</style>
|
|
21
|
+
</head>
|
|
22
|
+
|
|
23
|
+
<body>
|
|
24
|
+
<h3>404,您请求的文件不存在!</h3>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta name="viewport"
|
|
7
|
+
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no,viewport-fit=cover" />
|
|
8
|
+
<meta name="format-detection" content="telephone=no,email=no,adress=no">
|
|
9
|
+
<meta name="apple-touch-fullscreen" content="yes">
|
|
10
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
11
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
12
|
+
|
|
13
|
+
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
14
|
+
<link rel="icon" href="favicon.png" type="image/png">
|
|
15
|
+
<title></title>
|
|
16
|
+
</head>
|
|
17
|
+
|
|
18
|
+
<body>
|
|
19
|
+
<div id="main-view" />
|
|
20
|
+
<script>
|
|
21
|
+
var docEl = document.documentElement;
|
|
22
|
+
const isMobile = navigator.userAgent.match(
|
|
23
|
+
/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
function setRemUnit(type) {
|
|
27
|
+
let w = Math.max(window.innerWidth, docEl.clientWidth, docEl.offsetWidth);
|
|
28
|
+
let defaultWidth = isMobile ? 375 : 1200;//填入设计稿上的宽度
|
|
29
|
+
let minWidth = isMobile ? 300 : 1000;
|
|
30
|
+
if(w<=0){
|
|
31
|
+
w= window.screen.availWidth||defaultWidth;
|
|
32
|
+
}
|
|
33
|
+
w= w < minWidth?minWidth:w;
|
|
34
|
+
w= w > defaultWidth?defaultWidth:w;
|
|
35
|
+
var rem = w / defaultWidth * 100;
|
|
36
|
+
docEl.style.fontSize = rem + 'px'
|
|
37
|
+
}
|
|
38
|
+
setRemUnit('init');
|
|
39
|
+
if (document.readyState === 'interactive') {
|
|
40
|
+
setRemUnit('init');
|
|
41
|
+
} else {
|
|
42
|
+
window.addEventListener('DOMContentLoaded', function () {
|
|
43
|
+
setRemUnit('init');
|
|
44
|
+
})
|
|
45
|
+
}
|
|
46
|
+
window.addEventListener("resize", function () {
|
|
47
|
+
setRemUnit('resize');
|
|
48
|
+
});
|
|
49
|
+
</script>
|
|
50
|
+
</body>
|
|
51
|
+
|
|
52
|
+
</html>
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
|
|
2
|
+
@import '~@/assets/iconfont/iconfont.less';
|
|
3
|
+
@import './_variable.less';
|
|
4
|
+
|
|
5
|
+
:global {
|
|
6
|
+
html{
|
|
7
|
+
// ios webview 进入后高度不正确的问题
|
|
8
|
+
background-color: white;
|
|
9
|
+
width:100vw;
|
|
10
|
+
height: 100%;
|
|
11
|
+
// height:100vh;
|
|
12
|
+
padding:var(--safeTop) var(--safeRight) var(--safeBottom) var(--safeLeft);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
body,#main-view{
|
|
16
|
+
background-color: #f2f2f2;
|
|
17
|
+
width:100%;
|
|
18
|
+
height:100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
body,html{
|
|
22
|
+
overflow:hidden;
|
|
23
|
+
}
|
|
24
|
+
#main-view {
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
u {
|
|
30
|
+
font-weight: inherit;
|
|
31
|
+
}
|
|
32
|
+
u,
|
|
33
|
+
b,
|
|
34
|
+
strong {
|
|
35
|
+
font-size: inherit;
|
|
36
|
+
color: inherit;
|
|
37
|
+
line-height: inherit;
|
|
38
|
+
letter-spacing: inherit;
|
|
39
|
+
}
|
|
40
|
+
*[data-inherit] {
|
|
41
|
+
font-weight: inherit;
|
|
42
|
+
font-size: inherit;
|
|
43
|
+
color: inherit;
|
|
44
|
+
line-height: inherit;
|
|
45
|
+
letter-spacing: inherit;
|
|
46
|
+
}
|
|
47
|
+
a{
|
|
48
|
+
color: var(--color-primary);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
a,div,p,span,section,hgroup{
|
|
53
|
+
// -webkit-touch-callout:none;
|
|
54
|
+
// -webkit-user-drag:none;
|
|
55
|
+
// -webkit-user-select:none;
|
|
56
|
+
// -moz-user-select:none;
|
|
57
|
+
// -ms-user-select:none;
|
|
58
|
+
// user-select:none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
* {
|
|
63
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
64
|
+
// position: relative;
|
|
65
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
66
|
+
-webkit-text-size-adjust: none;
|
|
67
|
+
-webkit-box-sizing: border-box;
|
|
68
|
+
-moz-box-sizing: border-box;
|
|
69
|
+
-ms-box-sizing: border-box;
|
|
70
|
+
box-sizing: border-box;
|
|
71
|
+
|
|
72
|
+
margin: 0;
|
|
73
|
+
padding: 0;
|
|
74
|
+
border: 0;
|
|
75
|
+
border-spacing: 0;
|
|
76
|
+
outline: none;
|
|
77
|
+
-webkit-font-smoothing: antialiased;
|
|
78
|
+
-moz-osx-font-smoothing: grayscale;
|
|
79
|
+
-webkit-touch-callout: none;
|
|
80
|
+
// font-size:1px;
|
|
81
|
+
font-weight:var(--weight-Regular);
|
|
82
|
+
font-size:var(--font-Regular);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
html{
|
|
86
|
+
font-size: 100PX;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
*[data-weight-thin]{font-weight: var(--weight-Thin);}//极细体
|
|
90
|
+
*[data-weight-ultraLight]{font-weight: var(--weight-Ultralight);}//纤细体
|
|
91
|
+
*[data-weight-light]{font-weight: var(--weight-Light);}//细体
|
|
92
|
+
*[data-weight-regular]{font-weight: var(--weight-Regular);}//常规
|
|
93
|
+
*[data-weight-medium]{font-weight: var(--weight-Medium);}//中黑、中粗
|
|
94
|
+
*[data-weight-semibold]{font-weight: var(--weight-Semibold);}//中黑、中粗
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
#__vconsole *{
|
|
98
|
+
font-size:14PX;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
body[data-debug-layout]{
|
|
102
|
+
border:4px solid #d64f68;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#main-view{
|
|
106
|
+
background-color: white;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
body[scroll]{
|
|
110
|
+
overflow:visible;
|
|
111
|
+
}
|
|
112
|
+
.touch-scroll {
|
|
113
|
+
overflow: scroll;
|
|
114
|
+
-webkit-overflow-scrolling: touch;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
p,div,section,hgroup
|
|
118
|
+
{
|
|
119
|
+
&[data-text-break]{
|
|
120
|
+
white-space: pre-wrap;
|
|
121
|
+
word-break:break-all;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.wrap-space{
|
|
126
|
+
padding:var(--padding-small)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
}
|
|
130
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
|
|
2
|
+
@pullLoadHeight:100;
|
|
3
|
+
|
|
4
|
+
:root{
|
|
5
|
+
--safeTop: constant(safe-area-inset-top);
|
|
6
|
+
--safeBottom: constant(safe-area-inset-bottom);
|
|
7
|
+
--safeLeft: constant(safe-area-inset-left);
|
|
8
|
+
--safeRight: constant(safe-area-inset-right);
|
|
9
|
+
|
|
10
|
+
--safeTop: env(safe-area-inset-top);
|
|
11
|
+
--safeBottom: env(safe-area-inset-bottom);
|
|
12
|
+
--safeLeft: env(safe-area-inset-left);
|
|
13
|
+
--safeRight: env(safe-area-inset-right);
|
|
14
|
+
|
|
15
|
+
--weight-Thin:100;
|
|
16
|
+
--weight-Ultralight:200;
|
|
17
|
+
--weight-Light:300;
|
|
18
|
+
--weight-Regular:400;
|
|
19
|
+
--weight-Medium:500;
|
|
20
|
+
--weight-Semibold:700;
|
|
21
|
+
|
|
22
|
+
--font-Regular:14px;
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
--color-primary-dark:#001529;
|
|
26
|
+
--color-primary:#2F7CFF;
|
|
27
|
+
--color-primary-hover:#1565c0;
|
|
28
|
+
|
|
29
|
+
--color-font-bold:#141414;
|
|
30
|
+
--color-font-gray:#8C8C8C;
|
|
31
|
+
--color-underscore:#D9D9D9;
|
|
32
|
+
--color-error:#d32f2f;
|
|
33
|
+
|
|
34
|
+
--color-border-hover:rgba(0, 0, 0, 0.9);
|
|
35
|
+
--color-text:#262626;
|
|
36
|
+
--color-text-hover:rgba(0,0,0,.9);
|
|
37
|
+
--color-menu-text:rgba(0, 0, 0, 0.45);
|
|
38
|
+
--color-menu-text-active:white;
|
|
39
|
+
|
|
40
|
+
--color-dropmenu-hover:rgba(0, 0, 0, 0.04);
|
|
41
|
+
--color-dropmenu-text:rgba(0, 0, 0, 0.7);
|
|
42
|
+
--color-box-shadow:#dddddd;
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
--color-body-background:#F0F2F3;
|
|
46
|
+
|
|
47
|
+
--radius-default: 8px;
|
|
48
|
+
--radius-small: 4px;
|
|
49
|
+
|
|
50
|
+
--margin-default:12px;
|
|
51
|
+
--margin-larger:24px;
|
|
52
|
+
--margin-small:8px;
|
|
53
|
+
|
|
54
|
+
--padding-default:26px;
|
|
55
|
+
--padding-larger:32px;
|
|
56
|
+
--padding-small:16px;
|
|
57
|
+
|
|
58
|
+
--padding-body:34px 24px;
|
|
59
|
+
|
|
60
|
+
--center-body-width:100%;
|
|
61
|
+
|
|
62
|
+
--body-min-width:375px;
|
|
63
|
+
--body-max-width:1100px;
|
|
64
|
+
|
|
65
|
+
--height-header:80px;
|
|
66
|
+
|
|
67
|
+
// 100以下为非弹出式的UI
|
|
68
|
+
--z-nav-pc:10;
|
|
69
|
+
--z-top-menu:10;
|
|
70
|
+
--z-nav-mobile:50;
|
|
71
|
+
|
|
72
|
+
// 100以上为弹出式的UI
|
|
73
|
+
--z-dropMenu:100;
|
|
74
|
+
--z-dialog:1040;
|
|
75
|
+
--z-toast:1045;
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
:global{
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: "iconfont";
|
|
4
|
+
src: url('~@/assets/iconfont/iconfont.eot');
|
|
5
|
+
src: url('~@/assets/iconfont/iconfont.eot?#iefix') format('eot'),
|
|
6
|
+
url('~@/assets/iconfont/iconfont.woff') format('woff'),
|
|
7
|
+
url('~@/assets/iconfont/iconfont.ttf') format('truetype'),
|
|
8
|
+
url('~@/assets/iconfont/iconfont.svg#iconfont') format('svg');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.iconfont:before {
|
|
12
|
+
font-family: "iconfont";
|
|
13
|
+
-webkit-font-smoothing: antialiased;
|
|
14
|
+
-moz-osx-font-smoothing: grayscale;
|
|
15
|
+
font-style: normal;
|
|
16
|
+
font-variant: normal;
|
|
17
|
+
font-weight: normal;
|
|
18
|
+
/* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
|
|
19
|
+
text-decoration: none;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
.icon-arrowBack:before {
|
|
25
|
+
content: "\E001";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-check:before {
|
|
29
|
+
content: "\E002";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-close:before {
|
|
33
|
+
content: "\E003";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-down:before {
|
|
37
|
+
content: "\E004";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-image:before {
|
|
41
|
+
content: "\E005";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-play:before {
|
|
45
|
+
content: "\E006";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-refresh:before {
|
|
49
|
+
content: "\E007";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-warn:before {
|
|
53
|
+
content: "\E008";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<font id="iconfont" horiz-adv-x="191.87258461178124">
|
|
6
|
+
<font-face font-family="iconfont"
|
|
7
|
+
units-per-em="128" ascent="128"
|
|
8
|
+
descent="0" />
|
|
9
|
+
<missing-glyph horiz-adv-x="0" />
|
|
10
|
+
<glyph glyph-name="arrowBack"
|
|
11
|
+
unicode=""
|
|
12
|
+
horiz-adv-x="128" d="M39.955 63.998L81.957 105.999L87.613 100.343L45.612 58.34zM45.652 69.692L88.149 27.196L82.492 21.539L39.995 64.036z" />
|
|
13
|
+
<glyph glyph-name="check"
|
|
14
|
+
unicode=""
|
|
15
|
+
horiz-adv-x="128" d="M51.382857125 40.68571425C53.4034285 37.8514285 57.61828575 37.8514285 59.648 40.68571425L93.348571375 87.40571425A1.28 1.28 0 0 1 92.30628575 89.444571375H84.8A5.092571375 5.092571375 0 0 1 80.65828575 87.31428575L55.515428625 52.43428575L44.132571375 68.24228575A5.12 5.12 0 0 1 39.98171425 70.363428625H32.484571375A1.28 1.28 0 0 1 31.44228575 68.33371425L51.37371425 40.68571425zM122.88 128H5.12A5.12 5.12 0 0 1 0 122.88V5.12C0 2.28571425 2.28571425 0 5.12 0H122.88C125.71428575 0 128 2.28571425 128 5.12V122.88A5.12 5.12 0 0 1 122.88 128zM116.48 11.52H11.52V116.48H116.48V11.52z" />
|
|
16
|
+
<glyph glyph-name="close"
|
|
17
|
+
unicode=""
|
|
18
|
+
horiz-adv-x="128" d="M74.56591125 63.999946625L127.611200375 125.42922875C128.496533 126.453227875 127.749866875 127.99989325 126.373868 127.999893375H110.2458815A3.338663875 3.338663875 0 0 1 107.76055025 126.87989425L64.00592 76.213269875L20.240623125 126.87989425A3.274664 3.274664 0 0 1 17.755291875 127.999893375H1.627305375C0.240639875 127.999893375 -0.506026125 126.453228 0.389973 125.42922875L53.4565955 63.999946625L0.389973 2.5706645C-0.495359625 1.546665375 0.2513065 0 1.627305375 0H17.755291875C18.715291125 0 19.611290375 0.415999625 20.240623125 1.119999125L64.00592 51.7866235L107.771216875 1.119999125A3.274664 3.274664 0 0 1 110.256548125 0H126.384534625C127.771200125 0 128.517866125 1.546665375 127.621867 2.5706645L74.5552445 63.999946625z" />
|
|
19
|
+
<glyph glyph-name="down"
|
|
20
|
+
unicode=""
|
|
21
|
+
horiz-adv-x="191.87258461178124" d="M189.9647490035717 128H171.0226685809696C169.7427983176176 128 168.5269214986842 127.36005675 167.758999415672 126.35214625L95.9902723763624 28.4568345L24.2215453370529 126.35214625A4.0635882205157 4.063639375 0 0 1 20.9738744703607 128H2.0317940477586C0.3839610415061 128 -0.5759416247583 126.14416475 0.3839610415061 124.832281125L89.4309370735613 3.3070665A8.1111780174276 8.111280125 0 0 1 102.5016125333505 3.3070665L191.580585287615 124.832281125A1.9837989019456 1.983823875 0 0 1 189.9807474271755 128z" />
|
|
22
|
+
<glyph glyph-name="image"
|
|
23
|
+
unicode=""
|
|
24
|
+
horiz-adv-x="170.63111851697565" d="M164.5781985954392 127.998613375H6.0800812704923A5.9520795555871 5.951866125 0 0 1 0 122.185410875V5.814695875C0 2.6041015 2.7200362854808 0.001493375 6.0907480279826 0.00149325H164.5888653529294A5.9520795555871 5.951866125 0 0 1 170.679613380912 5.814695875V122.185410875A5.9520795555871 5.951866125 0 0 1 164.5781985954392 127.998613375zM156.9514299885937 13.089198875H13.7175166348281V20.342369L40.0965356627626 50.219030125L68.6835842415614 17.8570915L113.164178483573 68.181292625L156.9514299885937 18.614407875V13.089198875zM156.9514299885937 36.694001L114.3268606752104 84.948915375A1.5573540938434 1.55729825 0 0 1 112.001496166931 84.948915375L68.6942509990517 35.926018375L41.2592178544 66.96532A1.5573540938434 1.55729825 0 0 1 38.9338534711252 66.96532L13.7175166348281 38.421962125V114.900241375H156.9514299885937V36.694001zM45.7179441110941 74.18649075C54.9767344892281 74.18649075 62.4755012561638 81.343663 62.4755012561638 90.18613075C62.4755012561638 99.017932 54.9767343642236 106.18577075 45.7179441110941 106.185770875S28.9497200835296 99.017932125 28.9497200835296 90.18613075C28.9497200835296 81.343663 36.4591537329601 74.18649075 45.7179441110941 74.18649075zM45.7179441110941 95.274016375C48.6726503114049 95.274016375 51.0513487321399 93.0020675 51.0513486071354 90.18613075A5.2054029061406 5.20521625 0 0 0 45.7179441110941 85.087578875A5.2054029061406 5.20521625 0 0 0 40.3845394900483 90.18613075C40.3845394900483 93.002067375 42.7632379107832 95.27401625 45.7179441110941 95.274016375z" />
|
|
25
|
+
<glyph glyph-name="play"
|
|
26
|
+
unicode=""
|
|
27
|
+
horiz-adv-x="128" d="M52.84571425 37.504L84.75428575 62.57371425C85.6685715 63.296 85.6685715 64.676571375 84.75428575 65.408L52.84571425 90.496A1.81028575 1.81028575 0 0 1 49.92 89.088V38.93028575C49.92 37.421714375 51.657142875 36.5805715 52.84571425 37.504zM122.88 128H5.12A5.12 5.12 0 0 1 0 122.88V5.12C0 2.28571425 2.28571425 0 5.12 0H122.88C125.71428575 0 128 2.28571425 128 5.12V122.88A5.12 5.12 0 0 1 122.88 128zM116.48 11.52H11.52V116.48H116.48V11.52z" />
|
|
28
|
+
<glyph glyph-name="refresh"
|
|
29
|
+
unicode=""
|
|
30
|
+
horiz-adv-x="128" d="M85.504 77.568Q83.328 78.592 83.52 80.32T84.992 83.072Q85.376 83.328 87.488 85.056T92.672 89.216Q87.296 95.36 79.872 98.88T63.744 102.4Q55.68 102.4 48.64 99.392T36.352 91.136T28.096 78.848T25.088 63.744Q25.088 55.808 28.096 48.768T36.352 36.48T48.64 28.224T63.744 25.216Q70.4 25.216 76.352 27.328T87.232 33.28T95.68 42.304T100.864 53.632Q101.76 56.576 104.192 58.496T109.952 60.416Q113.92 60.416 116.672 57.6T119.424 50.944Q119.424 49.152 118.784 47.488Q116.096 38.528 110.848 30.976T98.368 17.984T82.304 9.472T63.744 6.4Q51.84 6.4 41.344 10.88T23.104 23.168T10.816 41.408T6.272 63.744T10.816 86.144T23.104 104.384T41.344 116.672T63.744 121.216Q76.928 121.216 88.192 115.776T107.392 100.992Q110.336 103.168 112.32 104.768T114.816 106.752Q115.584 107.392 116.48 107.712T118.144 107.712T119.488 106.368T120.32 103.296Q120.448 102.144 120.576 99.392T120.832 92.992T120.96 85.44T120.832 78.08Q120.704 73.728 118.784 71.808Q117.76 70.784 115.712 70.656T111.36 71.04Q107.904 71.808 103.744 72.704T95.808 74.56T89.152 76.352T85.504 77.568z" />
|
|
31
|
+
<glyph glyph-name="warn"
|
|
32
|
+
unicode=""
|
|
33
|
+
horiz-adv-x="128" d="M64 128A64 64 0 1 1 128 64A64 64 0 0 1 64 128zM64 25.6A6.4 6.4 0 1 0 70.4 32A6.4 6.4 0 0 0 64 25.6zM70.4 44.8H57.6V102.4H70.4z" />
|
|
34
|
+
</font>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
Binary file
|