Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
huaxin-rq
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
耿迪迪
huaxin-rq
Commits
608d8caa
Commit
608d8caa
authored
Dec 24, 2025
by
耿迪迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
居民安检单
parent
c33aa50d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
126 additions
and
277 deletions
+126
-277
cyRecordDetail.vue
...src/views/checktask/inspect/jumInspect/cyRecordDetail.vue
+119
-271
index.vue
huaxin-web/src/views/checktask/task/index.vue
+7
-6
No files found.
huaxin-web/src/views/checktask/inspect/jumInspect/cyRecordDetail.vue
View file @
608d8caa
This diff is collapsed.
Click to expand it.
huaxin-web/src/views/checktask/task/index.vue
View file @
608d8caa
...
@@ -343,7 +343,7 @@
...
@@ -343,7 +343,7 @@
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"6"
style
=
"padding-left: 8px"
>
<
el
-
col
:
span
=
"6"
style
=
"padding-left: 8px"
>
<
el
-
select
v
-
model
=
"form.community"
multiple
placeholder
=
"所属小区(村)"
>
<
el
-
select
v
-
model
=
"form.community"
multiple
@
change
=
"$forceUpdate()"
placeholder
=
"所属小区(村)"
>
<
el
-
option
<
el
-
option
v
-
for
=
"item in communityData"
v
-
for
=
"item in communityData"
:
key
=
"item.id"
:
key
=
"item.id"
...
@@ -365,7 +365,7 @@
...
@@ -365,7 +365,7 @@
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"24"
>
<
el
-
col
:
span
=
"24"
>
<
el
-
form
-
item
label
=
"负责人"
prop
=
"responsiblePerson"
>
<
el
-
form
-
item
label
=
"负责人"
prop
=
"responsiblePerson"
>
<
el
-
select
v
-
model
=
"form.responsiblePerson"
multiple
placeholder
=
"请选择负责人"
>
<
el
-
select
v
-
model
=
"form.responsiblePerson"
multiple
@
change
=
"$forceUpdate()"
placeholder
=
"请选择负责人"
>
<
el
-
option
<
el
-
option
v
-
for
=
"group in groupList"
v
-
for
=
"group in groupList"
:
key
=
"group.groupId"
:
key
=
"group.groupId"
...
@@ -590,7 +590,7 @@ export default {
...
@@ -590,7 +590,7 @@ export default {
if
(
this
.
form
.
relationInfoList
){
if
(
this
.
form
.
relationInfoList
){
let
community
=
this
.
form
.
relationInfoList
.
filter
(
item
=>
item
.
type
==
"1"
).
map
(
item
=>
item
.
relationId
);
let
community
=
this
.
form
.
relationInfoList
.
filter
(
item
=>
item
.
type
==
"1"
).
map
(
item
=>
item
.
relationId
);
if
(
community
)
{
if
(
community
)
{
this
.
form
.
community
=
community
;
this
.
form
.
community
=
[...
community
]
;
const
area
=
this
.
communityData
.
find
(
item
=>
item
.
id
==
community
[
0
]);
const
area
=
this
.
communityData
.
find
(
item
=>
item
.
id
==
community
[
0
]);
if
(
area
){
if
(
area
){
this
.
form
.
city
=
area
.
city
;
this
.
form
.
city
=
area
.
city
;
...
@@ -599,7 +599,7 @@ export default {
...
@@ -599,7 +599,7 @@ export default {
}
}
}
}
let
responsiblePerson
=
this
.
form
.
relationInfoList
.
filter
(
item
=>
item
.
type
==
"2"
).
map
(
item
=>
item
.
relationId
);
let
responsiblePerson
=
this
.
form
.
relationInfoList
.
filter
(
item
=>
item
.
type
==
"2"
).
map
(
item
=>
item
.
relationId
);
if
(
responsiblePerson
)
this
.
form
.
responsiblePerson
=
responsiblePerson
;
if
(
responsiblePerson
)
this
.
form
.
responsiblePerson
=
[...
responsiblePerson
]
;
}
}
}
,
}
,
/** 提交按钮 */
/** 提交按钮 */
...
@@ -624,6 +624,7 @@ export default {
...
@@ -624,6 +624,7 @@ export default {
}
);
}
);
}
,
}
,
addRelationInfo
(){
addRelationInfo
(){
this
.
form
.
relationInfoList
=
[];
this
.
form
.
community
.
forEach
(
item
=>
{
this
.
form
.
community
.
forEach
(
item
=>
{
const
relationInfo
=
{
const
relationInfo
=
{
type
:
"1"
,
type
:
"1"
,
...
@@ -640,7 +641,7 @@ export default {
...
@@ -640,7 +641,7 @@ export default {
relationId
:
item
,
relationId
:
item
,
}
;
}
;
if
(
this
.
form
.
id
){
if
(
this
.
form
.
id
){
item
.
taskId
=
this
.
form
.
id
relationInfo
.
taskId
=
this
.
form
.
id
}
}
this
.
form
.
relationInfoList
.
push
(
relationInfo
);
this
.
form
.
relationInfoList
.
push
(
relationInfo
);
}
)
}
)
...
@@ -780,7 +781,7 @@ export default {
...
@@ -780,7 +781,7 @@ export default {
this
.
groupList
=
res
.
data
;
this
.
groupList
=
res
.
data
;
}
}
}
)
}
)
}
}
,
}
,
}
,
}
;
}
;
<
/script
>
<
/script
>
...
...
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