guideDetail.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="announcement-details">
  3. <text class="title">{{ announcement.title }}</text>
  4. <view class="content">
  5. <u-parse :html="announcement.content" :selectable="true"></u-parse>
  6. </view>
  7. <text class="date">{{ formatDate(announcement.date) }}</text>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. announcement: {
  15. title: "申请加入协会指南",
  16. content: "<p>想要加入我们的协会吗?请填写申请表并提交至办公室,审核后会通知您结果。</p><img src='/static/notice/ditu.png' />", // 假设这是后端返回的内容
  17. date: "2023-10-01T00:00:00Z" // ISO格式日期
  18. }
  19. };
  20. },
  21. methods: {
  22. formatDate(dateString) {
  23. const options = { year: 'numeric', month: 'long', day: 'numeric' };
  24. return new Date(dateString).toLocaleDateString('zh-CN', options);
  25. }
  26. }
  27. };
  28. </script>
  29. <style scoped>
  30. .announcement-details {
  31. padding: 20px;
  32. background-color: #ffffff;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-between;
  36. height: 100vh; /* 让页面高度撑满 */
  37. }
  38. .title {
  39. font-size: 24px;
  40. font-weight: bold;
  41. color: #333;
  42. text-align: center; /* 标题居中 */
  43. margin-bottom: 15px;
  44. }
  45. .content {
  46. flex: 1; /* 占据剩余空间 */
  47. display: flex;
  48. flex-direction: column;
  49. align-items: flex-start; /* 内容左对齐 */
  50. }
  51. .body {
  52. font-size: 16px;
  53. color: #555;
  54. text-align: left; /* 内容左对齐 */
  55. }
  56. .body img{
  57. width: 50%;
  58. height: auto;
  59. }
  60. .date {
  61. font-size: 14px;
  62. color: #999;
  63. text-align: right; /* 时间右对齐 */
  64. margin-top: 10px; /* 与内容分离 */
  65. }
  66. </style>