Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙海亮
bims
Commits
ca8913e5
Commit
ca8913e5
authored
3 years ago
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'moment'
parent
f76b3dc9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
1 deletion
+34
-1
.env.development
.env.development
+8
-0
.env.production
.env.production
+8
-0
README.md
README.md
+7
-1
package.json
package.json
+1
-0
main.js
src/main.js
+10
-0
No files found.
.env.development
0 → 100644
View file @
ca8913e5
# just a flag
ENV = 'development'
VUE_APP_API = '/dev'
VUE_APP_USER = 'admin'
VUE_APP_PWD = '123456'
This diff is collapsed.
Click to expand it.
.env.production
0 → 100644
View file @
ca8913e5
# just a flag
ENV = 'production'
VUE_APP_API = '/dev'
VUE_APP_USER = ''
VUE_APP_PWD = ''
This diff is collapsed.
Click to expand it.
README.md
View file @
ca8913e5
...
...
@@ -8,4 +8,10 @@
## 蓝湖(ui)
> https://lanhuapp.com/url/4G9cN-1hUp9
> [分享链接](https://lanhuapp.com/url/4G9cN-IG7JV)
### 接口文档地址
[
接口文档地址
](
http://git.ssish.com/root/core-ci/wikis/interface_document
)
### 测试
1.
登录账密 admin/123456
This diff is collapsed.
Click to expand it.
package.json
View file @
ca8913e5
...
...
@@ -16,6 +16,7 @@
"
core-js
"
:
"
^3.6.5
"
,
"
lodash
"
:
"
^4.17.21
"
,
"
lodash-webpack-plugin
"
:
"
^0.11.6
"
,
"
moment
"
:
"
^2.29.1
"
,
"
nprogress
"
:
"
^0.2.0
"
,
"
style-resources-loader
"
:
"
^1.5.0
"
,
"
vue
"
:
"
^2.6.11
"
,
...
...
This diff is collapsed.
Click to expand it.
src/main.js
View file @
ca8913e5
...
...
@@ -18,8 +18,18 @@ globalComponents();
Vue
.
prototype
.
$apis
=
apis
;
// 指令注入
directives
();
import
moment
from
'
moment
'
import
'
moment/locale/zh-cn
'
moment
.
locale
(
'
zh-cn
'
)
new
Vue
({
router
,
store
,
render
:
(
h
)
=>
h
(
App
),
}).
$mount
(
"
#app
"
);
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment