Browse Source

事件如果有关联的居民id,则特殊标识出来

feature
duanliangtao 2 years ago
parent
commit
8713c9b31c
  1. 16
      src/views/modules/shequzhili/event/eventList.vue

16
src/views/modules/shequzhili/event/eventList.vue

@ -167,7 +167,21 @@
<el-table-column prop="timeLimit" align="center" width="110" :show-overflow-tooltip="true"
label="办结时限" />
<el-table-column prop="name" align="center" width="100" label="联系人" :show-overflow-tooltip="true" />
<el-table-column prop="mobile" align="center" width="110" label="联系电话" :show-overflow-tooltip="true" />
<el-table-column prop="mobile" align="center" width="110" label="联系电话" :show-overflow-tooltip="true">
<template slot-scope="scope">
<el-button
v-if="scope.row.reportUserId !== null && scope.row.reportUserId !== ''"
@click="handlePersonList(scope.row)"
type="text"
size="small"
>
{{ scope.row.mobile }}
</el-button>
<span v-else>
{{ scope.row.mobile }}
</span>
</template>
</el-table-column>
<el-table-column prop="address" align="center" :show-overflow-tooltip="true" label="详细地址" />
<!-- <el-table-column prop="satisfactionName" align="center" width="100" label="满意度"
:show-overflow-tooltip="true" /> -->

Loading…
Cancel
Save