|
@ -44,9 +44,20 @@ |
|
|
</tr> |
|
|
</tr> |
|
|
<tr> |
|
|
<tr> |
|
|
<td colspan="2"> |
|
|
<td colspan="2"> |
|
|
<div class="flex"> |
|
|
|
|
|
|
|
|
<div class="flex a-c j-b"> |
|
|
|
|
|
<div> |
|
|
操作者:<img v-if="confirmData.operator" :src="confirmData.operator" alt="" style="width: 80px;height: 50px;border-style:none;"> |
|
|
操作者:<img v-if="confirmData.operator" :src="confirmData.operator" alt="" style="width: 80px;height: 50px;border-style:none;"> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex a-c" style="margin-left: 15px"> |
|
|
|
|
|
日期:<el-date-picker |
|
|
|
|
|
v-model="confirmData.operateDate" |
|
|
|
|
|
style="flex: 1" |
|
|
|
|
|
type="date" |
|
|
|
|
|
format="yyyy-MM-dd" |
|
|
|
|
|
value-format="yyyy-MM-dd" |
|
|
|
|
|
/> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
</tr> |
|
|
</tr> |
|
|
</tbody> |
|
|
</tbody> |
|
@ -85,7 +96,8 @@ export default { |
|
|
patientName: '', |
|
|
patientName: '', |
|
|
remark: '', |
|
|
remark: '', |
|
|
operator: '', |
|
|
operator: '', |
|
|
idList: [] |
|
|
|
|
|
|
|
|
idList: [], |
|
|
|
|
|
operateDate: '' |
|
|
}, |
|
|
}, |
|
|
formData: { |
|
|
formData: { |
|
|
patientName: '', |
|
|
patientName: '', |
|
@ -186,7 +198,6 @@ export default { |
|
|
// 保存 |
|
|
// 保存 |
|
|
handleSaveTable() { |
|
|
handleSaveTable() { |
|
|
this.confirmData.fmwOd = this.handleFormEye(this.formData.form.OD).join('/') |
|
|
this.confirmData.fmwOd = this.handleFormEye(this.formData.form.OD).join('/') |
|
|
console.log(this.handleFormEye(this.formData.form.OD)) |
|
|
|
|
|
this.confirmData.fmwOs = this.handleFormEye(this.formData.form.OS).join('/') |
|
|
this.confirmData.fmwOs = this.handleFormEye(this.formData.form.OS).join('/') |
|
|
this.confirmData.jzNumber = window.sessionStorage.getItem('jzNumber') |
|
|
this.confirmData.jzNumber = window.sessionStorage.getItem('jzNumber') |
|
|
this.$http.post('/mzbl/saveMzblBg', { |
|
|
this.$http.post('/mzbl/saveMzblBg', { |
|
@ -212,6 +223,7 @@ export default { |
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
const userData = JSON.parse(window.sessionStorage.getItem('qg-userData')) |
|
|
const userData = JSON.parse(window.sessionStorage.getItem('qg-userData')) |
|
|
this.confirmData.operator = userData.signImgBase |
|
|
this.confirmData.operator = userData.signImgBase |
|
|
|
|
|
this.confirmData.operateDate = this.$moment().format('YYYY-MM-DD') |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
@ -275,6 +287,12 @@ export default { |
|
|
.flex{ |
|
|
.flex{ |
|
|
display: flex; |
|
|
display: flex; |
|
|
} |
|
|
} |
|
|
|
|
|
.a-c{ |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
} |
|
|
|
|
|
.j-b{ |
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
|
} |
|
|
.treatAction{ |
|
|
.treatAction{ |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
margin-top: 10px; |
|
|
margin-top: 10px; |
|
|