12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view>
- <view class="section">
- <view class="box">
- <view class="title">
- 今日产量
- </view>
- <view class="content">
- <slot></slot>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .section{
- margin-top: 10rpx;
-
- .box{
- background: #FFFFFF;
- box-shadow: 0px 3rpx 30rpx 0px rgba(59, 74, 116, 0.14);
- border-radius: 21rpx;
-
- .title{
- width: 720rpx;
-
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #232627;
- line-height: 100rpx;
- text-align: center;
-
- border-bottom: 2rpx solid #f3f3f3;
- }
- .content{
- min-height: 200rpx;
- }
- }
- }
- </style>
|