feat(测试跟踪): 本地附件转存文件库排除掉第三方存储库模块
--bug=1033078 --user=宋昌昌 【测试跟踪&接口测试】用例中上传本地文件的附件,该附件可以选择转存到第三方仓库,实际转存失败 https://www.tapd.cn/55049933/s/1446223
This commit is contained in:
parent
8b04686ad1
commit
900b443886
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="this.$t('test_track.case.select_catalog')"
|
:title="this.$t('test_track.case.dump_module')"
|
||||||
:visible.sync="dialogVisible"
|
:visible.sync="dialogVisible"
|
||||||
:before-close="close"
|
:before-close="close"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
|
@ -82,7 +82,7 @@ export default {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.result = getFileModules(getCurrentProjectID()).then((response) => {
|
this.result = getFileModules(getCurrentProjectID()).then((response) => {
|
||||||
if (response.data != undefined && response.data != null) {
|
if (response.data != undefined && response.data != null) {
|
||||||
this.treeNodes = response.data;
|
this.treeNodes = response.data.filter(node => node['moduleType'] !== 'repository');
|
||||||
this.treeNodes.forEach((node) => {
|
this.treeNodes.forEach((node) => {
|
||||||
node.name = node.name === 'DEF_MODULE' ? this.$t('commons.module_title') : node.name;
|
node.name = node.name === 'DEF_MODULE' ? this.$t('commons.module_title') : node.name;
|
||||||
buildTree(node, { path: '' });
|
buildTree(node, { path: '' });
|
||||||
|
|
|
@ -80,7 +80,7 @@ export default {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.result = getFileModules(getCurrentProjectID()).then(response => {
|
this.result = getFileModules(getCurrentProjectID()).then(response => {
|
||||||
if (response.data !== undefined && response.data != null) {
|
if (response.data !== undefined && response.data != null) {
|
||||||
this.treeNodes = response.data;
|
this.treeNodes = response.data.filter(node => node['moduleType'] !== 'repository');
|
||||||
this.treeNodes.forEach(node => {
|
this.treeNodes.forEach(node => {
|
||||||
node.name = node.name === 'DEF_MODULE' ? this.$t('commons.module_title') : node.name
|
node.name = node.name === 'DEF_MODULE' ? this.$t('commons.module_title') : node.name
|
||||||
buildTree(node, {path: ''});
|
buildTree(node, {path: ''});
|
||||||
|
|
Loading…
Reference in New Issue