|
@@ -13,7 +13,8 @@
|
|
|
<span :class="{active: fileType == 2}" @click="checkType(2)">{{lang.backTest}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="f_box_top_right" v-if="fileType == 1">
|
|
|
+ <div class="f_box_container">
|
|
|
+ <div class="f_box_top_right" v-if="fileType == 1">
|
|
|
|
|
|
<div class="input">
|
|
|
<input
|
|
@@ -280,7 +281,6 @@
|
|
|
</div>
|
|
|
<div class="lbox_count">{{ pcount }} / {{ ptotal }}</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
<testBox v-if="fileType == 2" :userid="userid" :folderid="folderid"></testBox>
|
|
|
<wpdf :dialogVisiblePdf.sync="dialogVisiblePdf" :url="wurl"></wpdf>
|
|
@@ -519,7 +519,12 @@ export default {
|
|
|
"txt",
|
|
|
"ppt",
|
|
|
"pptx",
|
|
|
- "docx"
|
|
|
+ "docx",
|
|
|
+ "jpg",
|
|
|
+ "jpeg",
|
|
|
+ "png",
|
|
|
+ "gif",
|
|
|
+ "bmp"
|
|
|
];
|
|
|
// let uuid = uuidv4();
|
|
|
// let res = window.uploadFile({ file: event.target.files[0], uuid, userid:this.userid, folderid:this.folderid, moFolderid: this.moFolderid })
|
|
@@ -900,6 +905,14 @@ export default {
|
|
|
margin-left: 15px;
|
|
|
}
|
|
|
|
|
|
+.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); */
|
|
@@ -907,6 +920,7 @@ export default {
|
|
|
display: flex;
|
|
|
/* align-items: center; */
|
|
|
padding: 0 24px;
|
|
|
+ min-height: fit-content;
|
|
|
}
|
|
|
|
|
|
.f_box_top_right > .input {
|