Commit fb60cc63 authored by 刘怀志's avatar 刘怀志

65930 病历管理,取药状态显示不正确

parent 037c0995
...@@ -544,7 +544,7 @@ color: #333333;" ...@@ -544,7 +544,7 @@ color: #333333;"
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.inputShow">-</span> <span v-if="scope.row.inputShow">-</span>
<span v-else> <span v-else>
{{ scope.row.status ? (scope.row.status === '1' ? '已取药' : '待取药') : '-' }} {{scope.row.paymentStatus === '0' ? '-' : (scope.row.status ? (scope.row.status === '1' ? '已取药' : '待取药') : '-') }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment