|
@@ -267,6 +267,7 @@
|
|
|
ref="TFileStream"
|
|
|
></TFileStream>
|
|
|
</el-main>
|
|
|
+ <!-- <div class="kongzhit"> -->
|
|
|
<div class="footerTitle el-tag--primary">
|
|
|
<div>{{ $t("FEM.other.console") }}
|
|
|
<p
|
|
@@ -299,10 +300,12 @@
|
|
|
<el-input
|
|
|
class="footerText"
|
|
|
type="textarea"
|
|
|
+ id="textarea_id"
|
|
|
v-model="logs"
|
|
|
></el-input>
|
|
|
</div>
|
|
|
</el-footer>
|
|
|
+ <!-- </div> -->
|
|
|
</el-container>
|
|
|
</el-container>
|
|
|
</div>
|
|
@@ -857,11 +860,16 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//日志
|
|
|
- getthislog(log) {
|
|
|
- this.newlog = log + "\n" + this.newlog;
|
|
|
+ getthislog(log,newoldSolver) {
|
|
|
+ this.newlog =this.newlog + "\n" +log ;
|
|
|
this.logs = this.newlog;
|
|
|
let logs = this.logs;
|
|
|
- if (this.logs.indexOf("newSolver end") >= 0) {
|
|
|
+ console.log(newoldSolver);
|
|
|
+ this.$nextTick(() => {
|
|
|
+ let textarea=document.getElementById("textarea_id");
|
|
|
+ textarea.scrollTop=textarea.scrollHeight;
|
|
|
+ })
|
|
|
+ if (this.logs.indexOf('newSolver end') >= 0) {
|
|
|
this.elodingfalse = false;
|
|
|
this.isSolverEnd = true;
|
|
|
this.statecustom = "0";
|
|
@@ -1321,13 +1329,19 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
padding: 5px 20px;
|
|
|
font-size: 20px;
|
|
|
- height: 30px !important;
|
|
|
+ height: 25px !important;
|
|
|
z-index: 99;
|
|
|
}
|
|
|
.footerTitle div {
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
align-items: center;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.kongzhit{
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
}
|
|
|
.footerTitle p {
|
|
|
margin: 0;
|
|
@@ -1337,17 +1351,18 @@ export default {
|
|
|
cursor: default;
|
|
|
}
|
|
|
.femFooter {
|
|
|
- height: 135px !important;
|
|
|
+ height: 160px !important;
|
|
|
padding: 0;
|
|
|
position: relative;
|
|
|
}
|
|
|
.footerText .el-textarea__inner {
|
|
|
width: 100%;
|
|
|
- height: 135px !important;
|
|
|
+ height: 160px !important;
|
|
|
border: 0;
|
|
|
font-size: 12px;
|
|
|
color: #333;
|
|
|
padding: 2px;
|
|
|
+ padding-bottom: 46px;
|
|
|
}
|
|
|
</style>
|
|
|
<style>
|