|
@ -6,7 +6,11 @@ |
|
|
<el-button type="danger" size="small" @click="handleDelete">删除</el-button> |
|
|
<el-button type="danger" size="small" @click="handleDelete">删除</el-button> |
|
|
</div> |
|
|
</div> |
|
|
<div id="threeFunc" style="width: 840px;padding-right: 8px" class="printBox"> |
|
|
<div id="threeFunc" style="width: 840px;padding-right: 8px" class="printBox"> |
|
|
<p style="color:#000000;font-size:32px;margin:0 0 30px 0;text-align:center;"> |
|
|
|
|
|
|
|
|
<div class="flex j-c"> |
|
|
|
|
|
<img width="450" src="@/assets/img/xianganlogo.png"> |
|
|
|
|
|
</div> |
|
|
|
|
|
<hr> |
|
|
|
|
|
<p style="color:#000000;font-size:32px;margin-bottom:30px;text-align:center;"> |
|
|
三级视功能检查报告单 |
|
|
三级视功能检查报告单 |
|
|
</p> |
|
|
</p> |
|
|
<div style="display: flex;justify-content: space-around"> |
|
|
<div style="display: flex;justify-content: space-around"> |
|
@ -16,7 +20,7 @@ |
|
|
<span>年龄:<el-input v-model="dataForm.patientAge" style="width: 120px" size="small" clearable placeholder="" /></span> |
|
|
<span>年龄:<el-input v-model="dataForm.patientAge" style="width: 120px" size="small" clearable placeholder="" /></span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="operation-record-table"> |
|
|
<div class="operation-record-table"> |
|
|
<el-table :data="tableData" :span-method="objectSpanMethod" border style="width: 820px; margin-top: 20px"> |
|
|
|
|
|
|
|
|
<el-table :data="tableData" :span-method="objectSpanMethod" border style="width: 820px; margin-top: 10px"> |
|
|
<el-table-column label="" width="" align="center" :resizable="false"> |
|
|
<el-table-column label="" width="" align="center" :resizable="false"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div v-if="scope.row.name === 'ODOS'" style="position: relative;height: 180px"> |
|
|
<div v-if="scope.row.name === 'ODOS'" style="position: relative;height: 180px"> |
|
@ -81,14 +85,14 @@ |
|
|
<!-- {{scope.row.name}}--> |
|
|
<!-- {{scope.row.name}}--> |
|
|
<div v-if="scope.row.name == '屈光状态'"> |
|
|
<div v-if="scope.row.name == '屈光状态'"> |
|
|
<div class="width-180 center"> |
|
|
<div class="width-180 center"> |
|
|
<el-input v-model="scope.row.OD" placeholder="" > |
|
|
|
|
|
|
|
|
<el-input v-model="scope.row.OD" placeholder=""> |
|
|
<template slot="prepend">OD:</template> |
|
|
<template slot="prepend">OD:</template> |
|
|
</el-input> |
|
|
</el-input> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="scope.row.name == '屈光状态a'"> |
|
|
<div v-if="scope.row.name == '屈光状态a'"> |
|
|
<div class="width-180 center"> |
|
|
<div class="width-180 center"> |
|
|
<el-input v-model="scope.row.OS" placeholder="" > |
|
|
|
|
|
|
|
|
<el-input v-model="scope.row.OS" placeholder=""> |
|
|
<template slot="prepend">OS:</template> |
|
|
<template slot="prepend">OS:</template> |
|
|
</el-input> |
|
|
</el-input> |
|
|
</div> |
|
|
</div> |
|
@ -143,14 +147,14 @@ |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div v-if="scope.row.name == '屈光状态'"> |
|
|
<div v-if="scope.row.name == '屈光状态'"> |
|
|
<div class="width-180 center"> |
|
|
<div class="width-180 center"> |
|
|
<el-input v-model="scope.row.VA" placeholder="" > |
|
|
|
|
|
|
|
|
<el-input v-model="scope.row.VA" placeholder=""> |
|
|
<template slot="prepend">VA:</template> |
|
|
<template slot="prepend">VA:</template> |
|
|
</el-input> |
|
|
</el-input> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="scope.row.name == '屈光状态a'"> |
|
|
<div v-if="scope.row.name == '屈光状态a'"> |
|
|
<div class="width-180 center"> |
|
|
<div class="width-180 center"> |
|
|
<el-input v-model="scope.row.VA" placeholder="" > |
|
|
|
|
|
|
|
|
<el-input v-model="scope.row.VA" placeholder=""> |
|
|
<template slot="prepend">VA:</template> |
|
|
<template slot="prepend">VA:</template> |
|
|
</el-input> |
|
|
</el-input> |
|
|
</div> |
|
|
</div> |
|
@ -509,14 +513,22 @@ export default { |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
<style lang="scss"> |
|
|
|
|
|
.flex{ |
|
|
|
|
|
display: flex; |
|
|
|
|
|
} |
|
|
|
|
|
.j-c{ |
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
} |
|
|
|
|
|
#threeFunc{ |
|
|
|
|
|
.el-table__cell{ |
|
|
|
|
|
padding: 7px 0 !important; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
.printBox{ |
|
|
.printBox{ |
|
|
.btnBox{ |
|
|
.btnBox{ |
|
|
display: flex; |
|
|
display: flex; |
|
|
justify-content: flex-end; |
|
|
justify-content: flex-end; |
|
|
} |
|
|
} |
|
|
.el-table--border{ |
|
|
|
|
|
border-right: 1px solid #EBEEF5; |
|
|
|
|
|
} |
|
|
|
|
|
.operation-record-table { |
|
|
.operation-record-table { |
|
|
//width: 100%; |
|
|
//width: 100%; |
|
|
width: 840px !important; |
|
|
width: 840px !important; |
|
|