Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
longhui_web
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨硕
longhui_web
Commits
ce8115da
Commit
ce8115da
authored
Jun 19, 2023
by
高宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
会员权益
parent
dee08c22
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
146 additions
and
148 deletions
+146
-148
complaint.js
src/api/complaint/complaint.js
+30
-0
index.vue
src/views/complaint/index.vue
+116
-148
No files found.
src/api/complaint/complaint.js
0 → 100644
View file @
ce8115da
import
request
from
'@/utils/request'
// 分页查询投诉建议列表
export
function
getComplaintList
(
params
)
{
return
request
({
url
:
'/system/ComplaintSuggestion/selectComplaintInfoByPagination'
,
method
:
'get'
,
params
})
}
// 根据id查询详情
export
function
getComplaintDetailById
(
id
)
{
return
request
({
url
:
'/system/ComplaintSuggestion/detail/'
+
id
,
method
:
'get'
})
}
// 处理投诉建议
export
function
handleComplaint
(
data
)
{
return
request
({
url
:
'/system/ComplaintSuggestion/update'
,
method
:
'put'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
src/views/complaint/index.vue
View file @
ce8115da
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