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 a65bd740
authored
Jun 26, 2024
by
liangzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂存下
1 parent
80f3edd1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
26 deletions
src/views/checkCompliance/automaticCheck.vue
src/views/checkCompliance/automaticCheck.vue
View file @
a65bd74
...
...
@@ -30,13 +30,13 @@
end-placeholder=
"结束日期"
></el-date-picker>
</el-form-item>
<el-form-item
label=
"项目编码:"
prop=
"projectId"
class=
"fromItem"
>
<
!--
<
el-form-item
label=
"项目编码:"
prop=
"projectId"
class=
"fromItem"
>
<el-input
v-model=
"ruleForm.projectId"
placeholder=
"请输入"
clearable
></el-input>
</el-form-item>
</el-form-item>
-->
<el-form-item
label=
"项目名称:"
prop=
"projectName"
class=
"fromItem"
>
<el-input
v-model=
"ruleForm.projectName"
...
...
@@ -44,7 +44,7 @@
clearable
></el-input>
</el-form-item>
<el-form-item
label=
"项目年度:"
prop=
"projectYear"
class=
"fromItem"
>
<
!--
<
el-form-item
label=
"项目年度:"
prop=
"projectYear"
class=
"fromItem"
>
<el-select
v-model=
"ruleForm.projectYear"
placeholder=
"请选择"
...
...
@@ -57,7 +57,8 @@
:value=
"item"
/>
</el-select>
</el-form-item>
</el-form-item>
-->
<el-form-item
class=
"button"
>
<el-button
@
click=
"submitForm()"
>
<img
class=
"buttonIcon"
src=
"../../assets/cx.png"
/>
查询
</el-button
...
...
@@ -86,24 +87,19 @@
</el-table-column>
<el-table-column
type=
"selection"
>
</el-table-column>
<el-table-column
label=
"稽核名称"
prop=
"auditName"
width=
"320"
>
</el-table-column>
<el-table-column
prop=
"audit
Start
Time"
label=
"稽核时间"
width=
"250"
>
<el-table-column
prop=
"auditTime"
label=
"稽核时间"
width=
"250"
>
</el-table-column>
<el-table-column
prop=
"projectId"
label=
"项目编码"
width=
"220"
>
</el-table-column>
<el-table-column
prop=
"
project
Name"
prop=
"
full
Name"
label=
"项目名称"
show-overflow-tooltip
>
</el-table-column>
<el-table-column
prop=
"
projectYear"
label=
"项目年度"
width=
"200
"
>
<template
slot-scope
=
"scope"
>
{{
scope
.
row
.
projectYear
}}
年
<el-table-column
prop=
"
abnormalResults"
label=
"检查异常结果
"
>
<template
v-slot
=
"scope"
>
<el-button
type=
"text"
size=
"small"
@
click=
"detailsForm(scope.row)"
>
{{
scope
.
row
.
abnormalResults
}}
</el-button>
</
template
>
</el-table-column>
<el-table-column
prop=
"projectCategory"
label=
"建设形式"
width=
"200"
>
</el-table-column>
</el-table>
</div>
<el-pagination
...
...
@@ -134,11 +130,23 @@
<el-form-item
label=
"稽核名称:"
prop=
"auditName"
class=
"fromItem"
>
<el-input
v-model=
"ruleFormdialogXQ.auditName"
disabled
></el-input>
</el-form-item>
<el-form-item
label=
"稽核时间:"
class=
"fromItem"
prop=
"auditStartTime"
>
<el-input
v-model=
"ruleFormdialogXQ.auditStartTime"
disabled
></el-input>
<el-form-item
label=
"稽核时间:"
class=
"fromItem"
prop=
"auditTime"
>
<el-input
v-model=
"ruleFormdialogXQ.auditTime"
disabled
></el-input>
</el-form-item>
<!-- <el-form-item label="项目编码:" class="fromItem" prop="projectId">
<el-input v-model="ruleFormdialogXQ.projectId" disabled></el-input>
</el-form-item> -->
<el-form-item
label=
"项目名称:"
class=
"fromItem"
prop=
"fullName"
>
<el-input
v-model=
"ruleFormdialogXQ.fullName"
type=
"textarea"
disabled
></el-input>
</el-form-item>
<!-- <el-form-item label="项目年度:" class="fromItem" prop="projectYear">
<el-input v-model="ruleFormdialogXQ.projectYear" disabled></el-input>
</el-form-item>
<el-form-item label="建设形式:" class="fromItem" prop="projectCategory">
<el-input v-model="ruleFormdialogXQ.projectCategory" disabled></el-input>
</el-form-item> -->
</el-form>
<p
class=
"zjBtn"
>
稽核
规则配置
</p>
<p
class=
"zjBtn"
>
稽核
异常项目清单
</p>
<div
class=
"setscroll"
>
<el-table
:data=
"XQtableData"
...
...
@@ -151,11 +159,6 @@
>
<el-table-column
label=
"序号"
width=
"55"
type=
"index"
>
</el-table-column>
<el-table-column
label=
"规则名称"
width=
"auto"
prop=
"ruleName"
>
</el-table-column>
<el-table-column
prop=
"ruleType"
label=
"规则类型"
width=
"auto"
>
</el-table-column>
<el-table-column
prop=
"projectName"
label=
"稽核异常项目清单"
...
...
@@ -163,6 +166,11 @@
show-overflow-tooltip
>
</el-table-column>
<el-table-column
label=
"判断规则名称"
width=
"auto"
prop=
"ruleName"
>
</el-table-column>
<!-- <el-table-column prop="quesCheckItem" label="问题检查项" width="auto">
</el-table-column> -->
</el-table>
</div>
<!-- <el-pagination
...
...
@@ -195,11 +203,11 @@ export default {
listData
:
{},
showButton
:
true
,
ruleForm
:
{
dates
:[]
},
ruleFormdialogXQ
:
{},
currentPageXQ
:
''
,
pageSizeXQ
:
''
,
currentPageXQ
:
1
,
pageSizeXQ
:
5
,
tableData
:
[],
checkedList
:
[],
...
...
@@ -247,6 +255,11 @@ export default {
}
else
if
(
item
.
auditFrequency
==
4
)
{
this
.
$set
(
item
,
"auditFrequencyText"
,
"每年"
);
}
this
.
$set
(
item
,
"projectCategory"
,
projectCategoryText
(
item
.
projectCategory
)
);
});
this
.
total
=
res
.
data
.
total
*
1
;
}
...
...
@@ -261,11 +274,16 @@ export default {
this
.
submitForm
();
},
//详情
async
detailsForm
()
{
async
detailsForm
(
info
)
{
if
(
info
){
this
.
checkedList
[
0
]
=
info
}
else
{
if
(
this
.
checkedList
.
length
!=
1
)
{
this
.
$message
(
"请选择"
);
return
;
}
}
let
params
=
{
current
:
this
.
currentPageXQ
,
pageSize
:
this
.
pageSizeXQ
,
...
...
@@ -641,4 +659,7 @@ h3 {
position
:
relative
;
overflow
:
auto
;
}
/
deep
/
.el-button--small
{
font-size
:
14px
;
}
</
style
>
\ No newline at end of file
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