|
@ -23,28 +23,28 @@ |
|
|
</el-tabs> |
|
|
</el-tabs> |
|
|
<el-table v-loading="loading" :data="listDat" @selection-change="handleSelectionChange"> |
|
|
<el-table v-loading="loading" :data="listDat" @selection-change="handleSelectionChange"> |
|
|
<el-table-column type="selection" width="55" align="center" /> |
|
|
<el-table-column type="selection" width="55" align="center" /> |
|
|
<el-table-column label="工单id" fixed show-overflow-tooltip align="center" prop="id" width="200" /> |
|
|
<el-table-column label="工单id" fixed show-overflow-tooltip align="center" prop="id" min-width="200" /> |
|
|
<el-table-column fixed label="随访队列" show-overflow-tooltip align="center" prop="queueName" width="150" /> |
|
|
<el-table-column fixed label="随访队列" show-overflow-tooltip align="center" prop="queueName" min-width="150" /> |
|
|
<el-table-column fixed label="患者姓名" align="center" prop="name" width="100" /> |
|
|
<el-table-column fixed label="患者姓名" align="center" prop="name" min-width="100" /> |
|
|
<el-table-column label="性别" align="center" prop="gender" show-overflow-tooltip width="60"> |
|
|
<el-table-column label="性别" align="center" prop="gender" show-overflow-tooltip min-width="60"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span v-if="scope.row.gender == 0">男</span> |
|
|
<span v-if="scope.row.gender == 0">男</span> |
|
|
<span v-if="scope.row.gender == 1">女</span> |
|
|
<span v-if="scope.row.gender == 1">女</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
<el-table-column label="年龄" align="center" prop="age" show-overflow-tooltip width="60" /> |
|
|
<el-table-column label="年龄" align="center" prop="age" show-overflow-tooltip min-width="60" /> |
|
|
<el-table-column label="证件号码" align="center" prop="idCard" show-overflow-tooltip width="180" /> |
|
|
<el-table-column label="证件号码" align="center" prop="idCard" show-overflow-tooltip min-width="180" /> |
|
|
<el-table-column label="手机号码" align="center" prop="phone" show-overflow-tooltip width="150" /> |
|
|
<el-table-column label="手机号码" align="center" prop="phone" show-overflow-tooltip min-width="150" /> |
|
|
<el-table-column label="随访序号" align="center" prop="phone" show-overflow-tooltip width="150" /> |
|
|
<el-table-column label="随访序号" align="center" prop="phone" show-overflow-tooltip min-width="150" /> |
|
|
<el-table-column label="开始时间" align="center" prop="startTime" show-overflow-tooltip width="150"> |
|
|
<el-table-column label="开始时间" align="center" prop="startTime" show-overflow-tooltip min-width="150"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span>{{ |
|
|
<span>{{ |
|
|
parseTime(scope.row.startTime, "{y}-{m}-{d} {h}:{i}") |
|
|
parseTime(scope.row.startTime, "{y}-{m}-{d} {h}:{i}") |
|
|
}}</span> |
|
|
}}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="结束时间" align="center" prop="endTime" show-overflow-tooltip width="150"> |
|
|
<el-table-column label="结束时间" align="center" prop="endTime" show-overflow-tooltip min-width="150"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span>{{ |
|
|
<span>{{ |
|
|
parseTime(scope.row.endTime, "{y}-{m}-{d} {h}:{i}") |
|
|
parseTime(scope.row.endTime, "{y}-{m}-{d} {h}:{i}") |
|
@ -54,7 +54,7 @@ |
|
|
<!--待随访: 随访状态(待随访/即将超期/超期) --> |
|
|
<!--待随访: 随访状态(待随访/即将超期/超期) --> |
|
|
<!--已随访: 随访状态(已随访/超随访期) --> |
|
|
<!--已随访: 随访状态(已随访/超随访期) --> |
|
|
<!--待随访: 随访状态(待随访) --> |
|
|
<!--待随访: 随访状态(待随访) --> |
|
|
<el-table-column label="随访状态" align="center" prop="phone" show-overflow-tooltip width="150"> |
|
|
<el-table-column label="随访状态" align="center" prop="phone" show-overflow-tooltip min-width="150"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
{{ status[scope.row.status] }} |
|
|
{{ status[scope.row.status] }} |
|
|
</template> |
|
|
</template> |
|
|