style: 基础组件根据修改意见调整默认样式

main
wu.jian2 1 year ago
parent cc20fcce46
commit 78d79ba327

@ -4,7 +4,7 @@
class="wrapper vue-ruler-wrapper"
:style="{
width: width + thick + 'px',
height: height + thick + 'px'
height: height + thick + 'px',
}"
>
<i
@ -55,6 +55,45 @@
<slot />
</div>
</div>
<div
id="minimap"
class="minimap"
>
<div
id="mapHeader"
class="mapHeader"
>
<div>
<span>小地图</span>
</div>
<div
class="showMap"
@click="showMinimap"
>
<i
v-if="!mapShow"
class="el-icon-arrow-down"
style="width:20px;height:20px;color:#fff;"
/>
<i
v-if="mapShow"
class="el-icon-arrow-up"
style="width:20px;height:20px;color:#fff;"
/>
</div>
</div>
<div
v-show="mapShow"
id="selectWin"
class="selectWin"
>
<div
id="selectionWin"
class="selectionWin"
/>
</div>
<div class="miniView" />
</div>
</div>
</div>
</template>

Loading…
Cancel
Save