Browse Source

家庭画像,生满意度详情问题修改

V1.0
张若晨 2 years ago
parent
commit
739ec79ab7
  1. 1
      src/views/dataBoard/cpts/family/modules/businessTables/economize.vue
  2. 24
      src/views/dataBoard/cpts/personnel/modules/businessTables/economize.vue
  3. 2059
      src/views/dataBoard/cpts/resi-details.vue

1
src/views/dataBoard/cpts/family/modules/businessTables/economize.vue

@ -16,6 +16,7 @@
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" /> <img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div> <div style="color: #fff">暂无数据</div>
</div> </div>
<smyd :showDialog="showDialog" :id="rowId" @close="close" />
</div> </div>
</template> </template>

24
src/views/dataBoard/cpts/personnel/modules/businessTables/economize.vue

@ -1,6 +1,11 @@
<template> <template>
<div class="table"> <div class="table">
<el-table v-if="list.length > 0" :data="list" max-height="363px" height="363px"> <el-table
v-if="list.length > 0"
:data="list"
max-height="363px"
height="363px"
>
<el-table-column label="序号" type="index" width="80" /> <el-table-column label="序号" type="index" width="80" />
<el-table-column label="不满意事项类型" prop="scope" width="190" /> <el-table-column label="不满意事项类型" prop="scope" width="190" />
<el-table-column label="不满意事项描述" prop="problemDesc" width="" /> <el-table-column label="不满意事项描述" prop="problemDesc" width="" />
@ -12,20 +17,27 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px"> <div
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" /> v-else
style="width: 100%; height: 100%; text-align: center; padding-top: 120px"
>
<img
width="268px"
height="128px"
src="~@/assets/images/overview/zanwu.png"
/>
<div style="color: #fff">暂无数据</div> <div style="color: #fff">暂无数据</div>
</div> </div>
<smyd :showDialog="showDialog" :id="rowId" @close="close" /> <Smyd :showDialog="showDialog" :id="rowId" @close="close" />
</div> </div>
</template> </template>
<script> <script>
import smyd from "@/views/dataBoard/cpts/details/smyd.vue"; import Smyd from "@/views/dataBoard/cpts/details/smyd.vue";
export default { export default {
name: "economize", name: "economize",
components: { components: {
smyd, Smyd,
}, },
data() { data() {
return { return {

2059
src/views/dataBoard/cpts/resi-details.vue

File diff suppressed because it is too large
Loading…
Cancel
Save