|
|
@ -4,52 +4,20 @@ defineProps({
|
|
|
|
type: Object as PropType<any>,
|
|
|
|
type: Object as PropType<any>,
|
|
|
|
required: true,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
taskTableData: {
|
|
|
|
|
|
|
|
type: Array,
|
|
|
|
|
|
|
|
default: () => [[]],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<table class="description">
|
|
|
|
<table class="description">
|
|
|
|
<tr>
|
|
|
|
<tr v-for="(item, index) in taskTableData" :key="index">
|
|
|
|
<th>拜访终端名称</th>
|
|
|
|
<th>{{ item[0]["label"] }}</th>
|
|
|
|
<td class="blue">
|
|
|
|
<td>{{ item[0]["value"] }}</td>
|
|
|
|
{{ data?.ocrPicture?.field3 }}
|
|
|
|
<th v-if="item.length>1">{{ item[1]["label"] }}</th>
|
|
|
|
</td>
|
|
|
|
<td v-if="item.length>1">{{ item[1]["value"] }}</td>
|
|
|
|
<th>定位信息</th>
|
|
|
|
|
|
|
|
<td class="blue">
|
|
|
|
|
|
|
|
{{ data?.ocrPicture?.field10 }}
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th>拜访日期</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field1 }}</td>
|
|
|
|
|
|
|
|
<th>定位距离</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field12 }}</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th>拜访小结</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field8 }}</td>
|
|
|
|
|
|
|
|
<th>拜访项目类别</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field17 }}</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th>科室名称</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field7 }}</td>
|
|
|
|
|
|
|
|
<th>病例号</th>
|
|
|
|
|
|
|
|
<td></td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th>拜访级别</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field6 }}</td>
|
|
|
|
|
|
|
|
<th>下阶段计划</th>
|
|
|
|
|
|
|
|
<td></td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th>是否为重复图片</th>
|
|
|
|
|
|
|
|
<td> {{ data?.ocrPicture?.field14 }}</td>
|
|
|
|
|
|
|
|
<th>附件信息</th>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
|
|
|
|
<a href="data?.fileannex" download></a>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</table>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|