提交代码
This commit is contained in:
parent
a581e40140
commit
50ae0ea62d
|
|
@ -76,7 +76,7 @@
|
||||||
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.annotatorIds.includes(getUserId)"
|
v-if="scope.row.annotatorIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleExamine(scope.row)"
|
@click="handleExamine(scope.row)"
|
||||||
|
|
@ -84,17 +84,16 @@
|
||||||
>审核
|
>审核
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
:disabled="scope.row.status0Count ===0"
|
:disabled="scope.row.status0Count ===0"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleDimension(scope.row)"
|
@click="handleDimension(scope.row)"
|
||||||
|
|
||||||
v-hasPermi="['dataCenter:sample:edit']"
|
v-hasPermi="['dataCenter:sample:edit']"
|
||||||
>智能标注
|
>智能标注
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleAnnotation(scope.row)"
|
@click="handleAnnotation(scope.row)"
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@
|
||||||
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.annotatorIds.includes(getUserId)"
|
v-if="scope.row.annotatorIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleExamine(scope.row)"
|
@click="handleExamine(scope.row)"
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
>审核
|
>审核
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
:disabled="scope.row.status0Count ===0"
|
:disabled="scope.row.status0Count ===0"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
>智能标注
|
>智能标注
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleAnnotation(scope.row)"
|
@click="handleAnnotation(scope.row)"
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@
|
||||||
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" min-width="140" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.annotatorIds.includes(getUserId)"
|
v-if="scope.row.annotatorIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleExamine(scope.row)"
|
@click="handleExamine(scope.row)"
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
>审核
|
>审核
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
:disabled="scope.row.status0Count ===0"
|
:disabled="scope.row.status0Count ===0"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
>智能标注
|
>智能标注
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.reviewerIds.includes(getUserId)"
|
v-if="scope.row.reviewerIds.split(',').includes(getUserId)"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@click="handleAnnotation(scope.row)"
|
@click="handleAnnotation(scope.row)"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue