|
@@ -44,6 +44,7 @@
|
|
|
<el-dropdown-item command="setStyle">文本样式设置</el-dropdown-item>
|
|
|
<el-dropdown-item command="indicia">标注库</el-dropdown-item>
|
|
|
<el-dropdown-item command="clientble" v-if="userinfo.tenantType == 1">客户管理</el-dropdown-item>
|
|
|
+ <el-dropdown-item command="importAndExportHistory" >我的导入导出历史</el-dropdown-item>
|
|
|
<el-dropdown-item divided command="doLogout">退出登录</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</template>
|
|
@@ -289,6 +290,9 @@ export default {
|
|
|
this.clientVisible = true
|
|
|
this.clientTitle = '客户管理'
|
|
|
break;
|
|
|
+ case 'importAndExportHistory':
|
|
|
+ this.importAndExportHistory()
|
|
|
+ break;
|
|
|
case 'importPatent':
|
|
|
this.importPatent()
|
|
|
break;
|
|
@@ -300,6 +304,12 @@ export default {
|
|
|
break;
|
|
|
}
|
|
|
},
|
|
|
+ //导入导出历史
|
|
|
+ importAndExportHistory(row){
|
|
|
+ this.$router.push({
|
|
|
+ path: "/taskList",
|
|
|
+ });
|
|
|
+ },
|
|
|
// 跳转到标注库
|
|
|
indicia() {
|
|
|
const router = this.$router.resolve({
|