Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
c2f4f001
Commit
c2f4f001
authored
Aug 10, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 8.10
parent
4e121f8a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
ruoyi-ui/src/api/smartSchool/schoolProperty/classiFication.js
+55
-0
No files found.
ruoyi-ui/src/api/smartSchool/schoolProperty/classiFication.js
0 → 100644
View file @
c2f4f001
import
request
from
"@/utils/request"
;
//查询产品分类列表
export
function
getProduct
(
query
)
{
return
request
({
url
:
"/productCategory/list"
,
method
:
"get"
,
params
:
query
,
});
}
//查看产品分类详细信息
export
function
queryProduct
(
id
)
{
return
request
({
url
:
"/productCategory/"
+
id
,
method
:
"get"
,
});
}
//新增产品分类
export
function
addProduct
(
data
)
{
return
request
({
url
:
"/productCategory/add"
,
method
:
"post"
,
data
,
});
}
//修改产品分类信息
export
function
editProduct
(
data
)
{
return
request
({
url
:
"/productCategory/edit"
,
method
:
"put"
,
data
:
data
,
});
}
//删除产品分类信息;
export
function
deleteProduct
(
id
)
{
return
request
({
url
:
"/productCategory/delete/"
+
id
,
method
:
"delete"
,
});
}
//获取设备分类下拉框
export
function
getProductCategory
(
query
)
{
return
request
({
url
:
"/productCategory/getEquipmentType"
,
method
:
"get"
,
params
:
query
,
});
}
//获取管理员
export
function
getAdmin
(
data
)
{
return
request
({
url
:
"/productCategory/getAdmin"
,
method
:
"get"
,
data
,
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment