|
|
|
@ -134,7 +134,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
<template #default="{ row }"> |
|
|
|
<template #default="{ row }"> |
|
|
|
<el-button type="primary" link @click="handleDetail(row.id)">详情</el-button> |
|
|
|
<el-button type="primary" link @click="handleDetail(row.id)">详情</el-button> |
|
|
|
<el-button type="primary" link v-if="row.appealState === '0' || row.appealState === null" |
|
|
|
<el-button type="primary" link |
|
|
|
|
|
|
|
v-if="(row.appealState === '0' || row.appealState === null) && row.threeDeptId === row.nowDeptId" |
|
|
|
@click="launchAppeal(row.id)">申诉</el-button> |
|
|
|
@click="launchAppeal(row.id)">申诉</el-button> |
|
|
|
<el-button type="primary" link v-if="row.appealState === '1' || row.appealState === '2'" |
|
|
|
<el-button type="primary" link v-if="row.appealState === '1' || row.appealState === '2'" |
|
|
|
@click="handleAppealProgress(row.id)">查看申诉进度</el-button> |
|
|
|
@click="handleAppealProgress(row.id)">查看申诉进度</el-button> |
|
|
|
|