This commit is contained in:
houjunxiang
2025-10-09 18:19:55 +08:00
parent f2ffc65094
commit 386f1e7466
1553 changed files with 284685 additions and 32820 deletions

View File

@@ -0,0 +1,37 @@
<template>
<view>
<up-row justify="space-between" v-for="item in commentWf">
<up-col span="6">
<view>
{{ item.nodeName }}<text class="value">{{ item.comment }}</text>
</view>
</up-col>
<up-col span="6">
<view class="y-end">
<text class="value">{{ item.userName }}</text>
<text class="value">{{ item.time }}</text>
</view>
</up-col>
</up-row>
</view>
</template>
<script setup>
const props = defineProps({
commentWf: {
type: Array,
default: () => []
}
})
</script>
<style lang="scss" scoped>
.u-row {
border-bottom: 1px solid #eee;
padding: 10px 0;
}
.value {
color: #666;
font-size: 16px;
}
</style>