文档服务地址:http://47.92.0.57:3000/ 周报索引地址:http://47.92.0.57:3000/s/NruNXRYmV

Commit 2177509f by Wang Yuhang

修改审核页面

parent 604e513a
......@@ -8,12 +8,11 @@
<pieces-table :task-id="task.id" showProgress isCheck>
<!-- 仅当executor不为undefined时(即有人标注)显示功能按钮 -->
<template v-slot:option="slotProps">
<!-- 无人标注,禁用待审核,有人标注,状态为0(未审核),显示,有人标注状态为1(已审核),不显示 -->
<el-button v-if="!(slotProps.executor && slotProps.executor.state)"
<!-- 有人标注,状态为0(未审核),显示,有人标注状态为1(已审核),不显示 -->
<el-button v-if="slotProps.executor && !slotProps.executor.state"
type="primary" size="mini" plain
:disabled="!slotProps.executor"
@click="goto(slotProps.file, slotProps.piece, slotProps.executor)">
{{ slotProps.executor ? '待审核' : '无人标注' }}
待审核
</el-button>
<el-button v-if="slotProps.executor && slotProps.executor.state" type="success" size="mini" plain
......
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