style: add el-tag styling to order status in transfer out list to match doctor station
This commit is contained in:
@@ -273,7 +273,15 @@
|
||||
</vxe-column>
|
||||
<vxe-column title="医嘱状态" align="center" width="120">
|
||||
<template #default="scope">
|
||||
{{ scope.row.requestStatus_enumText || '-' }}
|
||||
<el-tag v-if="scope.row.requestStatus == 6" type="danger">停止</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 13" type="warning">已停嘱(待核对)</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 2" type="success">已签发</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 1" type="primary">待签发</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 10" type="primary">已校对</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 11" type="primary">待接收</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 3" type="success">已校对</el-tag>
|
||||
<el-tag v-else-if="scope.row.requestStatus == 20" type="success">已完成</el-tag>
|
||||
<el-tag v-else type="info">{{ scope.row.requestStatus_enumText || '-' }}</el-tag>
|
||||
</template>
|
||||
</vxe-column>
|
||||
<vxe-column title="执行科室" align="center" min-width="120">
|
||||
|
||||
Reference in New Issue
Block a user