|
|
|
@ -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" /> --> |
|
|
|
|