瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
502 B

3 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="公告" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="content">
  5. <uv-parse :content="headInfo.notice.keyDetails"></uv-parse>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import { mapState } from 'vuex'
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. computed: {
  17. ...mapState(['city', 'userInfo', 'headInfo']),
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .page{
  25. .content{
  26. padding: 20rpx;
  27. }
  28. }
  29. </style>