fix: 计划查看-无数据时展示内容

This commit is contained in:
wangzhuo
2025-08-12 18:45:55 +08:00
parent 5d5b0c2115
commit cdb739960d

View File

@@ -80,7 +80,8 @@
<view class="demo-uni-col mar-left color-white" @click="handleDetail(index, i)"
:style="{ backgroundColor: COLOR_MAP[item[field]] }"
><!--@click="handleView(index, i)"-->
<text>{{ item[field] }}</text>
<text v-if="item[field]">{{ item[field] }}</text>
<text v-else style="color: gray">暂无</text>
</view>
</uni-col>
</block>