Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust_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
张伯涛
cust_web
Commits
9f2cad4a
Commit
9f2cad4a
authored
Feb 25, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
c3fa94e9
f6240f06
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
449 additions
and
0 deletions
+449
-0
memFeedback.js
src/api/contentManagement/memFeedback.js
+68
-0
index.vue
src/views/operationsManagement/memFeedBack/index.vue
+381
-0
No files found.
src/api/contentManagement/memFeedback.js
0 → 100644
View file @
9f2cad4a
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询意见反馈列表
export
function
listMemFeedback
(
query
)
{
return
request
({
url
:
'/memfeedback/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询意见反馈详细信息
export
function
getMemFeedback
(
businessId
)
{
return
request
({
url
:
'/memfeedback/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增意见反馈
export
function
addMemFeedback
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/memfeedback/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改意见反馈
export
function
updateMemFeedback
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/memfeedback/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除意见反馈
export
function
delMemFeedback
(
businessId
)
{
return
request
({
url
:
'/memfeedback/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出意见反馈
export
function
exportMemFeedback
(
query
)
{
return
request
({
url
:
'/memfeedback/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
src/views/operationsManagement/memFeedBack/index.vue
0 → 100644
View file @
9f2cad4a
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