Commit c1e18ad4 authored by 罗超's avatar 罗超

1

parent dff782ed
import request from '../../utils/request_zc'
/**
* 获取出库申请分页列表
*
*/
export function GetSuppliesStockOutApplyForPageList(data) {
return request({
url: '/supplies/GetSuppliesStockOutApplyForPageList',
method: 'post',
data
})
}
/**
* 获取出库申请详情
*
*/
export function GetSuppliesStockOutApplyForDetail(data) {
return request({
url: '/supplies/GetSuppliesStockOutApplyForInfo',
method: 'post',
data
})
}
/**
* 获取耗材
*
*/
export function GetMaterialPageList(data) {
return request({
url: '/Supplies/GetMaterialPageList',
method: 'post',
data
})
}
/**
* 发起出库申请
*
*/
export function SuppliesStockOutApply(data) {
return request({
url: '/supplies/SetSuppliesStockOutApplyForInfo',
method: 'post',
data
})
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -111,7 +111,7 @@
import { queryEmployee } from '../../api/users/user'
export default {
meta: {
title: "我的订单"
title: "留学就业统计"
},
components: {
myOrderForm,
......
......@@ -551,6 +551,16 @@ const routes = [{
component: () =>
import("pages/sale/studyOrderStatistics.vue")
},
{
path: "/sale/SuppliesStockOutApplyForMan", //销售 出库管理
component: () =>
import("pages/sale/SuppliesStockOutApplyForMan.vue")
},
{
path: "/sale/SuppliesStockOutApplyForDetail", //销售 出库管理详情
component: () =>
import("pages/sale/SuppliesStockOutApplyForDetail.vue")
},
{
path: "/sale/contractManage", //销售 合同管理
component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment