1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view>
- <view class="content">
- <view class="title">
- 当前井下人员分布
- </view>
- <view class="inner">
- <slot></slot>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .content{
- margin-top: 16rpx;
- background: #FFFFFF;
- box-shadow: 0px 3rpx 29rpx 0px rgba(59, 74, 116, 0.14);
- border-radius: 20rpx;
- .title{
- line-height: 96rpx;
- text-align: center;
-
-
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
-
- border-bottom: 2rpx solid #f3f3f3;
- }
- .inner{
- // height: 200rpx;
- }
- }
- </style>
|