shanyunduo.cheng

Merge branch 'master' of http://118.178.128.178/Fedex/imac-vue

1 # 开发环境配置 1 # 开发环境配置
2 ENV = 'development' 2 ENV = 'development'
3 3
4 -# FedEx管理系统/开发环境 4 +# IMAC管理系统/开发环境
5 VUE_APP_BASE_API = '/dev-api' 5 VUE_APP_BASE_API = '/dev-api'
6 6
7 # 路由懒加载 7 # 路由懒加载
......
1 # 生产环境配置 1 # 生产环境配置
2 ENV = 'production' 2 ENV = 'production'
3 3
4 -# FedEx管理系统/生产环境 4 +# IMAC管理系统/生产环境
5 VUE_APP_BASE_API = '/prod-api' 5 VUE_APP_BASE_API = '/prod-api'
......
...@@ -3,5 +3,5 @@ NODE_ENV = production ...@@ -3,5 +3,5 @@ NODE_ENV = production
3 # 测试环境配置 3 # 测试环境配置
4 ENV = 'staging' 4 ENV = 'staging'
5 5
6 -# FedEx管理系统/测试环境 6 +# IMAC管理系统/测试环境
7 VUE_APP_BASE_API = '/stage-api' 7 VUE_APP_BASE_API = '/stage-api'
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 git clone https://gitee.com/y_project/RuoYi-Vue 5 git clone https://gitee.com/y_project/RuoYi-Vue
6 6
7 # 进入项目目录 7 # 进入项目目录
8 -cd FedEx-ui 8 +cd IMAC-ui
9 9
10 # 安装依赖 10 # 安装依赖
11 npm install 11 npm install
......
1 { 1 {
2 - "name": "FedEx", 2 + "name": "IMAC",
3 "version": "3.5.0", 3 "version": "3.5.0",
4 - "description": "FedEx管理系统", 4 + "description": "IMAC管理系统",
5 - "author": "FedEx", 5 + "author": "IMAC",
6 "license": "MIT", 6 "license": "MIT",
7 "scripts": { 7 "scripts": {
8 "dev": "vue-cli-service serve", 8 "dev": "vue-cli-service serve",
......
1 { 1 {
2 - "name": "FedEx", 2 + "name": "IMAC",
3 "version": "3.5.0", 3 "version": "3.5.0",
4 - "description": "FedEx管理系统", 4 + "description": "IMAC后台管理系统",
5 - "author": "FedEx", 5 + "author": "IMAC",
6 "license": "MIT", 6 "license": "MIT",
7 "scripts": { 7 "scripts": {
8 "dev": "vue-cli-service serve", 8 "dev": "vue-cli-service serve",
......

79.2 KB | W: | H:

3.46 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
1 module.exports = { 1 module.exports = {
2 - title: 'FedEx管理系统', 2 + title: 'IMAC后台管理系统',
3 3
4 /** 4 /**
5 * 侧边栏主题 深色主题theme-dark,浅色主题theme-light 5 * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
......
...@@ -316,8 +316,13 @@ ...@@ -316,8 +316,13 @@
316 this.loadingFlightDate = true; 316 this.loadingFlightDate = true;
317 this.sourceFlightAndFlightDate = []; 317 this.sourceFlightAndFlightDate = [];
318 findSourceFlightAndFlightDateApi(this.queryParams).then(response => { 318 findSourceFlightAndFlightDateApi(this.queryParams).then(response => {
319 - this.sourceFlightAndFlightDate = response.data; 319 + if(response.code === 200){
320 - this.loadingFlightDate = false; 320 + this.sourceFlightAndFlightDate = response.data;
321 + this.loadingFlightDate = false;
322 + }else{
323 + this.msgError(response.msg);
324 + }
325 +
321 }); 326 });
322 327
323 328
......
...@@ -6,7 +6,7 @@ function resolve(dir) { ...@@ -6,7 +6,7 @@ function resolve(dir) {
6 return path.join(__dirname, dir) 6 return path.join(__dirname, dir)
7 } 7 }
8 8
9 -const name = defaultSettings.title || 'FedEx管理系统' // 标题 9 +const name = defaultSettings.title || 'IMAC后台管理系统' // 标题
10 10
11 const port = process.env.port || process.env.npm_config_port || 80 // 端口 11 const port = process.env.port || process.env.npm_config_port || 80 // 端口
12 12
......