|
@ -345,7 +345,11 @@ export default { |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="operate" align="center" label="操作"> |
|
|
<el-table-column prop="operate" align="center" label="操作"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-button type="text" size="small" @click="handleCheck(scope.row)" |
|
|
<el-button |
|
|
|
|
|
type="text" |
|
|
|
|
|
size="small" |
|
|
|
|
|
@click="handleCheck(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:question:view']" |
|
|
>查看</el-button |
|
|
>查看</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
@ -353,6 +357,7 @@ export default { |
|
|
size="small" |
|
|
size="small" |
|
|
v-if="scope.row.status == '0'" |
|
|
v-if="scope.row.status == '0'" |
|
|
@click="handleSendDown(scope.row)" |
|
|
@click="handleSendDown(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:question:issue']" |
|
|
>下发</el-button |
|
|
>下发</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
@ -360,6 +365,7 @@ export default { |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleDeal(scope.row)" |
|
|
@click="handleDeal(scope.row)" |
|
|
v-else-if="scope.row.status == '1'" |
|
|
v-else-if="scope.row.status == '1'" |
|
|
|
|
|
v-hasPermi="['df:run:sup:question:deal']" |
|
|
>处理</el-button |
|
|
>处理</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
@ -367,6 +373,7 @@ export default { |
|
|
size="small" |
|
|
size="small" |
|
|
v-else-if="scope.row.status == '2'" |
|
|
v-else-if="scope.row.status == '2'" |
|
|
@click="handleConfirm(scope.row)" |
|
|
@click="handleConfirm(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:question:confirm']" |
|
|
>确认</el-button |
|
|
>确认</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
@ -374,6 +381,7 @@ export default { |
|
|
:disabled="true" |
|
|
:disabled="true" |
|
|
size="small" |
|
|
size="small" |
|
|
v-else-if="scope.row.status == '3'" |
|
|
v-else-if="scope.row.status == '3'" |
|
|
|
|
|
v-hasPermi="['df:run:sup:question:complete']" |
|
|
>完成</el-button |
|
|
>完成</el-button |
|
|
> |
|
|
> |
|
|
</template> |
|
|
</template> |
|
|