Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7ffb2665
authored
Sep 26, 2022
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
d703c9d6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/views/List/inquire.vue
src/views/List/inquire.vue
View file @
7ffb2665
...
...
@@ -98,7 +98,6 @@ export default {
},
methods
:
{
getData
()
{
console
.
log
(
this
.
formParam
)
this
.
$http
(
'get'
,
"/api/inquiry/getlist"
,
{
page
:
this
.
page
,
limit
:
this
.
limit
,
...
...
@@ -235,16 +234,17 @@ export default {
if
(
this
.
multipleSelection
.
length
==
0
)
{
this
.
$message
({
showClose
:
true
,
message
:
'请勾选
一条
数据删除'
,
message
:
'请勾选数据删除'
,
type
:
'warning'
});
return
false
;
}
var
status_arr
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
i_status
;
})
let
status
=
status_arr
.
every
(
ele
=>
ele
===
1
);
// -1已关闭1待报价2已报价9删除
let
status
=
status_arr
.
every
(
ele
=>
ele
===
1
)
if
(
status
)
{
for
(
var
i
=
0
;
i
<
this
.
multipleSelection
.
length
;
i
++
)
{
arr
.
push
(
this
.
multipleSelection
[
i
][
'supplier_auto_inquiry_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