Commit 10995709 authored by 张伯涛's avatar 张伯涛

修改

parent 756b30b3
...@@ -132,6 +132,11 @@ ...@@ -132,6 +132,11 @@
<dict-tag :options="dict.type.residential_area" :value="scope.row.area"/> <dict-tag :options="dict.type.residential_area" :value="scope.row.area"/>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="小区名称" width="140" align="center" prop="community" :show-overflow-tooltip="true">
<template slot-scope="scope">
<dict-tag :options="dict.type.community" :value="scope.row.community"/>
</template>
</el-table-column>
<el-table-column label="街道/镇名称" width="140" align="center" prop="street" :show-overflow-tooltip="true"> <el-table-column label="街道/镇名称" width="140" align="center" prop="street" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :options="dict.type.street_town" :value="scope.row.street"/> <dict-tag :options="dict.type.street_town" :value="scope.row.street"/>
...@@ -142,24 +147,20 @@ ...@@ -142,24 +147,20 @@
<dict-tag :options="dict.type.committee" :value="scope.row.committee"/> <dict-tag :options="dict.type.committee" :value="scope.row.committee"/>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="小区名称" width="140" align="center" prop="community" :show-overflow-tooltip="true">
<template slot-scope="scope">
<dict-tag :options="dict.type.community" :value="scope.row.community"/>
</template>
</el-table-column>
<el-table-column label="楼号" align="center" prop="floor" :show-overflow-tooltip="true"> <el-table-column label="楼号" align="center" prop="floor" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.floor ? scope.row.floor : '-' }}</span> <span>{{ scope.row.floor ? scope.row.floor : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="单元号" align="center" prop="unit" :show-overflow-tooltip="true"> <el-table-column label="单元号" align="center" prop="unit" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.unit ? scope.row.unit : '-' }}</span> <span>{{ scope.row.unit ? scope.row.unit : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="楼层" align="center" prop="level" width="100" :show-overflow-tooltip="true" />
<el-table-column label="封控明细" align="center" prop="fkDetailed" width="120" :show-overflow-tooltip="true"> <el-table-column label="封控明细" align="center" prop="fkDetailed" width="120" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.fkDetailed ? scope.row.fkDetailed : '-' }}</span> <span>{{ scope.row.fkDetailed ? scope.row.fkDetailed : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="涉及封控户数" align="center" prop="fkHs" width="120" :show-overflow-tooltip="true"/> <el-table-column label="涉及封控户数" align="center" prop="fkHs" width="120" :show-overflow-tooltip="true"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment