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

Commit 827e0c1c by Wang Yuhang

添加修改标注文件的入口

parent b0ba7a92
......@@ -19,7 +19,7 @@
<li v-for="item in executors" :key="item.id">
<span>{{item.nickname}}</span>
<el-button v-if="!item.state" type="primary" size="mini" plain @click="goto(item)">待审核</el-button>
<i v-else class="el-icon-success"></i>
<el-button v-else type="success" size="mini" plain @click="goto(item)">修改</el-button>
</li>
</ul>
</el-dialog>
......@@ -80,7 +80,7 @@ export default {
switch (type) {
case '文本':
if (file.url.endsWith('xlsx')) { goto('table') }
if (file.url.endsWith('txt')) { goto('SelectTexted') }
if (file.url.endsWith('txt')) { goto('SelectText') }
break
case '图片': goto('image'); break
case '图层': goto('layer')
......
......@@ -10,7 +10,9 @@
<el-button v-if="!slotProps.file.state" type="primary" size="mini" plain
@click="doOption(slotProps.file,slotProps.type)"
>标注</el-button>
<i v-else class="el-icon-success"></i>
<el-button v-else type="success" size="mini" plain
@click="doOption(slotProps.file,slotProps.type)"
>修改</el-button>
</template>
</pieces-table>
</div>
......
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