Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
so-manage-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
smart-operation
so-manage-ui
Commits
be87696b
Commit
be87696b
authored
Jul 11, 2023
by
张耀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:
处置反馈接口对接
parent
73a14841
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/page/main/ticket/modules/feedback.vue
src/page/main/ticket/modules/feedback.vue
+2
-2
src/page/main/ticket/my-warn-ticket/index.vue
src/page/main/ticket/my-warn-ticket/index.vue
+2
-2
No files found.
src/page/main/ticket/modules/feedback.vue
View file @
be87696b
...
...
@@ -96,8 +96,8 @@ const Submit = () => {
params
.
order_issuance_id
=
props
.
active_row
.
order_issuance_id
;
params
.
result_feedback
=
state
.
form
.
result
;
}
else
{
params
.
order_issuance_id
=
props
.
active_row
.
order_issuance_id
;
params
.
result_feedback
=
state
.
form
.
result
;
params
.
status
=
+
state
.
form
.
status
;
params
.
disposal_content
=
state
.
form
.
result
;
}
axios
.
put
(
props
.
active_row
.
url
,
params
).
then
((
res
)
=>
{
if
(
res
.
data
.
code
==
200
)
{
...
...
src/page/main/ticket/my-warn-ticket/index.vue
View file @
be87696b
...
...
@@ -226,7 +226,7 @@ const getTableRows = async () => {
end_time
,
};
Reflect
.
deleteProperty
(
params
,
"
time
"
);
axios
.
get
(
"
/v1/api/
alert_lis
t/list
"
,
{
params
}).
then
((
res
)
=>
{
axios
.
get
(
"
/v1/api/
work_order/aler
t/list
"
,
{
params
}).
then
((
res
)
=>
{
if
(
res
.
data
.
code
==
200
)
{
let
{
list
,
total_count
}
=
res
.
data
.
data
;
rows
.
value
=
list
||
[];
...
...
@@ -240,7 +240,7 @@ const getTableRows = async () => {
const
visible
=
ref
(
false
);
const
active_row
=
ref
(
null
);
const
operation
=
(
row
)
=>
{
active_row
.
value
=
row
;
active_row
.
value
=
{
...
row
,
url
:
"
/v1/api/work_order/alert/dispose
"
}
;
visible
.
value
=
true
;
};
const
goDetail
=
({
id
})
=>
{
...
...
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