Commit 26b28e97 authored by huangzhenglong's avatar huangzhenglong

feat: 处理任务提示

parent 9b91b1e4
......@@ -79,8 +79,8 @@
<template slot-scope="scope">
<el-tag
:type="getStatusType(scope.row.status)"
:class="{'clickable-tag': scope.row.status === 4}"
@click="scope.row.status === 4 && showErrorMessage(scope.row)">
:class="{'clickable-tag': scope.row.status === 3 || scope.row.status === 4}"
@click="(scope.row.status === 3 || scope.row.status === 4) && showErrorMessage(scope.row)">
{{ getStatusText(scope.row.status) }}
</el-tag>
</template>
......@@ -379,8 +379,8 @@
<template slot-scope="scope">
<el-tag
:type="getStatusType(scope.row.status)"
:class="{'clickable-tag': scope.row.status === 4}"
@click="scope.row.status === 4 && showErrorMessage(scope.row)">
:class="{'clickable-tag': scope.row.status === 3 || scope.row.status === 4}"
@click="(scope.row.status === 3 || scope.row.status === 4) && showErrorMessage(scope.row)">
{{ getStatusText(scope.row.status) }}
</el-tag>
</template>
......
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