Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zh-baseversion-project
Project
Project
Details
Activity
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
王浩
zh-baseversion-project
Commits
c372b57e
Commit
c372b57e
authored
Feb 05, 2026
by
zhangjianqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改查询条件
parent
9b6dff46
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
index.vue
...rsion-web/src/views/supervise/report/detaillist/index.vue
+13
-0
index.vue
zh-baseversion-web/src/views/supervise/report/index.vue
+3
-1
No files found.
zh-baseversion-web/src/views/supervise/report/detaillist/index.vue
View file @
c372b57e
...
...
@@ -177,6 +177,9 @@ export default {
name
:
"Report"
,
components
:
{
},
props
:
{
item
:
Object
},
data
()
{
return
{
...
...
@@ -218,11 +221,18 @@ export default {
};
},
created
()
{
console
.
log
(
this
.
item
)
this
.
getList
();
this
.
getDicts
(
"t_indoor_status"
).
then
(
response
=>
{
this
.
indoorStatusOptions
=
response
.
data
;
});
},
watch
:{
item
(
newVal
,
oldVal
)
{
//console.log(`Message changed from "${oldVal}" to "${newVal}"`);
this
.
getList
();
}
},
methods
:
{
// 入户状态,DONE-已入户,REJ-入户拒绝,NONE-到访不遇字典翻译
indoorStatusFormat
(
row
,
column
)
{
...
...
@@ -231,6 +241,9 @@ export default {
/** 查询入户安检结果列表 */
getList
()
{
this
.
loading
=
true
;
this
.
queryParams
.
annual
=
this
.
item
.
annual
;
this
.
queryParams
.
companyInfoId
=
this
.
item
.
companyInfoId
;
this
.
villageId
=
this
.
item
.
villageId
;
listReport
(
this
.
queryParams
).
then
(
response
=>
{
this
.
reportList
=
response
.
rows
;
this
.
total
=
response
.
total
;
...
...
zh-baseversion-web/src/views/supervise/report/index.vue
View file @
c372b57e
...
...
@@ -105,7 +105,7 @@
<!-- 添加或修改入户安检结果对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"1200px"
append-to-body
>
<reportDetail
/>
<reportDetail
:item=
"item"
/>
<!--<el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
<!--<el-form-item label="年度" prop="annual">-->
<!--<el-input v-model="form.annual" placeholder="请输入年度" />-->
...
...
@@ -172,6 +172,7 @@ export default {
},
data
()
{
return
{
item
:{},
// 遮罩层
loading
:
true
,
// 导出遮罩层
...
...
@@ -276,6 +277,7 @@ export default {
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
item
=
row
;
this
.
open
=
true
;
// this.reset();
// const reportId = row.reportId || this.ids
...
...
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