新项目

This commit is contained in:
2024-05-06 09:48:37 +08:00
parent fb97c504ef
commit 30d7c5611e
442 changed files with 41092 additions and 0 deletions

17
src/App.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
created() {
console.log('resss', 11111111111111111111111111)
},
mounted() {
},
}
</script>

35
src/api/User/login.js Normal file
View File

@@ -0,0 +1,35 @@
import request from '@/utils/request'
import qs from 'qs'
class User {
login(data) { // 登录
return request({
url: '/system/user/login',
method: 'post',
data
})
}
logout(data) { // 退出
return request({
url: '/portal/v1/sysuser/signOut',
method: 'post',
data: qs.stringify(data)
})
}
updatePassword(data) { // 退出修改密码
return request({
url: '/portal/v1/sysuser/updatePassword',
method: 'post',
data: qs.stringify(data)
})
}
reGetPwd(data) {
return request({
url: `/system/user/reGetPwd/${data.userName}/${data.userPhone}`,
method: 'post',
data: qs.stringify(data)
})
}
}
export default new User()

View File

@@ -0,0 +1,49 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/base/basegoodsbrand/listPage',
method: 'post',
data: params,
})
},
// 类别查询
getAllBrand: function(params) {
return request({
url: '/base/basegoodsbrand/getAllType',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/base/basegoodsbrand/updateIsEnable/'+sid+"/"+isEnable
});
},
// 新增、保存
saveBrands: function(data) {
return request({
url: '/base/basegoodsbrand/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initBrands: function(data) {
return request({
url: '/base/basegoodsbrand/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,55 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/base/basegoodstype/listPage',
method: 'post',
data: params,
})
},
// 类别查询
getAllType: function(params) {
return request({
url: '/base/basegoodstype/getAllType',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid, isEnable) {
return request({
url: '/base/basegoodstype/updateIsEnable/' + sid + "/" + isEnable
});
},
// 修改是否一品一码
updateIsGoodsID: function(sid, isGoodsID) {
return request({
url: '/base/basegoodstype/updateIsGoodsID/' + sid + "/" + isGoodsID
});
},
// 新增、保存
saveTypes: function(data) {
return request({
url: '/base/basegoodstype/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initTypes: function(data) {
return request({
url: '/base/basegoodstype/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,48 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/base/basemanufacturer/listPage',
method: 'post',
data: params,
})
},
// 厂家查询
getAllFacturer: function(params) {
return request({
url: '/base/basemanufacturer/getAllType',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/base/basemanufacturer/updateIsEnable/'+sid+"/"+isEnable
});
},
// 新增、保存
saveFacturer: function(data) {
return request({
url: '/base/basemanufacturer/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initFacturer: function(data) {
return request({
url: '/base/basemanufacturer/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/base/basegoodsspu/listPage',
method: 'post',
data: params,
})
},
// 修改是否可用状态
updateIsEnable: function(sid, isEnable) {
return request({
url: '/base/basegoodsspu/updateIsEnable/' + sid + "/" + isEnable
});
},
// 新增、保存
saveGoods: function(data) {
return request({
url: '/base/basegoodsspu/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initGoods: function(data) {
return request({
url: '/base/basegoodsspu/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,41 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouserack/listPage',
method: 'post',
data: params,
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/wms/apiadmin/base/wmswarehouserack/updateIsEnable/'+sid+"/"+isEnable
});
},
// 新增、保存
saveGoodsShelves: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouserack/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initGoodsShelves: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouserack/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,49 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/listPage',
method: 'post',
data: params,
})
},
// 仓库查询
getAllWarehouse: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/listAll',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/updateStatus/'+sid+"/"+isEnable
});
},
// 新增、保存
saveWarehouse: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initWarehouse: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,49 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/listPage',
method: 'post',
data: params,
})
},
// 库区查询
getAllWarehousearea: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/listAll',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/updateIsEnable/'+sid+"/"+isEnable
});
},
// 新增、保存
saveWarehousearea: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initWarehousearea: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,51 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseareatype/listPage',
method: 'post',
data: params,
})
},
// 库位查询
getAllWarehouseareatype: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseareatype/listAll',
method: 'get'
})
},
// 修改是否可用状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/wms/apiadmin/base/wmswarehouseareatype/updateIsEnable/'+sid+"/"+isEnable
});
},
// 新增、保存
saveWarehousearea: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouseareatype/saveOrUpdate',
method: 'post',
data: data
});
},
// 初始化
initWarehousearea: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehouseareatype/initialization/' + data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,41 @@
import request from '@/utils/request'
export default {
// 查询分页列表 -- 结转记录查询
carryForwardList: function(params) {
return request({
url: '/inventory/wmsinventorysettlebill/carryForwardList',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 结转记录查询 -- 删除
deleteBySids: function(data) {
return request({
url: '/inventory/wmsinventorysettlebill/delBySids',
method: 'DELETE',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 查询分页列表 -- 结转库存查询
listPage: function(params) {
return request({
url: '/inventory/wmsinventorysettlebilldetail/listPage',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 结转库存查询 -- 导出
exportExcel: function(data) {
return request({
url: '/inventory/wmsinventorysettlebilldetail/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
}

View File

@@ -0,0 +1,51 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsAnsBill/listPage',
method: 'post',
data: params,
})
},
// 详情初始化
init: function(data) {
return request({
url: '/wms/apiadmin/WmsAnsBill/details',
method: 'get',
data:data
});
},
// 收货初始化
getInitDetails: function(data) {
return request({
url: '/wms/apiadmin/inventory/WmsReceiptBill/getInitDetails',
method: 'get',
data:data
});
},
// 新增收货单
save: function(data) {
return request({
url: '/wms/apiadmin/inventory/WmsReceiptBill/saveOrUpdate',
method: 'post',
data: data
});
},
// 确认收货单
submit: function(data) {
return request({
url: '/wms/apiadmin/inventory/WmsReceiptBill/confirm',
method: 'post',
data: data
});
},
}

View File

@@ -0,0 +1,69 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/inventory/wmsinventory/listPage',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
saveOrUpdate: function(data) {
return request({
url: '/inventory/wmsinventory/updateWmsInventory',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
init: function(data) {
return request({
url: '/riskcenter/v1/loancaseappealapply/details',
method: 'post',
params: data
})
},
fetchBySid: function(data) {
return request({
url: '/inventory/wmsinventory/init',
method: 'get',
params: data
})
},
// 导出
exportExcel: function(data) {
return request({
url: '/inventory/wmsinventory/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
deleteBySids: function(data) {
return request({
url: '/inventory/wmsinventory/delBySids',
method: 'DELETE',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
saveSettlebill: function(data) {
return request({
url: '/inventory/wmsinventorysettlebill/saveSettlebill',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
getBillList: function(data) {
return request({
url: '/inventory/wmsinventory/getBillList',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
}

30
src/api/portal/Upload.js Normal file
View File

@@ -0,0 +1,30 @@
import request from '@/utils/request'
import qs from 'qs'
// 统一请求路径前缀
const base = process.env.VUE_APP_URL
// 文件上传接口
export const uploadFile = process.env.VUE_APP_BASE_API + '/wms/apiadmin/file/upload'
// export const uploadFile = process.env.VUE_APP_BASE_API + '/customer/file/upload'
// 上传图片
// export function imageUpload(data) {
// return request({
// url: '/portal/file/upload',
// method: 'post',
// data,
// headers: { 'Content-Type': 'multipart/form-data' }
// })
// }
// 移除图片
export function deleteFilesOss(data) {
return request({
url: '/base/v1/baseVehicleAppendixs/deleteFilesOss',
method: 'post',
data: qs.stringify(data),
// headers: { 'Content-Type': 'multipart/form-data' }
})
}

View File

@@ -0,0 +1,34 @@
import request from '@/utils/request'
// 获取省/portal/v1/regions/getProvince
export function getProvince(data) {
return request({
url: '/portal/v1/regions/getProvince',data,
method: 'get',
params:data,
})
}
// 根据省sid获取该省的所有市
export function getCity(data) {
return request({
url: '/portal/v1/regions/getCity',
params:data,
method: 'get',
})
}
// 根据市sid获取该市的所有县区
export function getCounty(data) {
return request({
url: '/portal/v1/regions/getCounty',
method: 'get',
params:data,
})
}
// // 区域列表(省市县均可用)
// export function selectsList(data) {
// return request({
// url: '/portal/v1/regions/selectsList', data,
// method: 'post',
// headers: { 'Content-Type': 'application/json' }
// })
// }

View File

@@ -0,0 +1,84 @@
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',
method: 'get',
data:data
});
},
// 新增、保存
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' }
});
},
deleteBySids: function(data) {
return request({
url: '/wms/apiadmin/inventory/WmsReceiptBill/delBySids',
method: 'DELETE',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 查询所有商品
getGoodsListPage: function(params) {
return request({
url: '/yxtbase/apiadmin/base/basegoodssku/getGoodsListPage',
method: 'post',
data: params
})
},
// 选择供应商
choiceSupplier: function(params) {
return request({
url: '/wms/apiadmin/base/basesupplierinfo/choiceSupplierInfo',
method: 'post',
data: params,
})
},
}

View File

@@ -0,0 +1,23 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/inventory/wmsinventory/inventoryAgeList',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 导出
exportExcel: function(data) {
return request({
url: '/inventory/wmsinventory/ageExportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
}

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
import qs from 'qs'
const tokens = window.sessionStorage.getItem('token')
//
export function rolemenus(data) {
return request({
url: '/system/v1/rolemenus/' + data.roleSid,
method: 'get',
params: data
})
}
// 获取左侧菜单
export function getrolemenus(data) {
return request({
baseURL: '/api',
url: '/portal/v1/sysmenu/sourcemenutree',
method: 'POST',
async: false,
// data: {userSid: data.userSid, sourceSid: '000011'},
data: data,
headers: { 'Content-Type': 'application/json',
'token': tokens }
})
}
// 获取角色的主页菜单
export function sourcesofrole(data) {
return request({
url: '/system/v1/rolemenus/sourcesofrole',
method: 'POST',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 根据token值获取登录后的用户信息
export function loginDetails(data) {
return request({
baseURL: '/api',
url: '/portal/v1/sysuser/loginDetails',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}

View File

@@ -0,0 +1,38 @@
import request from '@/utils/request'
import qs from 'qs'
//获取菜单 分页列表
export function login1(data) {
return request({
url: '/portal/v1/sysuser/login',
method: 'POST',
data: data,
headers: {'Content-Type': 'application/json',
// 'token':tokens
}
})
}
class user {
login(data) { // 登录
return request({
url: '/portal/v1/sysuser/login',
method: 'post',
data
})
}
logout() { // 退出
return request({
url: '/vue-admin-template/user/logout',
method: 'post'
})
}
updatePassword(data) { // 退出修改密码
return request({
url: '/system/user/updatePassword',
method: 'post',
data: qs.stringify(data)
})
}
}

View File

@@ -0,0 +1,43 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsShelfBill/listPage',
method: 'post',
data: params,
})
},
// 初始化
init: function(data) {
return request({
url: '/wms/apiadmin/WmsShelfBill/details',
method: 'get',
data:data
});
},
// 新增、保存
save: function(data) {
return request({
url: '/wms/apiadmin/WmsShelfBill/saveOrUpdate',
method: 'post',
data: data
});
},
deleteBySids: function(data) {
return request({
url: '/wms/apiadmin/WmsShelfBill/delBySids',
method: 'DELETE',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
}

72
src/api/user.js Normal file
View File

@@ -0,0 +1,72 @@
import request from '@/utils/request'
// eslint-disable-next-line no-unused-vars
import qs from 'qs'
// 登录
export function doLogin(data) {
return request({
url: '/sysuser/doLogin',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 获取登录人员信息
export function getUserById(sid) {
return request({
url: '/cyf/sys/getUserById/' + sid
})
}
// 登录
export function login(data) {
return request({
url: '/portal/v1/sysuser/login',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 用户注册
export function registUser(data) {
return request({
url: '/system/user/save',
method: 'post',
data,
headers: { 'Content-Type': 'application/x-www-form-urlencoded;' }
})
}
// 获取手机验证码
export function getVerificationCode(data) {
return request({
url: '/system/user/getVerificationCode',
method: 'get',
params: data
})
}
// 获取登录验证码
export function imgCode() {
return request({
url: '/system/api/defaultBlendCode?temm=' + new Date().getTime(),
method: 'get'
})
}
// 获取用信息
export function getInfo(token) {
return request({
url: '/system/user/loginDetails',
method: 'post'
})
}
export function logout(data) { // 退出
return request({
url: '/portal/v1/sysuser/signOut',
method: 'post',
data: qs.stringify(data)
})
}

View File

@@ -0,0 +1,59 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/listPage',
method: 'post',
data: params,
})
},
// 新增、保存
save: function(data) {
return request({
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/save',
method: 'post',
data: data
});
},
// 初始化
init: function(data) {
return request({
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/' + data,
method: 'get'
});
},
// 查询所有商品
getGoods: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventory/alloGoodsListPage',
method: 'post',
data: params
})
},
// 查询所有仓库
getWarehouses: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/selectAll',
method: 'get'
})
},
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
data: data,
});
},
}

View File

@@ -0,0 +1,63 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsDistributeBill/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 初始化
init: function(data) {
return request({
url: '/wms/apiadmin/WmsDistributeBill/details',
method: 'get',
data: data
});
},
// 新增、保存
save: function(data) {
return request({
url: '/wms/apiadmin/WmsDistributeBill/saveOrUpdateBill',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 确认
submit: function(data) {
return request({
url: '/wms/apiadmin/WmsDistributeBill/confirm',
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'
}
})
},
}

View File

@@ -0,0 +1,55 @@
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'
}
});
},
// 选择供应商
choiceSupplier: function(params) {
return request({
url: '/wms/apiadmin/base/basesupplierinfo/choiceSupplierInfo',
method: 'post',
data: params,
})
},
// 查询所有仓库
getWarehouses: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/selectAll',
method: 'get'
})
},
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
data: data,
});
},
}

View File

@@ -0,0 +1,22 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/inventory/wmsinventorybill/listPage',
method: 'post',
data: params,
})
},
// 选择商品列表
getAllGoods: function(params) {
return request({
url: '/base/basegoodssku/getSelectList',
method: 'get'
})
},
}

View File

@@ -0,0 +1,63 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/apiadmin/inventory/wmsinventory/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
init: function(data) {
return request({
url: '/wms/apiadmin/inventory/wmsinventoryrecord/getWmsInventoryRecordList',
method: 'get',
params: data
})
},
// 导出
exportExcel: function(data) {
return request({
url: '/inventory/wmsinventory/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
})
},
// 选择供应商
choiceSupplier: function(params) {
return request({
url: '/wms/apiadmin/base/basesupplierinfo/choiceSupplierInfo',
method: 'post',
data: params,
})
},
// 查询所有仓库
getWarehouses: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/selectAll',
method: 'get'
})
},
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
data: data,
});
},
}

View File

@@ -0,0 +1,72 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/as/v1/asoldparthandleapply/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 初始化
init: function(data) {
return request({
url: '/as/v1/asoldparthandleapply/fetchDetailsBySid/' + data,
method: 'get'
});
},
// 新增、保存
save: function(data) {
return request({
url: '/as/v1/asoldparthandleapply/save',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 提交
submit: function(data) {
return request({
url: '/as/v1/asoldparthandleapply/submit',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
deleteBySids: function(data) {
return request({
url: '/as/v1/asoldparthandleapply/delBySids',
method: 'DELETE',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
},
// 查询旧件分页列表
handleGoodsListPage: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventory/handleGoodsListPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
}

View File

@@ -0,0 +1,83 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/as/v1/asoldpartreturnapply/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 获取确认结果详情
fetchDetailsByMainSid: function(data) {
return request({
url: '/as/v1/asoldpartreturnconfirm/fetchDetailsByMainSid/' + data,
method: 'get'
});
},
// 初始化
init: function(data) {
return request({
url: '/as/v1/asoldpartreturnapply/fetchDetailsBySid/' + data,
method: 'get'
});
},
// 新增、保存
save: function(data) {
return request({
url: '/as/v1/asoldpartreturnapply/save',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 提交
submit: function(data) {
return request({
url: '/as/v1/asoldpartreturnapply/submit',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
deleteBySids: function(data) {
return request({
url: '/as/v1/asoldpartreturnapply/delBySids',
method: 'DELETE',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
},
// 下载模板
downloadExcel: function() {
return request({
url: '/as/v1/asoldpartreturnapply/downloadModPriceExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
headers: {
'Content-Type': 'application/json'
}
})
},
}

View File

@@ -0,0 +1,58 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsOldInventory/recordList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 导出报表
exportExcel: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/excelRecordList',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 选择厂家
choiceManufacturer: function(params) {
return request({
url: '/wms/apiadmin/base/basemanufacturer/listAll',
method: 'get',
data: params,
})
},
// 查询所有仓库
getWarehouses: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/selectAll',
method: 'get'
})
},
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
data: data,
});
},
}

View File

@@ -0,0 +1,38 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsOldInventory/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 获取旧件入库详情
init: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/getInit',
method: 'get',
data: data,
});
},
// 保存旧件入库
save: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/saveInventory',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
}

View File

@@ -0,0 +1,80 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsOldInventory/oldPageList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 获取旧件出入库记录详情
init: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/getDetailsList',
method: 'get',
data: data,
});
},
deleteBySids: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/delBySids',
method: 'DELETE',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
},
// 导出报表
exportExcel: function(data) {
return request({
url: '/wms/apiadmin/WmsOldInventory/excelList',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 选择厂家
choiceManufacturer: function(params) {
return request({
url: '/wms/apiadmin/base/basemanufacturer/listAll',
method: 'get',
data: params,
})
},
// 查询所有仓库
getWarehouses: function(params) {
return request({
url: '/wms/apiadmin/base/wmswarehouseinfo/selectAll',
method: 'get'
})
},
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
data: data,
});
},
}

View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/as/v1/AsBusrepairBill/pageBillList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 获取维修工单详情
getOneByBillNo: function(data) {
return request({
url: '/as/v1/AsBusrepairBill/getOneByBillNo',
method: 'get',
data: data,
});
},
// 保存旧件回收登记
save: function(data) {
return request({
url: '/wms/apiadmin/WmsOldRegister/saveorUpdateOldRegister',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
}

View File

@@ -0,0 +1,99 @@
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'
}
})
},
}

View File

@@ -0,0 +1,22 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/inventory/warereservation/listPage',
method: 'post',
data: params,
})
},
// 查询分页列表
selByReservationSid: function(sid) {
return request({
url: '/wms/apiadmin/inventory/warereservadetail/selByReservationSid/'+sid,
method: 'get'
})
},
}

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventorycheckbill/listPage',
method: 'post',
data: params,
})
},
// 新增、保存
save: function(data) {
return request({
url: '/wms/apiadmin/inventory/wmsinventorycheckbill/save',
method: 'post',
data: data
});
},
// 初始化
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
})
},
// 盘点
inven: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventory/invenGoodsListPage',
method: 'post',
data: params
})
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
src/assets/home/anrui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
src/assets/home/bIcon1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
src/assets/home/bIcon2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
src/assets/home/bIcon3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
src/assets/home/bIcon4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
src/assets/home/bIcon5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
src/assets/home/bIcon6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
src/assets/home/bIcon7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
src/assets/home/bIcon8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
src/assets/home/bj.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 KiB

BIN
src/assets/home/bj.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
src/assets/home/line.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

BIN
src/assets/home/ltBg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
src/assets/home/ltIcon1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
src/assets/home/ltIcon2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/home/ltIcon3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
src/assets/home/ltIcon4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
src/assets/home/notice.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

BIN
src/assets/home/rtBg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
src/assets/images/arrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/assets/images/btn.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/cdgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/cxjl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/images/czsc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/assets/images/dy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/head.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
src/assets/images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
src/assets/images/jcxx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/assets/images/jggl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/jlsc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/assets/images/jsgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/jsxd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
src/assets/images/place.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/assets/images/qjsh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
src/assets/images/ryda.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/rzgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
src/assets/images/sjcc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/assets/images/sjzd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
src/assets/images/tjfx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/images/tjfx2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

BIN
src/assets/images/xgmm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/xtbg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/xtgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
src/assets/images/xxzx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Some files were not shown because too many files have changed in this diff Show More