Commit 12251bd0 authored by 小费同学阿's avatar 小费同学阿 💬

进度信息模块封装ui代码优化2

parent fcce59f0
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
> >
<el-form ref="queryForm" :inline="true" :model="queryParams" label-width="100px" size="small"> <el-form ref="queryForm" :inline="true" :model="queryParams" label-width="100px" size="small">
<el-form-item label="主治兽医:" prop="petNickname"> <el-form-item label="主治兽医:" prop="petNickname">
<el-input v-model="queryParams.mainDoctor"/> <el-input v-model="singleDoctor.doctorName" disabled />
</el-form-item> </el-form-item>
<el-form-item label="是否首诊:" prop="petSex"> <el-form-item label="是否首诊:" prop="petSex">
<el-select <el-select
v-model="queryParams.fristVisit" v-model="queryParams.firstVisit"
clearable clearable
placeholder="请选择首诊情况" placeholder="请选择首诊情况"
style="width: 100%" style="width: 100%"
...@@ -147,11 +147,11 @@ export default { ...@@ -147,11 +147,11 @@ export default {
fristVisitOptions: [ fristVisitOptions: [
{ {
label: '是', label: '是',
value: 1 value: '1'
}, },
{ {
label: '否', label: '否',
value: 0 value: '0'
} }
] ]
} }
...@@ -242,7 +242,7 @@ export default { ...@@ -242,7 +242,7 @@ export default {
insure: this.doctorForm.insure, insure: this.doctorForm.insure,
// 进度 // 进度
checkSchedule: '0', checkSchedule: '0',
payAmount: null, payAmount: this.singleDoctor.examinationFee,
payType: '0', payType: '0',
// 这是当日挂号列表信息 // 这是当日挂号列表信息
doctorId: this.singleDoctor.doctorCode, doctorId: this.singleDoctor.doctorCode,
...@@ -297,7 +297,7 @@ export default { ...@@ -297,7 +297,7 @@ export default {
type: 'success', type: 'success',
message: '预约成功!' message: '预约成功!'
}) })
this.$emit('registerModleClose', false) this.$emit('registerModleClose', { type: 'addRegisterSuccess', id: response.data.id })
}) })
}, },
/** 关闭弹窗*/ /** 关闭弹窗*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment