diff --git a/.env.development b/.env.development index 0338999..ac0f058 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ VUE_APP_BASE_API = '/api' ## 配置测试和本地开发时的 接口地址 -##VUE_APP_URL = "http://127.0.0.1:4523/m1/4061550-0-default" -VUE_APP_URL = "http://192.168.0.123:8111" +VUE_APP_URL = "http://127.0.0.1:4523/m1/4061550-0-default" +##VUE_APP_URL = "http://192.168.0.123:8111" ##VUE_APP_URL = "https://wms.yxtsoft.com" diff --git a/src/api/Common/dictcommons.js b/src/api/Common/dictcommons.js index 09bc4e2..e6dd260 100644 --- a/src/api/Common/dictcommons.js +++ b/src/api/Common/dictcommons.js @@ -2,7 +2,7 @@ import request from '@/utils/request' export function typeValues(data) { return request({ - url: '/wms/apiadmin/dictcommons/typeValues', + url: '/oms/apiadmin/dictcommons/typeValues', method: 'get', params: data }) @@ -11,7 +11,7 @@ export function typeValues(data) { // 获取数据字典(根据分组) export function getTypeValueList(data) { return request({ - url: '/wms/apiadmin/dictcommons/getTypeValueList', + url: '/oms/apiadmin/dictcommons/getTypeValueList', method: 'get', params: data }) @@ -20,7 +20,7 @@ export function getTypeValueList(data) { // 根据当前登录人orgSidPath(全路径sid)查询分公司 export function getOrgSidByPath(data) { return request({ - url: '/wms/apiadmin/sysstafforg/getOrgSidByPath', + url: '/oms/apiadmin/sysstafforg/getOrgSidByPath', method: 'get', params: data }) @@ -112,14 +112,14 @@ export function customerListPage(params) { // 获取省 export function getProvince() { return request({ - url: '/wms/apiadmin/regions/getProvince', + url: '/oms/apiadmin/regions/getProvince', method: 'get' }) } // 根据省sid获取该省的所有市 export function getCity(data) { return request({ - url: '/wms/apiadmin/regions/getCity', + url: '/oms/apiadmin/regions/getCity', method: 'get', params: data }) @@ -127,7 +127,7 @@ export function getCity(data) { // 根据市sid获取该市的所有县区 export function getCounty(data) { return request({ - url: '/wms/apiadmin/regions/getCounty', + url: '/oms/apiadmin/regions/getCounty', method: 'get', params: data }) @@ -136,7 +136,7 @@ export function getCounty(data) { // 获取售后服务--基础信息--供应商信息 export function choiceSupplierInfo(data) { return request({ - url: '/wms/apiadmin/supplierinfo/choiceSupplierInfo', + url: '/oms/apiadmin/supplierinfo/choiceSupplierInfo', method: 'get', params: data }) @@ -155,7 +155,7 @@ export function chooseproducts(params) { // 查询所有仓库 export function getWarehouses(params) { return request({ - url: '/wms/apiadmin/base/wmswarehouseinfo/listAll', + url: '/oms/apiadmin/base/wmswarehouseinfo/listAll', method: 'post', data: params, headers: { @@ -168,7 +168,7 @@ export function getWarehouses(params) { // 根据仓库查询库位 export function getWarehouseareas(data) { return request({ - url: '/wms/apiadmin/base/wmswarehousearea/selectAll', + url: '/oms/apiadmin/base/wmswarehousearea/selectAll', method: 'get', params: data, headers: { diff --git a/src/api/baseinfo/goodsShelves/goodsShelves.js b/src/api/baseinfo/goodsShelves/goodsShelves.js deleted file mode 100644 index de738e2..0000000 --- a/src/api/baseinfo/goodsShelves/goodsShelves.js +++ /dev/null @@ -1,41 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/warehouserack/listPage', - method: 'post', - data: params, - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/warehouserack/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveGoodsShelves: function(data) { - return request({ - url: '/wms/apiadmin/warehouserack/saveOrUpdate', - method: 'post', - data: data - }); - }, - - // 初始化 - initGoodsShelves: function(data) { - return request({ - url: '/wms/apiadmin/warehouserack/initialization/' + data, - method: 'get' - }); - }, - - -} diff --git a/src/api/baseinfo/supplier/supplier.js b/src/api/baseinfo/supplier/supplier.js deleted file mode 100644 index 42b7bec..0000000 --- a/src/api/baseinfo/supplier/supplier.js +++ /dev/null @@ -1,46 +0,0 @@ -import request from '@/utils/request' - -export default { - // 列表查询 - listPage: function(data) { - return request({ - url: '/wms/apiadmin/supplierinfo/listPage', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 保存 - saveOrUpdate: function(data) { - return request({ - url: '/wms/apiadmin/supplierinfo/save', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 回显 - fetchDetailsBySid: function(data) { - return request({ - url: '/wms/apiadmin/supplierinfo/fetchDetailsBySid/' + data, - method: 'get' - }) - }, - // 删除 - delBySids: function(data) { - return request({ - url: '/wms/apiadmin/supplierinfo/delBySids', - method: 'DELETE', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 获取供应商类型 - selSupplierType: function(data) { - return request({ - url: '/wms/apiadmin/suppliertype/selSupplierType', - method: 'post', - params: data - }) - } -} diff --git a/src/api/baseinfo/suppliertype/suppliertype.js b/src/api/baseinfo/suppliertype/suppliertype.js deleted file mode 100644 index 909d018..0000000 --- a/src/api/baseinfo/suppliertype/suppliertype.js +++ /dev/null @@ -1,31 +0,0 @@ -import request from '@/utils/request' - -export default { - // 列表查询 - listPage: function(data) { - return request({ - url: '/wms/apiadmin/suppliertype/listPage', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 保存 - saveOrUpdate: function(data) { - return request({ - url: '/wms/apiadmin/suppliertype/save', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 删除 - delBySids: function(data) { - return request({ - url: '/wms/apiadmin/suppliertype/delBySids', - method: 'DELETE', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - } -} diff --git a/src/api/baseinfo/warehouse/warehouse.js b/src/api/baseinfo/warehouse/warehouse.js deleted file mode 100644 index ea1a719..0000000 --- a/src/api/baseinfo/warehouse/warehouse.js +++ /dev/null @@ -1,54 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/warehouseinfo/listPage', - method: 'post', - data: params, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 仓库查询 - getAllWarehouse: function(params) { - return request({ - url: '/wms/apiadmin/warehouseinfo/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/warehouseinfo/updateStatus/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveWarehouse: function(data) { - return request({ - url: '/wms/apiadmin/warehouseinfo/saveOrUpdate', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }); - }, - - // 初始化 - initWarehouse: function(data) { - return request({ - url: '/wms/apiadmin/warehouseinfo/initialization/' + data, - method: 'get' - }); - }, - - -} diff --git a/src/api/baseinfo/warehouseArea/warehouseArea.js b/src/api/baseinfo/warehouseArea/warehouseArea.js deleted file mode 100644 index fd08dac..0000000 --- a/src/api/baseinfo/warehouseArea/warehouseArea.js +++ /dev/null @@ -1,53 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/warehousearea/listPage', - method: 'post', - data: params, - }) - }, - - // 库区查询 - getAllWarehousearea: function(params) { - return request({ - url: '/wms/apiadmin/warehousearea/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/warehousearea/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveWarehousearea: function(data) { - return request({ - url: '/wms/apiadmin/warehousearea/saveOrUpdate', - method: 'post', - data: data - }); - }, - - // 初始化 - initWarehousearea: function(data) { - return request({ - url: '/wms/apiadmin/warehousearea/initialization/' + data, - method: 'get' - }); - }, - - -} diff --git a/src/api/baseinfo/warehouseAreaType/warehouseAreaType.js b/src/api/baseinfo/warehouseAreaType/warehouseAreaType.js deleted file mode 100644 index 61dba33..0000000 --- a/src/api/baseinfo/warehouseAreaType/warehouseAreaType.js +++ /dev/null @@ -1,56 +0,0 @@ -import request from '@/utils/request' - -export default { - - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/warehouseareatype/listPage', - method: 'post', - data: params, - }) - }, - - // 库去类型查询 - getAllWarehouseareatype: function(params) { - return request({ - url: '/wms/apiadmin/warehouseareatype/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/warehouseareatype/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveWarehousearea: function(data) { - return request({ - url: '/wms/apiadmin/warehouseareatype/saveOrUpdate', - method: 'post', - data: data - }); - }, - - // 初始化 - initWarehousearea: function(data) { - return request({ - url: '/wms/apiadmin/warehouseareatype/initialization/' + data, - method: 'get' - }); - }, - - - -} diff --git a/src/api/goods/brand.js b/src/api/goods/brand.js deleted file mode 100644 index ff11ec6..0000000 --- a/src/api/goods/brand.js +++ /dev/null @@ -1,74 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 品牌查询 - getAllBrand: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveBrands: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 初始化 - initBrands: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/initialization/' + data, - method: 'get' - }); - }, - - - - // 品牌-- 删除 - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsbrand/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - -} diff --git a/src/api/goods/category.js b/src/api/goods/category.js deleted file mode 100644 index f4b0696..0000000 --- a/src/api/goods/category.js +++ /dev/null @@ -1,78 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 类别查询 - getAllType: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid, isEnable) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/updateIsEnable/' + sid + "/" + isEnable - }); - }, - - // 修改是否一品一码 - updateIsGoodsID: function(sid, isGoodsID) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/updateIsGoodsID/' + sid + "/" + isGoodsID - }); - }, - - // 新增、保存 - saveTypes: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 初始化 - initTypes: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/initialization/' + data, - method: 'get' - }); - }, - - - - // 类别-- 删除 - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodstype/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - -} diff --git a/src/api/goods/factory.js b/src/api/goods/factory.js deleted file mode 100644 index 9fbfd20..0000000 --- a/src/api/goods/factory.js +++ /dev/null @@ -1,70 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 厂家查询 - getAllFacturer: function(params) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveFacturer: function(data) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 初始化 - initFacturer: function(data) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/initialization/' + data, - method: 'get' - }); - }, - - // 厂家-- 删除 - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/base/basemanufacturer/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - -} diff --git a/src/api/goods/goods.js b/src/api/goods/goods.js deleted file mode 100644 index 2ddf2da..0000000 --- a/src/api/goods/goods.js +++ /dev/null @@ -1,73 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/listPage', - // url: '/wms/apiadmin/base/basegoodsspu/goodsListPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 修改是否可用状态 - updateIsEnable: function(sid, isEnable) { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/updateIsEnable/' + sid + "/" + isEnable - }); - }, - - // 新增、保存 - saveGoods: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/saveOrUpdate', - // url: '/wms/apiadmin/base/basegoodsspu/saveOrUpdateGoods', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 初始化 - initGoods: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/initialization/' + data, - // url: '/wms/apiadmin/base/basegoodsspu/goodsDetails/' + data, - method: 'get' - }); - }, - - - // 商品-- 删除 - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/delBySids', - // url: '/wms/apiadmin/base/basegoodsspu/delGoodsBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 下载模板 - downloadExcel: function() { - return request({ - url: '/wms/apiadmin/base/basegoodsspu/download', - method: 'post', - responseType: 'blob', // 表明返回服务器返回的数据类型 - headers: { - 'Content-Type': 'application/json' - } - }) - } - -} diff --git a/src/api/goods/unit.js b/src/api/goods/unit.js deleted file mode 100644 index 7bfef85..0000000 --- a/src/api/goods/unit.js +++ /dev/null @@ -1,70 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 单位查询 - getAllUnit: function(params) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - // 修改是否可用状态 - updateIsEnable: function(sid,isEnable) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/updateIsEnable/'+sid+"/"+isEnable - }); - }, - - - // 新增、保存 - saveUnits: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 初始化 - initUnits: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/initialization/' + data, - method: 'get' - }); - }, - - // 单位-- 删除 - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/base/basegoodsunit/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - -} diff --git a/src/api/inStorage/deliveryNotice.js b/src/api/inStorage/deliveryNotice.js deleted file mode 100644 index fc11c91..0000000 --- a/src/api/inStorage/deliveryNotice.js +++ /dev/null @@ -1,59 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/WmsAnsBill/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 详情初始化 - init: function(data) { - return request({ - url: '/wms/apiadmin/WmsAnsBill/details?sid=' + data, - method: 'get' - }); - }, - - // 收货初始化 - getInitDetails: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/getInitDetails?sourceSid=' + data, - method: 'get' - }); - }, - - - // 新增收货单 - save: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 确认收货单 - submit: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/confirm', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - -} diff --git a/src/api/inStorage/receivingGoods.js b/src/api/inStorage/receivingGoods.js deleted file mode 100644 index 89decb2..0000000 --- a/src/api/inStorage/receivingGoods.js +++ /dev/null @@ -1,104 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 初始化 - init: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/getDetailsInit?sid=' + data, - method: 'get' - }); - }, - - - // 新增、保存 - save: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 确认 - submit: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/confirm', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - - // 保存 上架单 - saveUpShelf: function(data) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/saveOrUpdate', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - - // 查询所有商品 - getGoodsListPage: function(params) { - return request({ - url: '/yxtbase/apiadmin/base/basegoodssku/getGoodsListPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/inventory/WmsReceiptBill/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - - - // 初始化新增上架单 - initUpshelf: function(params) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/getInit?sid=' + params.sid + "&orgPath=" + params.orgPath + "&userSid=" + - params.userSid, - method: 'get', - headers: { - 'Content-Type': 'application/json' - } - }); - - }, - -} diff --git a/src/api/inStorage/upShelf.js b/src/api/inStorage/upShelf.js deleted file mode 100644 index e13a9ad..0000000 --- a/src/api/inStorage/upShelf.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -export default { - -// 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/listPage', - method: 'post', - data: params, - headers: { 'Content-Type': 'application/json' } - }) - }, - - // 初始化 - init: function(data) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/details?sid='+data, - method: 'get' - }); - }, - - - // 新增、保存 - save: function(data) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/saveOrUpdate', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }); - }, - - - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/delBySids', - method: 'DELETE', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - -} diff --git a/src/api/outStorage/outStorage.js b/src/api/outStorage/outStorage.js deleted file mode 100644 index 1ef43dd..0000000 --- a/src/api/outStorage/outStorage.js +++ /dev/null @@ -1,99 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/WmsOutBill/listPage', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 详情初始化 - init: function(data) { - return request({ - url: '/wms/apiadmin/WmsOutBill/details', - method: 'get', - data: data - }); - }, - - // 初始配货单 - initDistribution: function(data) { - return request({ - url: '/wms/apiadmin/WmsDistributeBill/getInit', - method: 'get', - data: data - }); - }, - - - // 新增、保存 - save: function(data) { - return request({ - url: '/wms/apiadmin/WmsOutBill/saveOrUpdateOutBill', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - // 确认 - submit: function(data) { - return request({ - url: '/wms/apiadmin/WmsOutBill/confirm', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - - - - // 新增、保存 配货单 - saveDistribution: function(data) { - return request({ - url: '/wms/apiadmin/WmsDistributeBill/saveOrUpdateBill', - method: 'post', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - - deleteBySids: function(data) { - return request({ - url: '/wms/apiadmin/WmsShelfBill/delBySids', - method: 'DELETE', - data: data, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 查询分页列表 - getGoodsListPage: function(params) { - return request({ - url: '/wms/apiadmin/WmsOutBill/getInventoryList', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - -} diff --git a/src/api/portal/Upload.js b/src/api/portal/Upload.js index bf8ba31..f27cfef 100644 --- a/src/api/portal/Upload.js +++ b/src/api/portal/Upload.js @@ -4,7 +4,7 @@ import qs from 'qs' const base = process.env.VUE_APP_URL // 文件上传接口 -export const uploadFile = process.env.VUE_APP_BASE_API + '/wms/file/upload' +export const uploadFile = process.env.VUE_APP_BASE_API + '/oms/file/upload' // export const uploadFile = process.env.VUE_APP_BASE_API + '/customer/file/upload' diff --git a/src/api/reports/inOutStorage.js b/src/api/reports/inOutStorage.js deleted file mode 100644 index efd393d..0000000 --- a/src/api/reports/inOutStorage.js +++ /dev/null @@ -1,52 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventoryrecord/pageList', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 导出报表 - exportExcel: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventoryrecord/exportExcel', - method: 'post', - responseType: 'blob', // 表明返回服务器返回的数据类型 - data: data, - headers: { - 'Content-Type': 'application/json' - } - }); - }, - - - // 查询所有仓库 - getWarehouses: function(params) { - return request({ - url: '/wms/apiadmin/base/wmswarehouseinfo/listAll', - method: 'post', - data: params, - headers: { - 'Content-Type': 'application/json' - } - }) - }, - - // 根据仓库查询库位 - getWarehouseareas: function(data) { - return request({ - url: '/wms/apiadmin/base/wmswarehousearea/selectAll', - method: 'get', - params: data, - headers: { 'Content-Type': 'application/json' } - }); - }, -} diff --git a/src/api/storage/inventory.js b/src/api/storage/inventory.js deleted file mode 100644 index 327544f..0000000 --- a/src/api/storage/inventory.js +++ /dev/null @@ -1,49 +0,0 @@ -import request from '@/utils/request' - -export default { - // 查询分页列表 -- 库存查询 - listPage: function(data) { - return request({ - url: '/apiadmin/inventory/wmsinventory/listPage', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 库存查询 -- 删除 - deleteBySids: function(data) { - return request({ - url: '/riskcenter/v1/LoanLawsuitApply/deleteBySids', - method: 'DELETE', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 库存出入库记录 - getWmsInventoryRecordList: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventoryrecord/getWmsInventoryRecordList', - method: 'get', - params: data - }) - }, - // 查询分页列表 -- 出入库查询 - pageList: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventoryrecord/pageList', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }) - }, - // 出入库查询 -- 导出 - exportExcel: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventoryrecord/exportExcel', - method: 'post', - responseType: 'blob', // 表明返回服务器返回的数据类型 - data: data, - headers: { 'Content-Type': 'application/json' } - }) - } -} diff --git a/src/api/storage/stocktaking.js b/src/api/storage/stocktaking.js deleted file mode 100644 index 282f49f..0000000 --- a/src/api/storage/stocktaking.js +++ /dev/null @@ -1,51 +0,0 @@ -import request from '@/utils/request' - -export default { - - // 查询分页列表 - listPage: function(params) { - return request({ - url: '/wms/v1/wmsinventorycheckbill/listPage', - method: 'post', - data: params, - headers: { 'Content-Type': 'application/json' } - }) - }, -// 新增、保存 - save: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventorycheckbill/save', - method: 'post', - data: data, - headers: { 'Content-Type': 'application/json' } - }); - }, - - // 初始化 - init: function(data) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventorycheckbill/' + data, - method: 'get' - }); - }, - -// 查询所有商品 - getWarehousesGoods: function(params) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventory/invenGoodsListPage', - method: 'post', - data: params, - headers: { 'Content-Type': 'application/json' } - }) - }, - - // 盘点 - inven: function(params) { - return request({ - url: '/wms/apiadmin/inventory/wmsinventory/invenGoodsListPage', - method: 'post', - data: params, - headers: { 'Content-Type': 'application/json' } - }) - }, -} diff --git a/src/api/system/Role/role.js b/src/api/system/Role/role.js index bd1c18f..0fa11e0 100644 --- a/src/api/system/Role/role.js +++ b/src/api/system/Role/role.js @@ -13,7 +13,7 @@ export function rolemenus(data) { // 获取左侧菜单 export function getrolemenus(data) { return request({ - url: '/wms/apiadmin/sysmenu/sourcemenutree', + url: '/oms/apiadmin/sysmenu/sourcemenutree', method: 'POST', data: data, headers: { 'Content-Type': 'application/json', diff --git a/src/api/system/departments/departments.js b/src/api/system/departments/departments.js index 35d8ef5..55e8e77 100644 --- a/src/api/system/departments/departments.js +++ b/src/api/system/departments/departments.js @@ -6,7 +6,7 @@ let tokens = window.sessionStorage.getItem('token') // 获取菜单 分页列表 export function pageList(data) { return request({ - url: '/wms/apiadmin/sysorganization/listPage', + url: '/oms/apiadmin/sysorganization/listPage', method: 'POST', data: data, headers: { @@ -18,7 +18,7 @@ export function pageList(data) { // 查询左侧部门列表 export function orgList(data) { return request({ - url: '/wms/apiadmin/sysorganization/list', + url: '/oms/apiadmin/sysorganization/list', method: 'get', data: data, headers: { @@ -30,7 +30,7 @@ export function orgList(data) { // 编辑部门信息 export function postOrgtree(data) { return request({ - url: '/wms/apiadmin/sysorganization/update/' + data.sid, + url: '/oms/apiadmin/sysorganization/update/' + data.sid, method: 'POST', data: data, headers: { @@ -42,7 +42,7 @@ export function postOrgtree(data) { // 获取 机构分页列表(编辑部门信息) export function putOrgtree(data) { return request({ - url: '/wms/apiadmin/sysorganization/update/' + data.sid, + url: '/oms/apiadmin/sysorganization/update/' + data.sid, method: 'POST', data: data, headers: { @@ -55,7 +55,7 @@ export function putOrgtree(data) { // 新增部门信息 export function addOrgTree(data) { return request({ - url: '/wms/apiadmin/sysorganization/save', + url: '/oms/apiadmin/sysorganization/save', method: 'POST', data: data, headers: { @@ -79,7 +79,7 @@ export function selectBySid(data) { // 树 节点名称 删除 export function delOrgtree(data) { return request({ - url: `/wms/apiadmin/sysorganization/delBySid/` + data.sid, + url: `/oms/apiadmin/sysorganization/delBySid/` + data.sid, method: 'get', data: qs.stringify(data), headers: { @@ -88,10 +88,10 @@ export function delOrgtree(data) { } }) } -// 查询主管人员 旧的:/wms/apiadmin/sysstafforg/staffinfoList +// 查询主管人员 旧的:/oms/apiadmin/sysstafforg/staffinfoList export function getStaff(data) { return request({ - url: '/wms/apiadmin/sysstaffinfo/getStaffNameByDeptSid', + url: '/oms/apiadmin/sysstaffinfo/getStaffNameByDeptSid', method: 'get', params: data, headers: { @@ -103,7 +103,7 @@ export function getStaff(data) { // 查询分管人员 export function getStaffName(params) { return request({ - url: '/wms/apiadmin/sysstaffinfo/getStaffName', + url: '/oms/apiadmin/sysstaffinfo/getStaffName', method: 'get', params: params, headers: { @@ -115,7 +115,7 @@ export function getStaffName(params) { // 查看二维码 export function getQrCode(data) { return request({ - url: '/wms/apiadmin/sysorganization/getQrCode/' + data.sid, + url: '/oms/apiadmin/sysorganization/getQrCode/' + data.sid, method: 'post', data: data, headers: { diff --git a/src/api/system/dictType/dictCommon.js b/src/api/system/dictType/dictCommon.js index 8c0c095..8dbdef3 100644 --- a/src/api/system/dictType/dictCommon.js +++ b/src/api/system/dictType/dictCommon.js @@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token'); //获取字典子集 分页列表 export function dictCommonList(data) { return request({ - url: '/wms/apiadmin/dictcommons/pageList', + url: '/oms/apiadmin/dictcommons/pageList', method: 'post', data: data, headers: {'Content-Type': 'application/json'} @@ -15,7 +15,7 @@ export function dictCommonList(data) { //保存 字典子级 export function savedictCommon(data) { return request({ - url: '/wms/apiadmin/dictcommons/save', + url: '/oms/apiadmin/dictcommons/save', method: 'POST', data: data , headers: {'Content-Type': 'application/json', @@ -36,7 +36,7 @@ export function getRoleInfo(data) { //根据sid 修改 数据字典 export function putdictCommon(data) { return request({ - url: '/wms/apiadmin/dictcommons/update/' + data.sid, + url: '/oms/apiadmin/dictcommons/update/' + data.sid, method: 'POST', data: data , headers: {'Content-Type': 'application/json', @@ -48,7 +48,7 @@ export function putdictCommon(data) { //根据sid 删除菜单 信息 export function deldictCommon(data) { return request({ - url: '/wms/apiadmin/dictcommons/delete/' + data.sid, + url: '/oms/apiadmin/dictcommons/delete/' + data.sid, method: 'DELETE', data: data, headers: {'Content-Type': 'application/json', diff --git a/src/api/system/dictType/index.js b/src/api/system/dictType/index.js index 253e8e1..89846b9 100644 --- a/src/api/system/dictType/index.js +++ b/src/api/system/dictType/index.js @@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token') // 获取菜单 分页列表 export function pageList(data) { return request({ - url: '/wms/apiadmin/dicttypes/pageList', + url: '/oms/apiadmin/dicttypes/pageList', method: 'POST', data: data, headers: { @@ -18,7 +18,7 @@ export function pageList(data) { // 根据sid 修改 export function putDictType(data) { return request({ - url: '/wms/apiadmin/dicttypes/update/' + data.sid, + url: '/oms/apiadmin/dicttypes/update/' + data.sid, method: 'POST', data: qs.stringify(data) }) @@ -27,7 +27,7 @@ export function putDictType(data) { // 保存 角色信息 export function saveDictType(data) { return request({ - url: '/wms/apiadmin/dicttypes/save', + url: '/oms/apiadmin/dicttypes/save', method: 'POST', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } @@ -46,7 +46,7 @@ export function getRoleInfo(data) { // 数据字段--映射管理保存 export function saveMappingList(data) { return request({ - url: '/wms/apiadmin/sysmapping/saveMappingList', + url: '/oms/apiadmin/sysmapping/saveMappingList', method: 'POST', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } @@ -56,7 +56,7 @@ export function saveMappingList(data) { // 数据字段--映射管理保存 export function selectMappingListInfo(data) { return request({ - url: '/wms/apiadmin/sysmapping/selectMappingListInfo', + url: '/oms/apiadmin/sysmapping/selectMappingListInfo', method: 'post', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } @@ -66,7 +66,7 @@ export function selectMappingListInfo(data) { // 根据sid 删除菜单 信息 export function delDictType(data) { return request({ - url: '/wms/apiadmin/dicttypes/delete/' + data.sid, + url: '/oms/apiadmin/dicttypes/delete/' + data.sid, method: 'DELETE', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } diff --git a/src/api/system/log/index.js b/src/api/system/log/index.js index 66b4334..66b7f14 100644 --- a/src/api/system/log/index.js +++ b/src/api/system/log/index.js @@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token'); //获取菜单 分页列表 export function logPageList(data) { return request({ - url: '/wms/apiadmin/systemlog/listPage', + url: '/oms/apiadmin/systemlog/listPage', method: 'POST', data: data, headers: {'Content-Type': 'application/json', diff --git a/src/api/system/menu/index.js b/src/api/system/menu/index.js index 5aef650..9d93107 100644 --- a/src/api/system/menu/index.js +++ b/src/api/system/menu/index.js @@ -7,7 +7,7 @@ let tokens = window.sessionStorage.getItem('token'); //获取菜单 分页列表 export function pageList(data) { return request({ - url: '/wms/apiadmin/sysmenu/listAllVoForSource', + url: '/oms/apiadmin/sysmenu/listAllVoForSource', method: 'POST', data: data, headers: { @@ -20,7 +20,7 @@ export function pageList(data) { // 新增保存 菜单信息 export function saveMenusInfo(data) { return request({ - url: '/wms/apiadmin/sysmenu/save', + url: '/oms/apiadmin/sysmenu/save', method: 'POST', data: data, headers: {'Content-Type': 'application/json'} @@ -30,7 +30,7 @@ export function saveMenusInfo(data) { // 修改保存 菜单信息 export function putMenusInfo(data) { return request({ - url: '/wms/apiadmin/sysmenu/update/' + data.sid, + url: '/oms/apiadmin/sysmenu/update/' + data.sid, method: 'POST', data: data, headers: {'Content-Type': 'application/json'} @@ -40,7 +40,7 @@ export function putMenusInfo(data) { //根据sid 删除单个 资源信息 export function delMenus(data) { return request({ - url: '/wms/apiadmin/sysmenu/delBySids/' + data.sid, + url: '/oms/apiadmin/sysmenu/delBySids/' + data.sid, method: 'get', data: qs.stringify(data), headers: { @@ -53,7 +53,7 @@ export function delMenus(data) { // 修改状态 export function IsEnable(data) { return request({ - url: '/wms/apiadmin/sysmenu/updateIsEnable/' + data.sid + '/' + data.isEnable, + url: '/oms/apiadmin/sysmenu/updateIsEnable/' + data.sid + '/' + data.isEnable, method: 'POST', /* data: qs.stringify(data),*/ headers: { diff --git a/src/api/system/postManage/index.js b/src/api/system/postManage/index.js index ab22a72..cbb4c7d 100644 --- a/src/api/system/postManage/index.js +++ b/src/api/system/postManage/index.js @@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token'); //获取菜单 分页列表 export function pageList(data) { return request({ - url: '/wms/apiadmin/syspost/listPage', + url: '/oms/apiadmin/syspost/listPage', method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -17,7 +17,7 @@ export function pageList(data) { // 查询部门列表 export function orgList(data){ return request({ - url: '/wms/apiadmin/sysorganization/list', + url: '/oms/apiadmin/sysorganization/list', method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -28,7 +28,7 @@ export function orgList(data){ // 新增 export function savePost(data){ return request({ - url: '/wms/apiadmin/syspost/save', + url: '/oms/apiadmin/syspost/save', method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -39,7 +39,7 @@ export function savePost(data){ // 修改 export function putOrgroles(data){ return request({ - url: '/wms/apiadmin/syspost/update/' +data.sid, + url: '/oms/apiadmin/syspost/update/' +data.sid, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -51,7 +51,7 @@ export function putOrgroles(data){ // 删除 export function delOrgroles(data){ return request({ - url: '/wms/apiadmin/syspost/delBySids/' + data.sids, + url: '/oms/apiadmin/syspost/delBySids/' + data.sids, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -62,7 +62,7 @@ export function delOrgroles(data){ export function pullDown(data){ return request({ - url: '/wms/apiadmin/dictcommons/typeValues', + url: '/oms/apiadmin/dictcommons/typeValues', method: 'get', params: data }) @@ -71,7 +71,7 @@ export function pullDown(data){ // 查询岗位列表 export function selectList(data){ return request({ - url: '/wms/apiadmin/syspost/selectList', + url: '/oms/apiadmin/syspost/selectList', method: 'get', params: data }) diff --git a/src/api/system/roleAdminister/index.js b/src/api/system/roleAdminister/index.js index c10cbd5..3a76e26 100644 --- a/src/api/system/roleAdminister/index.js +++ b/src/api/system/roleAdminister/index.js @@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token'); // 业务角色 列表 export function roleOrgList(data){ return request({ - url: '/wms/apiadmin/sysrole/listPage', + url: '/oms/apiadmin/sysrole/listPage', method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -16,7 +16,7 @@ export function roleOrgList(data){ export function postList(data){ return request({ - url: '/wms/apiadmin/syspost/list', + url: '/oms/apiadmin/syspost/list', method: 'get', data: data, headers: {'Content-Type': 'application/json'} @@ -26,7 +26,7 @@ export function postList(data){ // 获取数据字典下拉列表 export function typeValues(data) { return request({ - url: '/wms/apiadmin/dictcommons/typeValues', + url: '/oms/apiadmin/dictcommons/typeValues', method: 'get', params: data }) @@ -35,7 +35,7 @@ export function typeValues(data) { // 设置是否可用:isEnable:1可用,0不可用 export function setRoleEnable(data) { return request({ - url: '/wms/apiadmin/sysrole/setIsEnable/' + data.sid + '/' + data.isEnable, + url: '/oms/apiadmin/sysrole/setIsEnable/' + data.sid + '/' + data.isEnable, method: 'POST', data: data, headers: { @@ -52,7 +52,7 @@ export function setRoleEnable(data) { * */ export function saveOrgroles(data) { return request({ - url: '/wms/apiadmin/sysrole/save', + url: '/oms/apiadmin/sysrole/save', method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -69,7 +69,7 @@ export function saveOrgroles(data) { * */ export function putOrgroles(data) { return request({ - url: `/wms/apiadmin/sysrole/update/${data.sid}`, + url: `/oms/apiadmin/sysrole/update/${data.sid}`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -84,7 +84,7 @@ export function putOrgroles(data) { * */ export function delOrgroles(data) { return request({ - url: `/wms/apiadmin/sysrole/delBySids/${data.sid}`, + url: `/oms/apiadmin/sysrole/delBySids/${data.sid}`, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -95,7 +95,7 @@ export function delOrgroles(data) { // 移动端授权 export function getRoleMenuList(data) { return request({ - url: '/wms/apiadmin/sysmobilemenurole/getRoleMenuList', + url: '/oms/apiadmin/sysmobilemenurole/getRoleMenuList', method: 'post', params: { roleSid: data } }) @@ -104,7 +104,7 @@ export function getRoleMenuList(data) { // 菜单授权保存 export function saveRoleMenuList(data) { return request({ - url: `/wms/apiadmin/sysmobilemenurole/saveRoleMenuList`, + url: `/oms/apiadmin/sysmobilemenurole/saveRoleMenuList`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -116,7 +116,7 @@ export function saveRoleMenuList(data) { // 菜单授权 export function roleMenuTree(data) { return request({ - url: `/wms/apiadmin/sysmenu/listAllByRoleSid`, + url: `/oms/apiadmin/sysmenu/listAllByRoleSid`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -128,7 +128,7 @@ export function roleMenuTree(data) { // 菜单授权保存 export function saveorgrolemenus(data) { return request({ - url: `/wms/apiadmin/sysrikeauthorize/updateRoleAndMenu`, + url: `/oms/apiadmin/sysrikeauthorize/updateRoleAndMenu`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -139,7 +139,7 @@ export function saveorgrolemenus(data) { // 资源授权 export function sourceMenuTree(data) { return request({ - url: `/wms/apiadmin/syssource/listAllByRoleSid`, + url: `/oms/apiadmin/syssource/listAllByRoleSid`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -150,7 +150,7 @@ export function sourceMenuTree(data) { // 资源授权保存 export function saveSource(data) { return request({ - url: `/wms/apiadmin/syssourcerole/updateRoleAndSource`, + url: `/oms/apiadmin/syssourcerole/updateRoleAndSource`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -161,14 +161,14 @@ export function saveSource(data) { // 功能授权 export function funMenuTree(data) { return request({ - url: `/wms/apiadmin/sysfunction/getFunctionAuthorization/` + data.roleSid, + url: `/oms/apiadmin/sysfunction/getFunctionAuthorization/` + data.roleSid, method: 'get' }) } // 功能授权保存 export function savefunMenu(data) { return request({ - url: `/wms/apiadmin/sysrolefunction/updateRoleAndFunction`, + url: `/oms/apiadmin/sysrolefunction/updateRoleAndFunction`, method: 'POST', data: data, headers: {'Content-Type': 'application/json', @@ -180,7 +180,7 @@ export function savefunMenu(data) { // 角色授权 export function selMenuByRole(data) { return request({ - url: `/wms/apiadmin/sysmenurole/selMenuByRole`, + url: `/oms/apiadmin/sysmenurole/selMenuByRole`, method: 'post', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } @@ -190,7 +190,7 @@ export function selMenuByRole(data) { // 角色授权保存 export function updateDataByRoleMenu(data) { return request({ - url: `/wms/apiadmin/sysmenurole/updateDataByRoleMenu`, + url: `/oms/apiadmin/sysmenurole/updateDataByRoleMenu`, method: 'POST', data: data, headers: { 'Content-Type': 'application/json', 'token': tokens } diff --git a/src/api/system/roleAdminister/rolemenus.js b/src/api/system/roleAdminister/rolemenus.js index 54ffe28..ccc93bc 100644 --- a/src/api/system/roleAdminister/rolemenus.js +++ b/src/api/system/roleAdminister/rolemenus.js @@ -9,7 +9,7 @@ import qs from 'qs' * */ export function roleMenuTree(data){ return request({ - url: '/wms/apiadmin/orgrolemenus/menutree', + url: '/oms/apiadmin/orgrolemenus/menutree', method: 'post', data: data, headers: {'Content-Type': 'application/json'} @@ -23,7 +23,7 @@ export function roleMenuTree(data){ * */ export function saveorgrolemenus(data){ return request({ - url: '/wms/apiadmin/orgrolemenus', + url: '/oms/apiadmin/orgrolemenus', method: 'post', data: data, headers: {'Content-Type': 'application/json'} diff --git a/src/api/system/userManage/index.js b/src/api/system/userManage/index.js index 4fda1b1..3749ee0 100644 --- a/src/api/system/userManage/index.js +++ b/src/api/system/userManage/index.js @@ -5,7 +5,7 @@ import qs from 'qs' let tokens = window.sessionStorage.getItem('token'); export function userList(data){ return request({ - url: '/wms/apiadmin/sysuser/listPage', + url: '/oms/apiadmin/sysuser/listPage', method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -16,7 +16,7 @@ export function userList(data){ // 新增 export function userAdd(data){ return request({ - url: '/wms/apiadmin/sysuser/save', + url: '/oms/apiadmin/sysuser/save', method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -27,7 +27,7 @@ export function userAdd(data){ // 更新 export function userUpdata(data){ return request({ - url: '/wms/apiadmin/sysuser/update/' +data.sid, + url: '/oms/apiadmin/sysuser/update/' +data.sid, method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -39,7 +39,7 @@ export function userUpdata(data){ // 删除 export function delUser(data){ return request({ - url: '/wms/apiadmin/sysuser/delBySid/' +data.sid, + url: '/oms/apiadmin/sysuser/delBySid/' +data.sid, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -50,7 +50,7 @@ export function delUser(data){ // 初始化密码 export function initPwd(data){ return request({ - url: '/wms/apiadmin/sysuser/initPwd/' +data.sid, + url: '/oms/apiadmin/sysuser/initPwd/' +data.sid, method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -61,7 +61,7 @@ export function initPwd(data){ // 根据sid查询一条信息 export function userSingle(data){ return request({ - url: '/wms/apiadmin/sysuser/fetchBySid/' +data.sid, + url: '/oms/apiadmin/sysuser/fetchBySid/' +data.sid, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -72,7 +72,7 @@ export function userSingle(data){ // 单条用户的角色列表 export function setRole(data){ return request({ - url: '/wms/apiadmin/sysrole/listAllByUserSid/' +data.sid, + url: '/oms/apiadmin/sysrole/listAllByUserSid/' +data.sid, method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -83,7 +83,7 @@ export function setRole(data){ // 角色列表 export function saveOrgRole(data){ return request({ - url: '/wms/apiadmin/sysuserrole/update', + url: '/oms/apiadmin/sysuserrole/update', method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -94,7 +94,7 @@ export function saveOrgRole(data){ // 查询角色列表 export function roleList(data){ return request({ - url: '/wms/apiadmin/sysrole/listAll', + url: '/oms/apiadmin/sysrole/listAll', method: 'post', data: data, headers: {'Content-Type': 'application/json', @@ -105,7 +105,7 @@ export function roleList(data){ // 查询部门列表 export function orgList(data){ return request({ - url: '/wms/apiadmin/sysorganization/list', + url: '/oms/apiadmin/sysorganization/list', method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -116,7 +116,7 @@ export function orgList(data){ // 查询岗位列表 export function postList(data){ return request({ - url: '/wms/apiadmin/syspost/fetchByOrgSid/'+data.sid, + url: '/oms/apiadmin/syspost/fetchByOrgSid/'+data.sid, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -128,7 +128,7 @@ export function postList(data){ // 获取验证码 export function getCode(data){ return request({ - url: '/wms/apiadmin/sysuser/sendMessageCode/'+data.phone, + url: '/oms/apiadmin/sysuser/sendMessageCode/'+data.phone, method: 'get', data: data, headers: {'Content-Type': 'application/json', @@ -140,7 +140,7 @@ export function getCode(data){ // 设置是否可用:isEnable:1可用,0不可用 export function setRoleEnable(data) { return request({ - url: '/wms/apiadmin/sysuser/setIsEnable/' + data.sid + '/' + data.isEnable, + url: '/oms/apiadmin/sysuser/setIsEnable/' + data.sid + '/' + data.isEnable, method: 'post', data: data, headers: { diff --git a/src/api/user.js b/src/api/user.js index 0bbed7b..940d198 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -5,7 +5,7 @@ import qs from 'qs' // 登录 export function doLogin(data) { return request({ - url: '/wms/apiadmin/sysuser/login', + url: '/oms/apiadmin/sysuser/login', method: 'post', data: data, headers: { @@ -17,7 +17,7 @@ export function doLogin(data) { // 注册发送验证码 export function registerSendMessageCode(code) { return request({ - url: '/wms/apiadmin/sysuser/sendMessageCode/?mobile=' + code, + url: '/oms/apiadmin/sysuser/sendMessageCode/?mobile=' + code, method: 'post', headers: { 'Content-Type': 'application/json' @@ -29,7 +29,7 @@ export function registerSendMessageCode(code) { // 用户注册 export function registUser(data) { return request({ - url: '/wms/apiadmin/sysuser/register', + url: '/oms/apiadmin/sysuser/register', method: 'post', data: data, headers: { @@ -42,7 +42,7 @@ export function registUser(data) { // 绑定企业/组织 export function bindOrganization(data) { return request({ - url: '/wms/apiadmin/sysuser/bindOrganization', + url: '/oms/apiadmin/sysuser/bindOrganization', method: 'post', data: data, headers: { @@ -55,7 +55,7 @@ export function bindOrganization(data) { // 选择企业/组织sid export function selOrganization(data) { return request({ - url: '/wms/apiadmin/sysuser/selOrganization', + url: '/oms/apiadmin/sysuser/selOrganization', method: 'post', data: data, headers: { diff --git a/src/router/index.js b/src/router/index.js index 072b3ad..943e6b0 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -49,238 +49,238 @@ export const constantRoutes = [ }] }, - { - path: '/baseInfo', - component: Layout, - redirect: null, - meta: { - title: '基础信息' - }, - children: [{ - path: '/warehouses/warehouse', - name: 'Warehouse', - component: () => import('@/views/baseInfo/warehouses/warehouse/index'), - meta: { - title: '仓库管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/warehouses/warehouseArea', - name: 'WarehouseArea', - component: () => import('@/views/baseInfo/warehouses/warehouseArea/index'), - meta: { - title: '库区管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/warehouses/warehouseAreaType', - name: 'WarehouseAreaType', - component: () => import('@/views/baseInfo/warehouses/warehouseAreaType/index'), - meta: { - title: '库区类型管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/warehouses/goodsShelves', - name: 'GoodsShelves', - component: () => import('@/views/baseInfo/warehouses/goodsShelves/index'), - meta: { - title: '库位管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/supplier/supplier', - name: 'Supplier', - component: () => import('@/views/baseInfo/supplier/supplier/supplier'), - meta: { - title: '供应商管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/supplier/suppliertype', - name: 'Suppliertype', - component: () => import('@/views/baseInfo/supplier/suppliertype/suppliertype'), - meta: { - title: '供应商类型管理', - icon: 'product-add' - }, - hidden: true - }, + // { + // path: '/baseInfo', + // component: Layout, + // redirect: null, + // meta: { + // title: '基础信息' + // }, + // children: [{ + // path: '/warehouses/warehouse', + // name: 'Warehouse', + // component: () => import('@/views/baseInfo/warehouses/warehouse/index'), + // meta: { + // title: '仓库管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/warehouses/warehouseArea', + // name: 'WarehouseArea', + // component: () => import('@/views/baseInfo/warehouses/warehouseArea/index'), + // meta: { + // title: '库区管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/warehouses/warehouseAreaType', + // name: 'WarehouseAreaType', + // component: () => import('@/views/baseInfo/warehouses/warehouseAreaType/index'), + // meta: { + // title: '库区类型管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/warehouses/goodsShelves', + // name: 'GoodsShelves', + // component: () => import('@/views/baseInfo/warehouses/goodsShelves/index'), + // meta: { + // title: '库位管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/supplier/supplier', + // name: 'Supplier', + // component: () => import('@/views/baseInfo/supplier/supplier/supplier'), + // meta: { + // title: '供应商管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/supplier/suppliertype', + // name: 'Suppliertype', + // component: () => import('@/views/baseInfo/supplier/suppliertype/suppliertype'), + // meta: { + // title: '供应商类型管理', + // icon: 'product-add' + // }, + // hidden: true + // }, - ] - }, - { - path: '/goods', - component: Layout, - redirect: null, - meta: { - title: '商品管理' - }, - children: [{ - path: '/brands/index', - name: 'Brands', - component: () => import('@/views/goods/brands/index'), - meta: { - title: '品牌管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/category/index', - name: 'Category', - component: () => import('@/views/goods/category/index'), - meta: { - title: '商品类别', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/factory/index', - name: 'Factory', - component: () => import('@/views/goods/factory/index'), - meta: { - title: '厂家管理', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/unit/index', - name: 'Unit', - component: () => import('@/views/goods/unit/index'), - meta: { - title: '计量单位', - icon: 'product-add' - }, - hidden: true - }, - { - path: '/goods/index', - name: 'Goods', - component: () => import('@/views/goods/goods/index'), - meta: { - title: '商品管理', - icon: 'product-add' - }, - hidden: true - }, + // ] + // }, + // { + // path: '/goods', + // component: Layout, + // redirect: null, + // meta: { + // title: '商品管理' + // }, + // children: [{ + // path: '/brands/index', + // name: 'Brands', + // component: () => import('@/views/goods/brands/index'), + // meta: { + // title: '品牌管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/category/index', + // name: 'Category', + // component: () => import('@/views/goods/category/index'), + // meta: { + // title: '商品类别', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/factory/index', + // name: 'Factory', + // component: () => import('@/views/goods/factory/index'), + // meta: { + // title: '厂家管理', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/unit/index', + // name: 'Unit', + // component: () => import('@/views/goods/unit/index'), + // meta: { + // title: '计量单位', + // icon: 'product-add' + // }, + // hidden: true + // }, + // { + // path: '/goods/index', + // name: 'Goods', + // component: () => import('@/views/goods/goods/index'), + // meta: { + // title: '商品管理', + // icon: 'product-add' + // }, + // hidden: true + // }, - ] - }, - { - path: '/inStorage', - component: Layout, - redirect: '/inStorage', - meta: { - title: '入库管理' - }, - children: [{ - path: '/deliveryNotice/index', - component: () => import('@/views/inStorage/deliveryNotice/index'), - name: 'DeliveryNotice', - meta: { - title: '到货通知单', - noCache: true - } - }, - { - path: '/receivingGoods/index', - component: () => import('@/views/inStorage/receivingGoods/index'), - name: 'ReceivingGoods', - meta: { - title: '收货单管理', - noCache: true - } - }, - { - path: '/upShelf/index', - component: () => import('@/views/inStorage/upShelf/index'), - name: 'UpShelf', - meta: { - title: '上架单管理', - noCache: true - } - }, + // ] + // }, + // { + // path: '/inStorage', + // component: Layout, + // redirect: '/inStorage', + // meta: { + // title: '入库管理' + // }, + // children: [{ + // path: '/deliveryNotice/index', + // component: () => import('@/views/inStorage/deliveryNotice/index'), + // name: 'DeliveryNotice', + // meta: { + // title: '到货通知单', + // noCache: true + // } + // }, + // { + // path: '/receivingGoods/index', + // component: () => import('@/views/inStorage/receivingGoods/index'), + // name: 'ReceivingGoods', + // meta: { + // title: '收货单管理', + // noCache: true + // } + // }, + // { + // path: '/upShelf/index', + // component: () => import('@/views/inStorage/upShelf/index'), + // name: 'UpShelf', + // meta: { + // title: '上架单管理', + // noCache: true + // } + // }, - ] - }, + // ] + // }, - { - path: '/outStorage', - component: Layout, - redirect: '/outStorage', - meta: { - title: '出库管理' - }, - children: [{ - path: '/outStorage/index', - component: () => import('@/views/outStorage/index'), - name: 'OutStorage', - meta: { - title: '出库单管理', - noCache: true - } - }, + // { + // path: '/outStorage', + // component: Layout, + // redirect: '/outStorage', + // meta: { + // title: '出库管理' + // }, + // children: [{ + // path: '/outStorage/index', + // component: () => import('@/views/outStorage/index'), + // name: 'OutStorage', + // meta: { + // title: '出库单管理', + // noCache: true + // } + // }, - ] - }, + // ] + // }, - { - path: '/storage', - component: Layout, - redirect: '/storage', - meta: { - title: '库存管理' - }, - children: [{ - path: '/inventory/inventory', - component: () => import('@/views/storage/inventory/inventory.vue'), - name: 'Inventory', - meta: { - title: '库存查询', - noCache: true - } - }, - { - path: '/stocktaking/index', - component: () => import('@/views/storage/stocktaking/index'), - name: 'Stocktaking', - meta: { - title: '盘点管理', - noCache: true - } - }, + // { + // path: '/storage', + // component: Layout, + // redirect: '/storage', + // meta: { + // title: '库存管理' + // }, + // children: [{ + // path: '/inventory/inventory', + // component: () => import('@/views/storage/inventory/inventory.vue'), + // name: 'Inventory', + // meta: { + // title: '库存查询', + // noCache: true + // } + // }, + // { + // path: '/stocktaking/index', + // component: () => import('@/views/storage/stocktaking/index'), + // name: 'Stocktaking', + // meta: { + // title: '盘点管理', + // noCache: true + // } + // }, - ] - }, + // ] + // }, - { - path: '/reports', - component: Layout, - redirect: '/reports', - meta: { - title: '报表管理' - }, - children: [ { - path: '/inOutStorage/index', - component: () => import('@/views/reports/inOutStorage/index.vue'), - name: 'InventoryRefer', - meta: { title: '出入库查询', noCache: true } - }, - ] - }, + // { + // path: '/reports', + // component: Layout, + // redirect: '/reports', + // meta: { + // title: '报表管理' + // }, + // children: [ { + // path: '/inOutStorage/index', + // component: () => import('@/views/reports/inOutStorage/index.vue'), + // name: 'InventoryRefer', + // meta: { title: '出入库查询', noCache: true } + // }, + // ] + // }, diff --git a/src/views/baseInfo/supplier/supplier/relation/openingbank.vue b/src/views/baseInfo/supplier/supplier/relation/openingbank.vue deleted file mode 100644 index d439332..0000000 --- a/src/views/baseInfo/supplier/supplier/relation/openingbank.vue +++ /dev/null @@ -1,174 +0,0 @@ - - - - - diff --git a/src/views/baseInfo/supplier/supplier/supplier.vue b/src/views/baseInfo/supplier/supplier/supplier.vue deleted file mode 100644 index c4b2f95..0000000 --- a/src/views/baseInfo/supplier/supplier/supplier.vue +++ /dev/null @@ -1,270 +0,0 @@ - - - - diff --git a/src/views/baseInfo/supplier/supplier/supplierAdd.vue b/src/views/baseInfo/supplier/supplier/supplierAdd.vue deleted file mode 100644 index 8d291e0..0000000 --- a/src/views/baseInfo/supplier/supplier/supplierAdd.vue +++ /dev/null @@ -1,475 +0,0 @@ - - - - - diff --git a/src/views/baseInfo/supplier/supplier/supplierInfo.vue b/src/views/baseInfo/supplier/supplier/supplierInfo.vue deleted file mode 100644 index eb3fcac..0000000 --- a/src/views/baseInfo/supplier/supplier/supplierInfo.vue +++ /dev/null @@ -1,236 +0,0 @@ - - - - - diff --git a/src/views/baseInfo/supplier/suppliertype/suppliertype.vue b/src/views/baseInfo/supplier/suppliertype/suppliertype.vue deleted file mode 100644 index 8263136..0000000 --- a/src/views/baseInfo/supplier/suppliertype/suppliertype.vue +++ /dev/null @@ -1,296 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/goodsShelves/goodsShelvesAdd.vue b/src/views/baseInfo/warehouses/goodsShelves/goodsShelvesAdd.vue deleted file mode 100644 index b3c8ee5..0000000 --- a/src/views/baseInfo/warehouses/goodsShelves/goodsShelvesAdd.vue +++ /dev/null @@ -1,232 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/goodsShelves/index.vue b/src/views/baseInfo/warehouses/goodsShelves/index.vue deleted file mode 100644 index 057cb2c..0000000 --- a/src/views/baseInfo/warehouses/goodsShelves/index.vue +++ /dev/null @@ -1,262 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouse/index.vue b/src/views/baseInfo/warehouses/warehouse/index.vue deleted file mode 100644 index aa35e92..0000000 --- a/src/views/baseInfo/warehouses/warehouse/index.vue +++ /dev/null @@ -1,268 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouse/warehouseAdd.vue b/src/views/baseInfo/warehouses/warehouse/warehouseAdd.vue deleted file mode 100644 index d1d99db..0000000 --- a/src/views/baseInfo/warehouses/warehouse/warehouseAdd.vue +++ /dev/null @@ -1,248 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouseArea/index.vue b/src/views/baseInfo/warehouses/warehouseArea/index.vue deleted file mode 100644 index 9108ff1..0000000 --- a/src/views/baseInfo/warehouses/warehouseArea/index.vue +++ /dev/null @@ -1,267 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouseArea/warehouseAreaAdd.vue b/src/views/baseInfo/warehouses/warehouseArea/warehouseAreaAdd.vue deleted file mode 100644 index db4160e..0000000 --- a/src/views/baseInfo/warehouses/warehouseArea/warehouseAreaAdd.vue +++ /dev/null @@ -1,245 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouseAreaType/index.vue b/src/views/baseInfo/warehouses/warehouseAreaType/index.vue deleted file mode 100644 index 7eeb11f..0000000 --- a/src/views/baseInfo/warehouses/warehouseAreaType/index.vue +++ /dev/null @@ -1,264 +0,0 @@ - - - - diff --git a/src/views/baseInfo/warehouses/warehouseAreaType/warehouseAreaTypeAdd.vue b/src/views/baseInfo/warehouses/warehouseAreaType/warehouseAreaTypeAdd.vue deleted file mode 100644 index 6da8be5..0000000 --- a/src/views/baseInfo/warehouses/warehouseAreaType/warehouseAreaTypeAdd.vue +++ /dev/null @@ -1,174 +0,0 @@ - - - - diff --git a/src/views/goods/brands/brandsAdd.vue b/src/views/goods/brands/brandsAdd.vue deleted file mode 100644 index 4e68570..0000000 --- a/src/views/goods/brands/brandsAdd.vue +++ /dev/null @@ -1,301 +0,0 @@ - - - - diff --git a/src/views/goods/brands/index.vue b/src/views/goods/brands/index.vue deleted file mode 100644 index 9c683f0..0000000 --- a/src/views/goods/brands/index.vue +++ /dev/null @@ -1,313 +0,0 @@ - - - - diff --git a/src/views/goods/category/categoryAdd.vue b/src/views/goods/category/categoryAdd.vue deleted file mode 100644 index 33e1be0..0000000 --- a/src/views/goods/category/categoryAdd.vue +++ /dev/null @@ -1,376 +0,0 @@ - - - - diff --git a/src/views/goods/category/index.vue b/src/views/goods/category/index.vue deleted file mode 100644 index bf96b13..0000000 --- a/src/views/goods/category/index.vue +++ /dev/null @@ -1,381 +0,0 @@ - - - - diff --git a/src/views/goods/factory/factoryAdd.vue b/src/views/goods/factory/factoryAdd.vue deleted file mode 100644 index e4c105f..0000000 --- a/src/views/goods/factory/factoryAdd.vue +++ /dev/null @@ -1,239 +0,0 @@ - - - - diff --git a/src/views/goods/factory/index.vue b/src/views/goods/factory/index.vue deleted file mode 100644 index 823dfef..0000000 --- a/src/views/goods/factory/index.vue +++ /dev/null @@ -1,302 +0,0 @@ - - - - diff --git a/src/views/goods/goods/goodsAdd.vue b/src/views/goods/goods/goodsAdd.vue deleted file mode 100644 index 7929861..0000000 --- a/src/views/goods/goods/goodsAdd.vue +++ /dev/null @@ -1,1070 +0,0 @@ - - - - diff --git a/src/views/goods/goods/goodsAdd2.vue b/src/views/goods/goods/goodsAdd2.vue deleted file mode 100644 index 2d53731..0000000 --- a/src/views/goods/goods/goodsAdd2.vue +++ /dev/null @@ -1,509 +0,0 @@ - - - - diff --git a/src/views/goods/goods/goodsInfo.vue b/src/views/goods/goods/goodsInfo.vue deleted file mode 100644 index 77b5095..0000000 --- a/src/views/goods/goods/goodsInfo.vue +++ /dev/null @@ -1,585 +0,0 @@ - - - - diff --git a/src/views/goods/goods/goodsInfo2.vue b/src/views/goods/goods/goodsInfo2.vue deleted file mode 100644 index 9378499..0000000 --- a/src/views/goods/goods/goodsInfo2.vue +++ /dev/null @@ -1,270 +0,0 @@ - - - - diff --git a/src/views/goods/goods/index.vue b/src/views/goods/goods/index.vue deleted file mode 100644 index 38aa86c..0000000 --- a/src/views/goods/goods/index.vue +++ /dev/null @@ -1,443 +0,0 @@ - - - - diff --git a/src/views/goods/unit/index.vue b/src/views/goods/unit/index.vue deleted file mode 100644 index bd780d8..0000000 --- a/src/views/goods/unit/index.vue +++ /dev/null @@ -1,302 +0,0 @@ - - - - diff --git a/src/views/goods/unit/unitAdd.vue b/src/views/goods/unit/unitAdd.vue deleted file mode 100644 index 974a123..0000000 --- a/src/views/goods/unit/unitAdd.vue +++ /dev/null @@ -1,178 +0,0 @@ - - - - diff --git a/src/views/inStorage/deliveryNotice/index.vue b/src/views/inStorage/deliveryNotice/index.vue deleted file mode 100644 index d2da7aa..0000000 --- a/src/views/inStorage/deliveryNotice/index.vue +++ /dev/null @@ -1,448 +0,0 @@ - - - - diff --git a/src/views/inStorage/deliveryNotice/receiptAdd.vue b/src/views/inStorage/deliveryNotice/receiptAdd.vue deleted file mode 100644 index 1aa2d17..0000000 --- a/src/views/inStorage/deliveryNotice/receiptAdd.vue +++ /dev/null @@ -1,746 +0,0 @@ - - - - diff --git a/src/views/inStorage/deliveryNotice/receiptInfo.vue b/src/views/inStorage/deliveryNotice/receiptInfo.vue deleted file mode 100644 index 63c49cf..0000000 --- a/src/views/inStorage/deliveryNotice/receiptInfo.vue +++ /dev/null @@ -1,175 +0,0 @@ - - - - diff --git a/src/views/inStorage/receivingGoods/index.vue b/src/views/inStorage/receivingGoods/index.vue deleted file mode 100644 index 15e0f50..0000000 --- a/src/views/inStorage/receivingGoods/index.vue +++ /dev/null @@ -1,433 +0,0 @@ - - - - diff --git a/src/views/inStorage/receivingGoods/receivingGoodsAdd.vue b/src/views/inStorage/receivingGoods/receivingGoodsAdd.vue deleted file mode 100644 index db85bc9..0000000 --- a/src/views/inStorage/receivingGoods/receivingGoodsAdd.vue +++ /dev/null @@ -1,1101 +0,0 @@ - - - - diff --git a/src/views/inStorage/receivingGoods/receivingGoodsInfo.vue b/src/views/inStorage/receivingGoods/receivingGoodsInfo.vue deleted file mode 100644 index efc265f..0000000 --- a/src/views/inStorage/receivingGoods/receivingGoodsInfo.vue +++ /dev/null @@ -1,206 +0,0 @@ - - - - diff --git a/src/views/inStorage/receivingGoods/relation/chooseproducts.vue b/src/views/inStorage/receivingGoods/relation/chooseproducts.vue deleted file mode 100644 index 60ea91c..0000000 --- a/src/views/inStorage/receivingGoods/relation/chooseproducts.vue +++ /dev/null @@ -1,164 +0,0 @@ - - - - diff --git a/src/views/inStorage/receivingGoods/upShelfAddRecord.vue b/src/views/inStorage/receivingGoods/upShelfAddRecord.vue deleted file mode 100644 index 0150378..0000000 --- a/src/views/inStorage/receivingGoods/upShelfAddRecord.vue +++ /dev/null @@ -1,418 +0,0 @@ - - - - diff --git a/src/views/inStorage/upShelf/index.vue b/src/views/inStorage/upShelf/index.vue deleted file mode 100644 index 313bb60..0000000 --- a/src/views/inStorage/upShelf/index.vue +++ /dev/null @@ -1,352 +0,0 @@ - - - - diff --git a/src/views/inStorage/upShelf/upShelfAdd.vue b/src/views/inStorage/upShelf/upShelfAdd.vue deleted file mode 100644 index 6067579..0000000 --- a/src/views/inStorage/upShelf/upShelfAdd.vue +++ /dev/null @@ -1,420 +0,0 @@ - - - - diff --git a/src/views/inStorage/upShelf/upShelfInfo.vue b/src/views/inStorage/upShelf/upShelfInfo.vue deleted file mode 100644 index 26921f1..0000000 --- a/src/views/inStorage/upShelf/upShelfInfo.vue +++ /dev/null @@ -1,161 +0,0 @@ - - - - diff --git a/src/views/outStorage/distributionAdd.vue b/src/views/outStorage/distributionAdd.vue deleted file mode 100644 index 468a191..0000000 --- a/src/views/outStorage/distributionAdd.vue +++ /dev/null @@ -1,291 +0,0 @@ - - - - diff --git a/src/views/outStorage/index.vue b/src/views/outStorage/index.vue deleted file mode 100644 index ef9abbe..0000000 --- a/src/views/outStorage/index.vue +++ /dev/null @@ -1,336 +0,0 @@ - - - - diff --git a/src/views/outStorage/outStorageAdd.vue b/src/views/outStorage/outStorageAdd.vue deleted file mode 100644 index da51539..0000000 --- a/src/views/outStorage/outStorageAdd.vue +++ /dev/null @@ -1,509 +0,0 @@ - - - - diff --git a/src/views/outStorage/outStorageInfo.vue b/src/views/outStorage/outStorageInfo.vue deleted file mode 100644 index f0e9fa4..0000000 --- a/src/views/outStorage/outStorageInfo.vue +++ /dev/null @@ -1,152 +0,0 @@ -outStorage - - - diff --git a/src/views/outStorage/relation/chooseproducts.vue b/src/views/outStorage/relation/chooseproducts.vue deleted file mode 100644 index 60ea91c..0000000 --- a/src/views/outStorage/relation/chooseproducts.vue +++ /dev/null @@ -1,164 +0,0 @@ - - - - diff --git a/src/views/reports/inOutStorage/index.vue b/src/views/reports/inOutStorage/index.vue deleted file mode 100644 index 85b505a..0000000 --- a/src/views/reports/inOutStorage/index.vue +++ /dev/null @@ -1,435 +0,0 @@ - - - - diff --git a/src/views/storage/inventory/inventory.vue b/src/views/storage/inventory/inventory.vue deleted file mode 100644 index 80eddac..0000000 --- a/src/views/storage/inventory/inventory.vue +++ /dev/null @@ -1,285 +0,0 @@ - - - - diff --git a/src/views/storage/inventory/inventoryRecord.vue b/src/views/storage/inventory/inventoryRecord.vue deleted file mode 100644 index 56a8fc4..0000000 --- a/src/views/storage/inventory/inventoryRecord.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - diff --git a/src/views/storage/inventory/inventoryRefer.vue b/src/views/storage/inventory/inventoryRefer.vue deleted file mode 100644 index cac21fa..0000000 --- a/src/views/storage/inventory/inventoryRefer.vue +++ /dev/null @@ -1,262 +0,0 @@ - - - - diff --git a/src/views/storage/stocktaking/index.vue b/src/views/storage/stocktaking/index.vue deleted file mode 100644 index 0f45326..0000000 --- a/src/views/storage/stocktaking/index.vue +++ /dev/null @@ -1,322 +0,0 @@ - - - - diff --git a/src/views/storage/stocktaking/stocktakingAdd.vue b/src/views/storage/stocktaking/stocktakingAdd.vue deleted file mode 100644 index 21ed793..0000000 --- a/src/views/storage/stocktaking/stocktakingAdd.vue +++ /dev/null @@ -1,412 +0,0 @@ - - - - -