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
a1003131
Commit
a1003131
authored
Aug 10, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 8.10
parent
c2f4f001
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
3 deletions
+58
-3
ruoyi-ui/src/api/smartSchool/schoolProperty/classiFication.js
+3
-3
ruoyi-ui/src/api/smartSchool/schoolProperty/repairApplicant.js
+55
-0
ruoyi-ui/src/views/smartSchool/schoolProperty/classiFication/index.vue
+0
-0
No files found.
ruoyi-ui/src/api/smartSchool/schoolProperty/classiFication.js
View file @
a1003131
...
...
@@ -34,7 +34,7 @@ export function editProduct(data) {
export
function
deleteProduct
(
id
)
{
return
request
({
url
:
"/productCategory/delete/"
+
id
,
method
:
"
delete
"
,
method
:
"
post
"
,
});
}
//获取设备分类下拉框
...
...
@@ -46,10 +46,10 @@ export function getProductCategory(query) {
});
}
//获取管理员
export
function
getAdmin
(
data
)
{
export
function
getAdmin
(
query
)
{
return
request
({
url
:
"/productCategory/getAdmin"
,
method
:
"get"
,
data
,
params
:
query
,
});
}
ruoyi-ui/src/api/smartSchool/schoolProperty/repairApplicant.js
0 → 100644
View file @
a1003131
import
request
from
"@/utils/request"
;
//查看设备报修列表
export
function
getProduct
(
query
)
{
return
request
({
url
:
"/equipmentRepair/list"
,
method
:
"get"
,
params
:
query
,
});
}
//查看产品分类详细信息
export
function
queryProduct
(
id
)
{
return
request
({
url
:
"/equipmentRepair/"
+
id
,
method
:
"get"
,
});
}
//新增产品分类
export
function
addProduct
(
data
)
{
return
request
({
url
:
"/equipmentRepair/add"
,
method
:
"post"
,
data
,
});
}
//修改产品分类信息
export
function
editProduct
(
data
)
{
return
request
({
url
:
"/equipmentRepair/edit"
,
method
:
"put"
,
data
:
data
,
});
}
//删除产品分类信息;
export
function
deleteProduct
(
id
)
{
return
request
({
url
:
"/equipmentRepair/delete/"
+
id
,
method
:
"post"
,
});
}
//获取设备分类下拉框
export
function
getProductCategory
(
query
)
{
return
request
({
url
:
"/equipmentRepair/getEquipment"
,
method
:
"get"
,
params
:
query
,
});
}
//获取管理员
export
function
getAdmin
(
query
)
{
return
request
({
url
:
"/productCategory/getAdmin"
,
method
:
"get"
,
params
:
query
,
});
}
ruoyi-ui/src/views/smartSchool/schoolProperty/classiFication/index.vue
View file @
a1003131
This diff is collapsed.
Click to expand it.
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