fix:【测试计划】接口/性能用例,全选未自动提示“批量操作” (#4346)
Co-authored-by: wenyann <wenyan.yang@fit2cloud.com> --bug=1004759 --user=杨文艳 【测试计划】接口/性能用例,全选未自动提示“批量操作” https://www.tapd.cn/55049933/s/1024185
This commit is contained in:
parent
5759d93327
commit
462838b4e8
|
@ -29,7 +29,8 @@
|
|||
@selectAll="isSelectDataAll(true)"/>
|
||||
<el-table-column width="40" :resizable="false" align="center">
|
||||
<template v-slot:default="scope">
|
||||
<show-more-btn :is-show="scope.row.showMore && !isReadOnly" :buttons="buttons" :size="selectDataCounts"/>
|
||||
<show-more-btn :is-show-tool="scope.row.showTool" :is-show="scope.row.showMore && !isReadOnly"
|
||||
:buttons="buttons" :size="selectDataCounts"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template v-for="(item, index) in tableLabel">
|
||||
|
|
|
@ -25,7 +25,8 @@
|
|||
@selectAll="isSelectDataAll(true)"/>
|
||||
<el-table-column width="40" :resizable="false" align="center">
|
||||
<template v-slot:default="{row}">
|
||||
<show-more-btn :is-show="isSelect(row)" :buttons="buttons" :size="selectDataCounts"/>
|
||||
<show-more-btn :is-show-tool="row.showTool" :is-show="isSelect(row)" :buttons="buttons"
|
||||
:size="selectDataCounts"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template v-for="(item, index) in tableLabel">
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
@selectAll="isSelectDataAll(true)"/>
|
||||
<el-table-column min-width="40" :resizable="false" align="center">
|
||||
<template v-slot:default="scope">
|
||||
<show-more-btn :is-show="scope.row.showMore && !isReadOnly" :buttons="buttons" :size="selectDataCounts"/>
|
||||
<show-more-btn :is-show-tool="scope.row.showTool" :is-show="scope.row.showMore && !isReadOnly"
|
||||
:buttons="buttons" :size="selectDataCounts"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template v-for="(item, index) in tableLabel">
|
||||
|
|
|
@ -13,17 +13,11 @@
|
|||
class="el-menu-demo header-menu" mode="horizontal" @select="handleSelect"
|
||||
:default-active="activeIndex">
|
||||
<el-menu-item index="functional">{{ $t('test_track.functional_test_case') }}</el-menu-item>
|
||||
<!-- <el-menu-item index="api">接口测试用例</el-menu-item>
|
||||
<el-menu-item index="load">性能测试用例</el-menu-item>-->
|
||||
<!-- <el-menu-item index="report">报告统计</el-menu-item>-->
|
||||
</el-menu>
|
||||
</template>
|
||||
</ms-test-plan-header-bar>
|
||||
<test-review-function v-if="activeIndex === 'functional'" :redirectCharType="redirectCharType"
|
||||
:clickType="clickType" :review-id="reviewId"></test-review-function>
|
||||
<!-- <test-review-api v-if="activeIndex === 'api'" :review-id="reviewId"></test-review-api>
|
||||
<test-review-load v-if="activeIndex === 'load'" :review-id="reviewId"></test-review-load>-->
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
|
|
@ -41,7 +41,8 @@
|
|||
|
||||
<el-table-column width="40" :resizable="false" align="center">
|
||||
<template v-slot:default="scope">
|
||||
<show-more-btn :is-show="scope.row.showMore" :buttons="buttons" :size="selectDataCounts"/>
|
||||
<show-more-btn :is-show-tool="scope.row.showTool" :is-show="scope.row.showMore" :buttons="buttons"
|
||||
:size="selectDataCounts"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template v-for="(item, index) in tableLabel">
|
||||
|
|
Loading…
Reference in New Issue