|
|
@@ -97,6 +97,16 @@
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="处方来源" align="prescribeSource" prop="createTime" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag
|
|
|
+ :type="scope.row.prescribeSource === 1 ? 'success' : 'info'"
|
|
|
+ size="small"
|
|
|
+ >
|
|
|
+ {{ scope.row.prescribeSource === 1 ? '信息采集表' : '其他' }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button v-if="scope.row.doctorConfirm == 0" size="mini" type="text" icon="el-icon-edit"
|