12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view>
- <view class="header">
- <view class="title">
- 官方公告
- </view>
- </view>
- <view class="notice-list">
- <view>
- <view class="time">
- 2021-07-02 11:25
- </view>
- <view class="notice-item">
- <view class="title">省心直供APP公告<uni-icons type="sound-filled" style="margin-left: 10upx;"></uni-icons>
- </view>
- <view class="content">亲爱的用户 目前APP还在测试阶段有任何使用问题请联系客服处理,如有不便请见谅!</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .header {
- margin: 20upx;
- background: white;
- text-align: center;
- border-radius: 20upx;
- .title {
- height: 100upx;
- font-size: 32upx;
- line-height: 100upx;
- // font-weight: bold;
- }
- }
- .notice-list {
- .time {
- text-align: center;
- font-size: 24upx;
- color: #999999;
- }
- .notice-item {
- border-radius: 10upx;
- margin: 20upx;
- background: white;
- padding: 20upx;
- .title {
- font-size: 28upx;
- padding-bottom: 20upx;
- // border-bottom: 2upx solid #EEEEEE;
- }
- .content {
- // margin-top: 20upx;
- font-size: 26upx;
- }
- }
- }
- </style>
|