spring
2026-02-06 5eadfbb64d2f288b92ec1f22cfef6f096b4b9a9e
src/pages/managementMeetings/meetingBoard/index.vue
@@ -8,7 +8,7 @@
    <view class="topbox">
      <view class="boxItem">
        <view class="boxItem-num">
          {{stats.total}}
          {{stats.total ? stats.total : 0}}
        </view>
        <view class="boxItem-title">
          总会议数
@@ -16,7 +16,7 @@
      </view>
      <view class="boxItem">
        <view class="boxItem-num">
          {{stats.underWay}}
          {{stats.underWay ? stats.underWay : 0}}
        </view>
        <view class="boxItem-title">
          进行中
@@ -24,7 +24,7 @@
      </view>
      <view class="boxItem">
        <view class="boxItem-num">
          {{stats.completed}}
          {{stats.completed ? stats.completed : 0}}
        </view>
        <view class="boxItem-title">
          已完成
@@ -32,7 +32,7 @@
      </view>
      <view class="boxItem">
        <view class="boxItem-num">
          {{stats.toStart}}
          {{stats.toStart ? stats.toStart : 0}}
        </view>
        <view class="boxItem-title">
          即将开始
@@ -91,8 +91,7 @@
                               :name="`meeting-${index}`">
                <view class="meeting-content">
                  <view v-if="item.content"
                        v-html="item.content"
                        class="content-html"></view>
                        class="content-html"><rich-text :nodes="item.content"></rich-text></view>
                  <view v-else
                        class="no-content">
                    <text>暂无会议纪要内容</text>