Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
周远喜
mes-ui
Commits
ff9387a2
Commit
ff9387a2
authored
Apr 09, 2020
by
佟礼
Browse files
Options
Browse Files
Download
Plain Diff
工单执行送检判断
parents
49ba838d
21100141
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
3 deletions
+22
-3
entryrecordlist.vue
pages/implement/components/entryrecordlist.vue
+22
-3
No files found.
pages/implement/components/entryrecordlist.vue
View file @
ff9387a2
...
@@ -22,9 +22,9 @@
...
@@ -22,9 +22,9 @@
</Select>
</Select>
</
template
>
</
template
>
<Button
type=
"primary"
@
click=
"QcCardChecker(1)"
class=
"title_btn ml10"
>
操作员
</Button>
<Button
type=
"primary"
@
click=
"QcCardChecker(1)"
class=
"title_btn ml10"
>
操作员
</Button>
<Button
type=
"primary"
@
click=
"QcCardChecker(2)"
class=
"title_btn ml10"
>
互检员
</Button>
<Button
type=
"primary"
:disabled=
"ishavhj"
@
click=
"QcCardChecker(2)"
class=
"title_btn ml10"
>
互检员
</Button>
<Button
type=
"primary"
@
click=
"SendCheck()"
class=
"title_btn ml10"
>
送检
</Button>
<Button
type=
"primary"
:disabled=
"ishavzj"
@
click=
"SendCheck()"
class=
"title_btn ml10"
>
送检
</Button>
<Button
type=
"primary"
@
click=
"SendCheckRecord()"
class=
"title_btn ml10"
>
送检记录
</Button>
<Button
type=
"primary"
:disabled=
"ishavzj"
@
click=
"SendCheckRecord()"
class=
"title_btn ml10"
>
送检记录
</Button>
</div>
</div>
<div
class=
"table01"
>
<div
class=
"table01"
>
<Table
ref=
"table"
border
class=
"tableCommon"
:height=
"taHeight"
:columns=
"recordcolumn"
:data=
"recorddata"
>
<Table
ref=
"table"
border
class=
"tableCommon"
:height=
"taHeight"
:columns=
"recordcolumn"
:data=
"recorddata"
>
...
@@ -237,6 +237,8 @@ export default {
...
@@ -237,6 +237,8 @@ export default {
entryModel
:
{},
entryModel
:
{},
disabled
:
false
,
disabled
:
false
,
look
:
'查看'
,
look
:
'查看'
,
ishavhj
:
true
,
ishavzj
:
true
,
taHeight
:
''
,
taHeight
:
''
,
entryrecordfilesModal
:
false
,
entryrecordfilesModal
:
false
,
entryrecorddataModal
:
false
,
entryrecorddataModal
:
false
,
...
@@ -478,6 +480,23 @@ export default {
...
@@ -478,6 +480,23 @@ export default {
QS
.
stringify
(
this
.
datasearch
)
QS
.
stringify
(
this
.
datasearch
)
service
.
get
(
`
${
url
}
`
).
then
((
response
)
=>
{
service
.
get
(
`
${
url
}
`
).
then
((
response
)
=>
{
this
.
recorddata
=
response
.
result
this
.
recorddata
=
response
.
result
let
gh
=
this
.
recorddata
.
filter
(
function
(
obj
)
{
return
obj
.
check_type
===
2
})
if
(
gh
!=
null
&&
gh
.
length
>
0
)
{
this
.
ishavhj
=
false
}
else
{
this
.
ishavhj
=
true
}
let
gh1
=
this
.
recorddata
.
filter
(
function
(
obj
)
{
return
obj
.
check_type
===
3
||
obj
.
check_type
===
4
})
if
(
gh1
!=
null
&&
gh1
.
length
>
0
)
{
this
.
ishavzj
=
false
}
else
{
this
.
ishavzj
=
true
}
})
})
},
},
handleselfCheckAll
()
{
handleselfCheckAll
()
{
...
...
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