Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haobanDevOps
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
office
haobanDevOps
Commits
f87752b1
Commit
f87752b1
authored
Oct 29, 2019
by
Kyle_Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
bb0988f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
api-retry.vue
src/views/haoban/api-retry.vue
+4
-6
No files found.
src/views/haoban/api-retry.vue
View file @
f87752b1
...
...
@@ -12,12 +12,10 @@
style=
"width: 400px"
@
change=
"onSearchDataChange"
>
</el-date-picker>
<el-select
v-model=
"searchData.enterpriseId"
filterable
@
change=
"onSearchChange"
>
<el-option
label=
"全部"
value=
""
></el-option>
<el-select
v-model=
"searchData.enterpriseId"
filterable
@
change=
"onSearchChange"
clearable
>
<el-option
v-for=
"(item, index) in enterpriseList"
:key=
"index"
:label=
"item.enterpriseName"
:value=
"item.enterpriseId"
></el-option>
</el-select>
<el-select
v-model=
"searchData.code"
filterable
@
change=
"onSearchChange"
>
<el-option
label=
"全部"
:value=
"null"
></el-option>
<el-select
v-model=
"searchData.code"
filterable
@
change=
"onSearchChange"
clearable
>
<el-option
v-for=
"(item, index) in erpList"
:key=
"index"
:label=
"item.interFaceCatoryName"
:value=
"item.interFaceCatoryCode"
></el-option>
</el-select>
<el-input
v-model
.
trim=
"searchData.input"
prefix-icon=
"el-icon-search"
@
keydown
.
enter
.
native=
"searchStrategy"
placeholder=
"请输入"
style=
"width:280px;margin-left:10px"
>
...
...
@@ -212,8 +210,8 @@ export default {
putRequest
(
`/gic-platform-operation/erp/retry/
${
id
}
`
,
params
).
then
(
res
=>
{
const
{
data
}
=
res
;
this
.
$message
({
type
:
data
.
result
==
0
?
'success'
:
'warning
'
,
message
:
data
.
result
==
0
?
'重试成功'
:
data
.
message
,
type
:
data
.
result
==
1
?
'warning'
:
'success
'
,
message
:
data
.
result
==
1
?
data
.
message
:
'重试成功'
,
});
this
.
getLogsList
();
})
...
...
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