Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
project_progress
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 8249505d
authored
Sep 23, 2024
by
liangzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复重置后查询条件不回显问题
1 parent
e0e02e07
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
41 additions
and
21 deletions
src/views/checkCompliance/automaticCheck.vue
src/views/compliance/checkRules.vue
src/views/compliance/taskConfigure.vue
src/views/projectCheck/checkResault.vue
src/views/projectCheck/problemRectify.vue
src/views/projectCheck/verificationRectify.vue
src/views/checkCompliance/automaticCheck.vue
View file @
8249505
...
@@ -206,7 +206,9 @@ export default {
...
@@ -206,7 +206,9 @@ export default {
listData
:
{},
listData
:
{},
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{
ruleForm
:
{
dates
:[]
auditName
:
''
,
dates
:[],
projectName
:
''
},
},
ruleFormdialogXQ
:
{},
ruleFormdialogXQ
:
{},
currentPageXQ
:
1
,
currentPageXQ
:
1
,
...
...
src/views/compliance/checkRules.vue
View file @
8249505
...
@@ -387,7 +387,12 @@ export default {
...
@@ -387,7 +387,12 @@ export default {
tableDataNew
:
MaterialsList
(),
tableDataNew
:
MaterialsList
(),
xxtableData
:
[],
xxtableData
:
[],
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{},
ruleForm
:
{
ruleName
:
''
,
ruleStatus
:
''
,
creator
:
''
,
},
ruleFormdialog
:
{
ruleFormdialog
:
{
batchYear
:
""
,
batchYear
:
""
,
batchName
:
""
,
batchName
:
""
,
...
@@ -567,9 +572,9 @@ export default {
...
@@ -567,9 +572,9 @@ export default {
this
.
$refs
.
formName
.
resetFields
();
this
.
$refs
.
formName
.
resetFields
();
this
.
currentPage
=
1
;
this
.
currentPage
=
1
;
this
.
pageSize
=
10
;
this
.
pageSize
=
10
;
this
.
ruleForm
.
auditStartTime
=
""
;
//
this.ruleForm.auditStartTime = "";
this
.
ruleForm
.
auditEndTime
=
""
;
//
this.ruleForm.auditEndTime = "";
this
.
ruleForm
.
dates
=
[];
//
this.ruleForm.dates = [];
this
.
submitForm
();
this
.
submitForm
();
},
},
//详情
//详情
...
...
src/views/compliance/taskConfigure.vue
View file @
8249505
...
@@ -742,12 +742,9 @@ export default {
...
@@ -742,12 +742,9 @@ export default {
xxtableData
:
[],
xxtableData
:
[],
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{
ruleForm
:
{
batchYear
:
""
,
auditName
:
""
,
batchName
:
""
,
dates
:
""
,
postEvalState
:
""
,
},
//填写解决重置无法输入问题
projectName
:
""
,
projectId
:
""
,
},
ruleFormdialog
:
{
ruleFormdialog
:
{
batchYear
:
""
,
batchYear
:
""
,
batchName
:
""
,
batchName
:
""
,
...
@@ -945,7 +942,7 @@ export default {
...
@@ -945,7 +942,7 @@ export default {
this
.
pageSize
=
10
;
this
.
pageSize
=
10
;
this
.
ruleForm
.
auditStartTime
=
""
;
this
.
ruleForm
.
auditStartTime
=
""
;
this
.
ruleForm
.
auditEndTime
=
""
;
this
.
ruleForm
.
auditEndTime
=
""
;
this
.
ruleForm
.
dat
a
s
=
[];
this
.
ruleForm
.
dat
e
s
=
[];
this
.
submitForm
();
this
.
submitForm
();
},
},
//详情
//详情
...
...
src/views/projectCheck/checkResault.vue
View file @
8249505
...
@@ -206,7 +206,9 @@ export default {
...
@@ -206,7 +206,9 @@ export default {
listData
:
{},
listData
:
{},
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{
ruleForm
:
{
dates
:[]
auditName
:
''
,
dates
:[],
projectName
:
''
},
},
ruleFormdialogXQ
:
{},
ruleFormdialogXQ
:
{},
currentPageXQ
:
1
,
currentPageXQ
:
1
,
...
...
src/views/projectCheck/problemRectify.vue
View file @
8249505
...
@@ -64,12 +64,9 @@
...
@@ -64,12 +64,9 @@
placeholder=
"请选择"
placeholder=
"请选择"
clearable
clearable
>
>
<el-option
label=
"未下发"
value=
"0"
></el-option>
<el-option
label=
"未下发"
value=
"1"
></el-option>
<el-option
label=
"待整改"
value=
"1"
></el-option>
<el-option
label=
"待整改"
value=
"2"
></el-option>
<el-option
label=
"待提交"
value=
"2"
></el-option>
<el-option
label=
"已整改"
value=
"3"
></el-option>
<el-option
label=
"已提交"
value=
"3"
></el-option>
<el-option
label=
"被退回"
value=
"4"
></el-option>
<el-option
label=
"整改完成"
value=
"5"
></el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
...
@@ -376,7 +373,17 @@ export default {
...
@@ -376,7 +373,17 @@ export default {
XFtableData
:
[],
XFtableData
:
[],
dialogXF
:
false
,
dialogXF
:
false
,
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{},
ruleForm
:
{
auditName
:
""
,
dates
:[],
projectId
:
""
,
projectName
:
""
,
projectYear
:
""
,
rectificationStatus
:
""
},
ruleFormdialog
:
{},
ruleFormdialog
:
{},
tableData
:
[],
tableData
:
[],
...
...
src/views/projectCheck/verificationRectify.vue
View file @
8249505
...
@@ -383,7 +383,14 @@ export default {
...
@@ -383,7 +383,14 @@ export default {
XFtableData
:
[],
XFtableData
:
[],
dialogXF
:
false
,
dialogXF
:
false
,
showButton
:
true
,
showButton
:
true
,
ruleForm
:
{},
ruleForm
:
{
auditName
:
""
,
dates
:[],
projectId
:
""
,
projectName
:
""
,
projectYear
:
""
,
confirmStatus
:
""
},
ruleFormdialog
:
{},
ruleFormdialog
:
{},
tableData
:
[],
tableData
:
[],
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment