This commit is contained in:
fit2-zhao 2020-12-23 21:21:44 +08:00
commit 30b4e8f4cb
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div v-if="visible"> <div v-if="visible">
<ms-drawer :size="40" @close="apiCaseClose" direction="bottom"> <ms-drawer :size="60" @close="apiCaseClose" direction="bottom">
<template v-slot:header> <template v-slot:header>
<api-case-header <api-case-header
:api="api" :api="api"
@ -17,8 +17,8 @@
/> />
</template> </template>
<el-container v-loading="result.loading" style="padding-bottom: 200px"> <el-container v-loading="result.loading">
<el-main v-loading="batchLoading" style="overflow: auto"> <el-main v-loading="batchLoading">
<div v-for="(item,index) in apiCaseList" :key="index"> <div v-for="(item,index) in apiCaseList" :key="index">
<api-case-item v-loading="singleLoading && singleRunId === item.id" <api-case-item v-loading="singleLoading && singleRunId === item.id"
@refresh="refresh" @refresh="refresh"

View File

@ -134,6 +134,6 @@ html,body {
} }
::-webkit-scrollbar-track{ ::-webkit-scrollbar-track{
border-radius: 1em; border-radius: 1em;
background-color: rgba(50,50,50,.1); background-color: transparent;
position: fixed; position: fixed;
} }