| | |
| | | <el-table-column prop="submitDate" label="上报时间" min-width="80px"></el-table-column> |
| | | <el-table-column label="处理状态" min-width="70px"> |
| | | <template slot-scope="{row}"> |
| | | <span v-if="row.dealStatus == 0">待指派</span> |
| | | <span v-if="row.dealStatus == 1">已指派</span> |
| | | <span v-if="row.dealStatus == 2">已处理</span> |
| | | <span v-if="row.dealStatus === 0">待处理</span> |
| | | <span v-if="row.dealStatus === 1">已转工单</span> |
| | | <span v-if="row.dealStatus === 2">已关闭</span> |
| | | </template>` |
| | | </el-table-column> |
| | | <el-table-column prop="dealUserName" label="处理人" min-width="80px"></el-table-column> |
| | |
| | | width="130" |
| | | fixed="right"> |
| | | <template slot-scope="{row}"> |
| | | <el-button type="text" @click="$refs.handleProblem.open('问题上报', row)">处理</el-button> |
| | | <el-button type="text" v-if="row.dealStatus === 0" @click="$refs.handleProblem.open('问题上报', row)">处理</el-button> |
| | | <el-button type="text" @click="$refs.problemReportingDetails.open('问题上报详情', row)">查看详情</el-button> |
| | | </template> |
| | | </el-table-column> |