Commit a319cb30 authored by pengxin's avatar pengxin

调整按钮顺序。

parent 6cb2a4ab
......@@ -82,20 +82,17 @@
<el-button type="text" icon="el-icon-menu" @click="all(scope.row)" :size="defaultFormItemSize">详情</el-button>
<el-button v-if="scope.row.releaseStatus==0" type="text" icon="el-icon-plus" @click="dataImport(scope.row)" :size="defaultFormItemSize">导入</el-button>
<el-button type="text" icon="el-icon-reading" v-else :size="defaultFormItemSize" @click='drill(scope.row)'>训练</el-button>
<template v-if="scope.row.inputStatus !== 0">
<template>
<el-dropdown style="margin-left:15px;color: #0092FF;" :size="defaultFormItemSize">
<span class="el-dropdown-link">
更多<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-if="scope.row.releaseStatus!==1" @click.native="putOut(scope.row)">发布</el-dropdown-item>
<el-dropdown-item @click.native="derived(scope.row)">导出</el-dropdown-item>
<el-dropdown-item>清洗</el-dropdown-item>
<el-dropdown-item @click.native="delDataset(scope.row)">删除数据集</el-dropdown-item>
<el-dropdown-item @click.native="delVersions(scope.row)">删除版本</el-dropdown-item>
<!-- <el-dropdown-item @click.native="analyse(scope.row)">分析</el-dropdown-item>
<el-dropdown-item @click.native="enhance(scope.row)">增强</el-dropdown-item> -->
<el-dropdown-item v-if="scope.row.inputStatus === 1" @click.native="putOut(scope.row)">发布</el-dropdown-item>
<el-dropdown-item v-if="scope.row.inputStatus === 1">清洗</el-dropdown-item>
<el-dropdown-item v-if="scope.row.inputStatus === 1" @click.native="derived(scope.row)">导出</el-dropdown-item>
<el-dropdown-item v-if="scope.row.inputStatus === 1" @click.native="delDataset(scope.row)">删除数据集</el-dropdown-item>
<el-dropdown-item @click.native="delVersions(scope.row)">删除该版本</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</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