Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
shanyunduo.cheng
2021-12-03 13:55:23 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
19acb798fc76de2d3103fc8e5bd8f76f687155f5
19acb798
2 parents
cdeac795
ce3b4705
Merge branch 'master' of
http://118.178.128.178/Fedex/imac-vue
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
12 deletions
.env.development
.env.production
.env.staging
README.md
package - 副本.json
package.json
src/assets/images/profile.jpg
src/settings.js
src/views/allocationConfig/flightRandConfig/index.vue
vue.config.js
.env.development
View file @
19acb79
# 开发环境配置
ENV = 'development'
#
FedEx
管理系统/开发环境
#
IMAC
管理系统/开发环境
VUE_APP_BASE_API = '/dev-api'
# 路由懒加载
...
...
.env.production
View file @
19acb79
# 生产环境配置
ENV = 'production'
#
FedEx
管理系统/生产环境
#
IMAC
管理系统/生产环境
VUE_APP_BASE_API = '/prod-api'
...
...
.env.staging
View file @
19acb79
...
...
@@ -3,5 +3,5 @@ NODE_ENV = production
# 测试环境配置
ENV = 'staging'
#
FedEx
管理系统/测试环境
#
IMAC
管理系统/测试环境
VUE_APP_BASE_API = '/stage-api'
...
...
README.md
View file @
19acb79
...
...
@@ -5,7 +5,7 @@
git clone https://gitee.com/y_project/RuoYi-Vue
# 进入项目目录
cd
FedEx
-ui
cd
IMAC
-ui
# 安装依赖
npm install
...
...
package - 副本.json
View file @
19acb79
{
"name"
:
"
FedEx
"
,
"name"
:
"
IMAC
"
,
"version"
:
"3.5.0"
,
"description"
:
"
FedEx
管理系统"
,
"author"
:
"
FedEx
"
,
"description"
:
"
IMAC
管理系统"
,
"author"
:
"
IMAC
"
,
"license"
:
"MIT"
,
"scripts"
:
{
"dev"
:
"vue-cli-service serve"
,
...
...
package.json
View file @
19acb79
{
"name"
:
"
FedEx
"
,
"name"
:
"
IMAC
"
,
"version"
:
"3.5.0"
,
"description"
:
"
FedEx
管理系统"
,
"author"
:
"
FedEx
"
,
"description"
:
"
IMAC后台
管理系统"
,
"author"
:
"
IMAC
"
,
"license"
:
"MIT"
,
"scripts"
:
{
"dev"
:
"vue-cli-service serve"
,
...
...
src/assets/images/profile.jpg
View file @
19acb79
79.2 KB
|
W:
|
H:
3.46 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/settings.js
View file @
19acb79
module
.
exports
=
{
title
:
'
FedEx
管理系统'
,
title
:
'
IMAC后台
管理系统'
,
/**
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
19acb79
...
...
@@ -316,8 +316,13 @@
this.loadingFlightDate = true;
this.sourceFlightAndFlightDate = [];
findSourceFlightAndFlightDateApi(this.queryParams).then(response => {
if(response.code === 200){
this.sourceFlightAndFlightDate = response.data;
this.loadingFlightDate = false;
}else{
this.msgError(response.msg);
}
});
...
...
vue.config.js
View file @
19acb79
...
...
@@ -6,7 +6,7 @@ function resolve(dir) {
return
path
.
join
(
__dirname
,
dir
)
}
const
name
=
defaultSettings
.
title
||
'
FedEx
管理系统'
// 标题
const
name
=
defaultSettings
.
title
||
'
IMAC后台
管理系统'
// 标题
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
80
// 端口
...
...
Please
register
or
login
to post a comment