Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
903af02d
authored
2023-07-20 16:25:21 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
--no commit message
1 parent
ec6ac939
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
src/views/djbworkflow/djbBook/spyj.vue
src/views/djbworkflow/djbBook/spyj.vue
View file @
903af02
...
...
@@ -45,7 +45,7 @@
<el-col
:span=
"16"
>
<el-form-item
label=
"审查人"
>
<el-input
:disabled=
"!ableOperation
|| !item.shyj
"
:disabled=
"!ableOperation"
v-model=
"item.shryxm"
></el-input>
</el-form-item>
...
...
@@ -53,7 +53,7 @@
<el-col
:span=
"8"
>
<el-form-item
class=
"sjxzq"
label=
"审核时间"
>
<el-date-picker
:disabled=
"!ableOperation
|| !item.shyj
"
:disabled=
"!ableOperation"
v-model=
"item.shkssj"
type=
"date"
placeholder=
"选择日期"
...
...
@@ -111,7 +111,9 @@ export default {
methods
:
{
/**
* @description: getShList
* @a
* @param {*} obj
* @author: renchao
*/
getShList
()
{
this
.
$startLoading
();
var
formdata
=
{
...
...
@@ -123,8 +125,6 @@ export default {
if
(
res
.
result
.
length
)
{
this
.
tableData
=
res
.
result
;
}
// this.ruleForm = res.result[res.result.length - 1]
}
});
},
...
...
@@ -151,8 +151,12 @@ export default {
this
.
$message
.
error
(
"请完善核定意见信息填写"
);
}
else
{
this
.
falg
=
true
;
if
(
this
.
tableData
[
0
].
shyj
!=
null
&&
this
.
tableData
[
0
].
shyj
!=
""
)
{
if
(
this
.
tableData
[
0
].
shyj
!=
null
&&
this
.
tableData
[
0
].
shyj
!=
""
||
this
.
tableData
[
0
].
shryxm
!=
null
&&
this
.
tableData
[
0
].
shryxm
!=
""
||
this
.
tableData
[
0
].
shkssj
!=
null
&&
this
.
tableData
[
0
].
shkssj
!=
""
)
{
if
(
this
.
tableData
[
0
].
shyj
==
null
||
this
.
tableData
[
0
].
shyj
==
""
||
this
.
tableData
[
0
].
shryxm
==
null
||
this
.
tableData
[
0
].
shryxm
==
""
||
this
.
tableData
[
0
].
shkssj
==
null
||
...
...
@@ -166,8 +170,12 @@ export default {
}
else
{
this
.
falg
=
true
;
}
if
(
this
.
tableData
[
1
].
shyj
!=
null
&&
this
.
tableData
[
1
].
shyj
!=
""
)
{
if
(
this
.
tableData
[
1
].
shyj
!=
null
&&
this
.
tableData
[
1
].
shyj
!=
""
||
this
.
tableData
[
1
].
shryxm
!=
null
&&
this
.
tableData
[
1
].
shryxm
!=
""
||
this
.
tableData
[
1
].
shkssj
!=
null
&&
this
.
tableData
[
1
].
shkssj
!=
""
)
{
if
(
this
.
tableData
[
1
].
shyj
==
null
||
this
.
tableData
[
1
].
shyj
==
""
||
this
.
tableData
[
1
].
shryxm
==
null
||
this
.
tableData
[
1
].
shryxm
==
""
||
this
.
tableData
[
1
].
shkssj
==
null
||
...
...
Please
register
or
sign in
to post a comment