diff --git a/.env.dev b/.env.dev index 7125189..108669d 100644 --- a/.env.dev +++ b/.env.dev @@ -2,16 +2,16 @@ # @Author: zwq # @Date: 2023-08-17 15:10:53 # @LastEditors: zwq - # @LastEditTime: 2023-08-30 15:15:52 + # @LastEditTime: 2023-10-07 13:46:53 # @Description: ### # 开发环境配置 ENV = 'development' # 页面标题 -VUE_APP_TITLE = 芋道管理系统 +VUE_APP_TITLE = 南京锂膜管理系统 -# 芋道管理系统/开发环境 +# 南京锂膜管理系统/开发环境 VUE_APP_BASE_API = 'http://192.168.1.23:48080' # VUE_APP_BASE_API = 'http://192.168.0.31:48081' diff --git a/.env.front b/.env.front index 9e2d4d2..af3dff1 100644 --- a/.env.front +++ b/.env.front @@ -2,9 +2,9 @@ ENV = 'development' # 页面标题 -VUE_APP_TITLE = 芋道管理系统 +VUE_APP_TITLE = 南京锂膜管理系统 -# 芋道管理系统/本地环境 +# 南京锂膜管理系统/本地环境 VUE_APP_BASE_API = 'http://api-dashboard.yudao.iocoder.cn' # 路由懒加载 diff --git a/.env.prod b/.env.prod index a1415ed..d55df0f 100644 --- a/.env.prod +++ b/.env.prod @@ -2,13 +2,13 @@ ENV = 'production' # 页面标题 -VUE_APP_TITLE = 芋道管理系统 +VUE_APP_TITLE = 南京锂膜管理系统 -# 芋道管理系统/生产环境 +# 南京锂膜管理系统/生产环境 VUE_APP_BASE_API = '/prod-api' # 根据服务器或域名修改 -PUBLIC_PATH = 'http://my-pi.com:8888/yudao-admin/' +PUBLIC_PATH = 'http://192.168.0.31:8003/' # 二级部署路径 VUE_APP_APP_NAME ='yudao-admin' diff --git a/.env.stage b/.env.stage index 5942b3c..b3db543 100644 --- a/.env.stage +++ b/.env.stage @@ -1,12 +1,12 @@ NODE_ENV = production # 页面标题 -VUE_APP_TITLE = 芋道管理系统 +VUE_APP_TITLE = 南京锂膜管理系统 # 测试环境配置 ENV = 'staging' -# 芋道管理系统/测试环境 +# 南京锂膜管理系统/测试环境 VUE_APP_BASE_API = 'http://api-dashboard.yudao.iocoder.cn' # 静态资源地址 diff --git a/.env.static b/.env.static index 13901cd..6ed6398 100644 --- a/.env.static +++ b/.env.static @@ -4,9 +4,9 @@ NODE_ENV = development ENV = 'staging' # 页面标题 -VUE_APP_TITLE = 芋道管理系统 +VUE_APP_TITLE = 南京锂膜管理系统 -# 芋道管理系统/测试环境 +# 南京锂膜管理系统/测试环境 VUE_APP_BASE_API = 'http://127.0.0.1:48080' # 根据服务器或域名修改 diff --git a/package.json b/package.json index b7ef11c..55e9b65 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "yudao-ui-admin", "version": "1.7.3-snapshot", - "description": "芋道管理系统", + "description": "南京锂膜管理系统", "author": "芋道", "license": "MIT", "scripts": { diff --git a/src/api/asrs/warehouseStorehouse.js b/src/api/asrs/warehouseStorehouse.js index 79f7003..9f73fce 100644 --- a/src/api/asrs/warehouseStorehouse.js +++ b/src/api/asrs/warehouseStorehouse.js @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2023-08-22 15:31:37 * @LastEditors: zwq - * @LastEditTime: 2023-09-04 15:46:20 + * @LastEditTime: 2023-10-07 16:04:12 * @Description: */ import request from '@/utils/request' @@ -69,7 +69,14 @@ export function getWarehouseStorehousePage(query) { params: query }) } - +// 获得立库库位列表 +export function getWarehouseStorehouseList(query) { + return request({ + url: '/asrs/warehouse-storehouse/list', + method: 'get', + params: query + }) +} // 导出立库库位 Excel export function exportWarehouseStorehouseExcel(query) { return request({ diff --git a/src/api/fpw/finishProductWarehouse.js b/src/api/fpw/finishProductWarehouse.js index 10e7f23..38dc659 100644 --- a/src/api/fpw/finishProductWarehouse.js +++ b/src/api/fpw/finishProductWarehouse.js @@ -1,3 +1,10 @@ +/* + * @Author: zwq + * @Date: 2023-09-06 14:31:37 + * @LastEditors: zwq + * @LastEditTime: 2023-10-07 16:47:35 + * @Description: + */ import request from '@/utils/request' // 创建成品库 @@ -60,6 +67,14 @@ export function getCode() { method: 'post' }) } +// 获得立库库位列表 +export function getWarehouseStorehouseList(query) { + return request({ + url: '/asrs/finish-product-warehouse/list', + method: 'get', + params: query + }) +} // 获得仓库占用率 export function getOccupancy(id) { diff --git a/src/router/index.js b/src/router/index.js index 89e0106..99000c6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2023-08-17 15:10:53 * @LastEditors: zwq - * @LastEditTime: 2023-08-18 09:43:17 + * @LastEditTime: 2023-10-08 15:33:03 * @Description: */ import Vue from 'vue' @@ -110,7 +110,7 @@ Router.prototype.push = function push(location) { export default new Router({ base: process.env.VUE_APP_APP_NAME ? process.env.VUE_APP_APP_NAME : "/", - mode: 'history', // 去掉url中的# + mode: 'hash', // 去掉url中的# scrollBehavior: () => ({y: 0}), routes: constantRoutes }) diff --git a/src/views/asrs/Histogram/index.vue b/src/views/asrs/Histogram/index.vue index d3f7dc5..600b3e9 100644 --- a/src/views/asrs/Histogram/index.vue +++ b/src/views/asrs/Histogram/index.vue @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2023-08-22 15:01:54 * @LastEditors: zwq - * @LastEditTime: 2023-09-05 14:52:47 + * @LastEditTime: 2023-09-27 10:29:09 * @Description: -->