|
@@ -29,17 +29,17 @@
|
|
|
{{ (sorts.page - 1) * sorts.limit + scope.$index + 1 }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="isReply" label="回复状态" :show-overflow-tooltip="true">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.isReply === 0 ? "未回复" :
|
|
|
- scope.row.isReply === 1 ? "已回复" : "" }}
|
|
|
+ <el-table-column min-width="38%" prop="isReply" sortable label="回复状态" :show-overflow-tooltip="true" >
|
|
|
+ <template slot-scope="scope" >
|
|
|
+ {{ scope.row.isReply === 0 ? "未回复" :
|
|
|
+ scope.row.isReply === 1 ? "已回复" : "" }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="deptName" label="部门名称" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column prop="remark" label="问题内容" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column prop="phone" label="手机号" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column prop="createTime" label="创建时间" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column prop="updateTime" label="更新时间" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column prop="deptName" label="部门名称" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column prop="remark" label="问题内容" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column prop="phone" label="手机号" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column prop="createTime" sortable label="创建时间" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column prop="updateTime" sortable label="更新时间" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="操作" width="220">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button class="but" :type="scope.row.isReply == 1 ?'' : 'primary'" :disabled="scope.row.isReply == 1"
|