新增订单打印状态

This commit is contained in:
gyq
2025-12-29 17:35:12 +08:00
parent 6ff949d97a
commit 5e401a8650

View File

@@ -90,9 +90,9 @@
</div> </div>
<div class="row">订单备注{{ scope.row.remark }}</div> <div class="row">订单备注{{ scope.row.remark }}</div>
<div class="row">打印状态 <div class="row">打印状态
<template v-if="scope.row.printStatus.length > 0"> <span v-if="scope.row.printStatus.length > 0" style="color: var(--el-color-danger)">
打印失败{{scope.row.printStatus.map(item => item.name).join('、')}} 打印失败{{scope.row.printStatus.map(item => item.name).join('、')}}
</template> </span>
</div> </div>
</div> </div>
</template> </template>