Commit 635f1724 authored by mzx's avatar mzx

bug修改

parent c6b1ca19
......@@ -109,6 +109,11 @@
>
<el-table-column prop="serviceTitle" label="标题" :show-overflow-tooltip="true" />
<el-table-column prop="createTime" label="日期" width="140" />
<el-table-column prop="isReply" label="是否反馈" width="140" >
<template slot-scope="scope">
<span>{{ scope.row.isReply == 1 ? '未反馈' : '已反馈' }}</span>
</template>
</el-table-column>
</el-table>
</div>
</el-card>
......
......@@ -72,6 +72,7 @@
@click="viewDetail(scope.row)"
>查询</el-button>
<el-button
v-if="scope.row.isReply == 1"
type="text"
icon="el-icon-delete"
size="mini"
......
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