|
@@ -1,21 +1,5 @@
|
|
<template>
|
|
<template>
|
|
<div :class="classes">
|
|
<div :class="classes">
|
|
- <div class="rect-col" :style="{ width: leftColWidth + '%' }">
|
|
|
|
- <div
|
|
|
|
- class="rect-col-item"
|
|
|
|
- ref="stdinfoContainer"
|
|
|
|
- :style="{ height: heights.stdinfo + 'px' }"
|
|
|
|
- >
|
|
|
|
- <slot name="stdinfo"></slot>
|
|
|
|
- </div>
|
|
|
|
- <div
|
|
|
|
- class="rect-col-item"
|
|
|
|
- ref="noticeContainer"
|
|
|
|
- :style="{ height: heights.notice + 'px' }"
|
|
|
|
- >
|
|
|
|
- <slot name="notice"></slot>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
<div class="rect-col" :style="{ width: rightColWidth + '%' }">
|
|
<div class="rect-col" :style="{ width: rightColWidth + '%' }">
|
|
<div
|
|
<div
|
|
class="rect-col-item"
|
|
class="rect-col-item"
|
|
@@ -32,6 +16,22 @@
|
|
<slot name="dynamic"></slot>
|
|
<slot name="dynamic"></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="rect-col" :style="{ width: leftColWidth + '%' }">
|
|
|
|
+ <div
|
|
|
|
+ class="rect-col-item"
|
|
|
|
+ ref="stdinfoContainer"
|
|
|
|
+ :style="{ height: heights.stdinfo + 'px' }"
|
|
|
|
+ >
|
|
|
|
+ <slot name="stdinfo"></slot>
|
|
|
|
+ </div>
|
|
|
|
+ <div
|
|
|
|
+ class="rect-col-item"
|
|
|
|
+ ref="noticeContainer"
|
|
|
|
+ :style="{ height: heights.notice + 'px' }"
|
|
|
|
+ >
|
|
|
|
+ <slot name="notice"></slot>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|