|
@@ -19,7 +19,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div id="toolbar-heat" v-if="isheatPlotting" class="panel panel-primary"
|
|
|
- style="position:absolute;z-index: 9999;top:4rem;left: 1rem; border-radius: 4px; width: fit-content;height:635px;overflow-y:scroll;background:#040b1f">
|
|
|
+ style="position:absolute;z-index: 9999; padding: 1rem; bottom:3rem;right: 1rem; border-radius: 4px; width: fit-content;height:635px;overflow-y:scroll;background:#040b1f">
|
|
|
<div class="panel-body content">
|
|
|
<div class="panel">
|
|
|
<div class="input-group">
|
|
@@ -42,8 +42,10 @@
|
|
|
<input type="text" class="form-control" id="heatNums1" value="20"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="panel">
|
|
|
<el-button type="success" @click="createHeatPoints">标绘</el-button>
|
|
|
<el-button type="success" @click="clearHeatPoints">取消标绘</el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -1253,6 +1255,30 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
@import '@/assets/styles/base.scss';
|
|
|
+.panel{
|
|
|
+ margin-bottom: .5rem;
|
|
|
+ button{
|
|
|
+ margin-top: .5rem;
|
|
|
+ }
|
|
|
+ .input-group{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+ .input-group-addon{
|
|
|
+ color: $inBlue;
|
|
|
+
|
|
|
+ }
|
|
|
+ .form-control{
|
|
|
+ padding: 0 .3rem;
|
|
|
+ margin-left: .5rem;
|
|
|
+ height: 1.5rem;
|
|
|
+ line-height: 1.5rem;
|
|
|
+ background-color: #112543;
|
|
|
+ color: $inBlue;
|
|
|
+ border: 1px $searchBorder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
.button-group {
|
|
|
button {
|