Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
data_management_system
Project
Project
Details
Activity
Releases
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
张伯涛
data_management_system
Commits
284126b6
Commit
284126b6
authored
Dec 02, 2022
by
张伯涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
2895a356
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
index.vue
ruoyi-ui/src/views/system/wzzry/index.vue
+7
-8
No files found.
ruoyi-ui/src/views/system/wzzry/index.vue
View file @
284126b6
...
@@ -140,18 +140,17 @@
...
@@ -140,18 +140,17 @@
<el-table-column
label=
"楼层"
align=
"center"
prop=
"floor"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"楼层"
align=
"center"
prop=
"floor"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"门牌号"
align=
"center"
prop=
"house"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"门牌号"
align=
"center"
prop=
"house"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"住址"
align=
"center"
prop=
"address"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"住址"
align=
"center"
prop=
"address"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"基础病情况"
align=
"center"
prop=
"basicDiseaseName"
width=
"100"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"基础病情况"
align=
"center"
prop=
"basicDiseaseName"
width=
"100"
:show-overflow-tooltip=
"true"
>
<!-- <el-table-column label="基础病情况" align="center" prop="basicDisease" width="100" :show-overflow-tooltip="true">-->
<
template
slot-scope=
"scope"
>
<!-- <template slot-scope="scope">-->
<span>
{{
scope
.
row
.
basicDiseaseName
?
scope
.
row
.
basicDiseaseName
.
toString
()
:
''
}}
</span>
<!-- <dict-tag :options="dict.type.basic_disease" :value="scope.row.basicDisease.split(',')"/>-->
</
template
>
<!-- </template>-->
</el-table-column>
<!-- </el-table-column>-->
<el-table-column
label=
"是否有人照顾"
align=
"center"
prop=
"isCare"
width=
"100"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"是否有人照顾"
align=
"center"
prop=
"isCare"
width=
"100"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
isCare
===
'0'
?
'是'
:
scope
.
row
.
isCare
===
'1'
?
'否'
:
''
}}
</span>
<span>
{{
scope
.
row
.
isCare
===
'0'
?
'是'
:
scope
.
row
.
isCare
===
'1'
?
'否'
:
''
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"同住人数(不包括自己)"
align=
"center"
prop=
"cohabitantsNumber"
width=
"1
0
0"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"同住人数(不包括自己)"
align=
"center"
prop=
"cohabitantsNumber"
width=
"1
6
0"
:show-overflow-tooltip=
"true"
/>
<!-- <el-table-column label="状态" align="center" prop="status" width="100" :show-overflow-tooltip="true" />-->
<!-- <el-table-column label="状态" align="center" prop="status" width="100" :show-overflow-tooltip="true" />-->
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
width=
"120"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
width=
"120"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
width=
"160"
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
width=
"160"
>
...
@@ -737,7 +736,7 @@ export default {
...
@@ -737,7 +736,7 @@ export default {
list
=
item
.
basicDisease
.
split
(
','
)
list
=
item
.
basicDisease
.
split
(
','
)
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
const
name
=
this
.
basicdiseaseOptions
.
find
(
optionItem
=>
optionItem
.
dictValue
===
list
[
i
]).
dictLabel
const
name
=
this
.
basicdiseaseOptions
.
find
(
optionItem
=>
optionItem
.
dictValue
===
list
[
i
]).
dictLabel
this
.
basicDiseaseName
.
push
(
name
+
','
)
this
.
basicDiseaseName
.
push
(
name
)
}
}
this
.
$set
(
item
,
'basicDiseaseName'
,
this
.
basicDiseaseName
)
this
.
$set
(
item
,
'basicDiseaseName'
,
this
.
basicDiseaseName
)
}
else
{
}
else
{
...
...
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