1234567891011121314151617181920212223242526272829303132 |
- <template>
- <text class="div notice" v-if="noticeText.length">
- 直播间公告:{{noticeText}}
- </text>
- </template>
- <script>
- export default {
- props: {
- noticeText: {}
- },
- data () {},
- methods: {
- },
- computed: {}
- }
- </script>
- <style lang="scss" scoped>
- .notice {
- background: rgba(0, 0, 0, 0.25);
- border-radius: 40rpx;
- padding: 24rpx;
- font-family: PingFangSC-Medium;
- font-size:14px;
- color: #f9fffe;
- /* #ifndef APP-PLUS-NVUE */
- letter-spacing: 0;
- /* #endif */
- line-height: 40rpx;
- }
- </style>
|