Commit db043195 authored by pengxin's avatar pengxin

修改文字

parent c86c395c
......@@ -45,7 +45,7 @@ const routers = [
// 数据服务
{ path: 'myDataSet', component: _import('gptTraining/dataServices/myDataSet/index'), name: 'myDataSet', props: getProps, meta: { title: '我的数据集' } },
// { path: 'presetDataSet', component: _import('gptTraining/dataServices/presetDataSet/index'), name: 'presetDataSet', props: getProps, meta: { title: '预制数据集' } },
{ path: 'onlineAnnotation', component: _import('gptTraining/dataServices/onlineAnnotation/index'), name: 'onlineAnnotation', props: getProps, meta: { title: '在线标注' } },
{ path: 'onlineAnnotation', component: _import('gptTraining/dataServices/onlineAnnotation/index'), name: 'onlineAnnotation', props: getProps, meta: { title: '数据标注' } },
{ path: 'dataCleansing', component: _import('gptTraining/dataServices/dataCleansing/index'), name: 'dataCleansing', props: getProps, meta: { title: '数据清洗' } },
{ path: 'dataEnhancement', component: _import('gptTraining/dataServices/dataEnhancement/index'), name: 'dataEnhancement', props: getProps, meta: { title: '数据增强' } },
// 模型管理
......
......@@ -136,7 +136,7 @@ const PublishStatus = new DictionaryBase('发布状态', [
},
{
id: 1,
name: '发布完成',
name: '已发布',
symbol: 'yesPublish'
}
]);
......
......@@ -66,14 +66,14 @@
<vxe-column field="inputStatus" title="导入状态">
<template slot-scope="scope">
<el-tag v-if="scope.row.inputStatus!==0" size="mini"> {{ ImportStatus.getValue(scope.row.inputStatus ) }}</el-tag>
<el-tag v-else type="warning" size="mini"> {{ ImportStatus.getValue(scope.row.inputStatus ) }}</el-tag>
<el-tag v-else type="info" size="mini"> {{ ImportStatus.getValue(scope.row.inputStatus ) }}</el-tag>
</template>
</vxe-column>
<vxe-column field="releaseStatus" title="发布状态">
<template slot-scope="scope">
<el-tag v-if="scope.row.releaseStatus!==0" size="mini">{{ PublishStatus.getValue(scope.row.releaseStatus ) }}</el-tag>
<el-tag v-else type="warning" size="mini"> {{ PublishStatus.getValue(scope.row.releaseStatus ) }}</el-tag>
<el-tag v-if="scope.row.releaseStatus!==0" type="danger" size="mini">{{ PublishStatus.getValue(scope.row.releaseStatus ) }}</el-tag>
<el-tag v-else type="info" size="mini"> {{ PublishStatus.getValue(scope.row.releaseStatus ) }}</el-tag>
</template>
</vxe-column>
<vxe-column field="createTime" title="创建时间"></vxe-column>
......@@ -82,21 +82,19 @@
<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="addVersions(scope.row)" :size="defaultFormItemSize">新增版本</el-button>
<el-button type="text" icon="el-icon-reading" v-else :size="defaultFormItemSize">去训练</el-button>
<el-button type="text" icon="el-icon-delete" @click="delDataset(scope.row)" :size="defaultFormItemSize">删除</el-button>
<template v-if="scope.row.inputStatus !== 0">
<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="analyse(scope.row)">分析</el-dropdown-item>
<el-dropdown-item @click.native="enhance(scope.row)">增强</el-dropdown-item> -->
</el-dropdown-menu>
</el-dropdown>
</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 @click.native="delDataset(scope.row)">删除数据集</el-dropdown-item>
<el-dropdown-item>清洗</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-menu>
</el-dropdown>
</template>
</vxe-column>
</vxe-table>
......@@ -131,7 +129,7 @@ export default {
},
{
title: '加工数据集',
describe: '通过数据分析/清洗/增强/标注,对数据资产进行加工处理,提升数据质量',
describe: '通过数据分析/清洗标注,对数据资产进行加工处理,提升数据质量',
img: require('@/assets/img/machining.946ba7b5.png')
},
{
......
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