mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-07 01:46:46 +08:00
提交
This commit is contained in:
@@ -112,7 +112,15 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-time">
|
<div class="item-time">
|
||||||
<div>{{ `已完成 ${value.progress}%` }}</div>
|
<template v-if="value.progress === 0">
|
||||||
|
<div style="color: #999999">未开始</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<div>
|
||||||
|
{{ `已完成 ${value.progress}%` }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<div style="color: #999999">
|
<div style="color: #999999">
|
||||||
{{ `${value.createTime} 更新` }}
|
{{ `${value.createTime} 更新` }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user