123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view>
- <view class="notice">
- <view class="notice_title">公告:</view>
- <view class="notice_content">
- <text>{{bulletin}}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props:[
- "bulletin"
- ],
-
-
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .notice{
- box-sizing: border-box;
- padding: 20rpx 35rpx;
- background: #FFFFFF;
- box-shadow: 0px 3rpx 29rpx 0px rgba(59, 74, 116, 0.14);
- border-radius: 21rpx;
- .notice_title{
- height: 50rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #3B3B4D;
- line-height: 50rpx;
- }
- .notice_content{
- text-indent: 2rem;
- margin-top: 10rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #3B3B4D;
- line-height: 50rpx;
- }
- }
- </style>
|