|
@@ -14,8 +14,8 @@
|
|
|
<span :class="{ active: fileType == 2 }" @click="checkType(2)">{{ lang.backTest }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="f_box_container">
|
|
|
- <div class="f_box_top_right" v-if="fileType == 1">
|
|
|
+ <div class="f_box_container" v-if="fileType == 1">
|
|
|
+ <div class="f_box_top_right" >
|
|
|
|
|
|
<div class="input">
|
|
|
<input type="text" v-model="fileName" :placeholder=lang.selectFileName @input="debouncedSearch" />
|
|
@@ -824,6 +824,14 @@ export default {
|
|
|
overflow: auto;
|
|
|
}
|
|
|
|
|
|
+.f_box_container{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 16px;
|
|
|
+ height: 100%;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+
|
|
|
.f_box_top_right {
|
|
|
margin-left: auto;
|
|
|
/* max-width: calc(100% - 280px); */
|
|
@@ -833,7 +841,6 @@ export default {
|
|
|
padding: 0 24px;
|
|
|
min-height: fit-content;
|
|
|
}
|
|
|
-
|
|
|
.f_box_top_right>.input {
|
|
|
position: relative;
|
|
|
/* height: 40px; */
|