zhangwencui
8 天以前 7190ec7393168fd7280775ef0ea49040c27a0ec6
会议看板数量统计为零情况展示
已修改1个文件
8 ■■■■ 文件已修改
src/pages/managementMeetings/meetingBoard/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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">
          即将开始