Commit bea72e34 authored by 高滢's avatar 高滢

bug

parent 320d6cff
......@@ -176,10 +176,9 @@
<span>{{ scope.row.wardRuleId || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="押金额" align="center" prop="deposit" :show-overflow-tooltip="true">
<el-table-column label="押金额" align="center" prop="deposit" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ scope.row.deposit || '-' }}</span>
<span v-show="scope.row.deposit!==null"></span>
<span>{{ scope.row.deposit || '0.00' }}</span>
</template>
</el-table-column>
<el-table-column label="状态" align="center" prop="status" :show-overflow-tooltip="true">
......
......@@ -290,12 +290,12 @@
</el-table-column>
<el-table-column align="left" label="治疗时长">
<template slot-scope="scope">
<span>{{ scope.row.useTimeRange || '-' }}</span>
<span>{{ scope.row.duration + 'h'|| '-' }}</span>
</template>
</el-table-column>
<el-table-column prop="userName" align="left" label="治疗负责人">
<template slot-scope="scope">
<span>{{ scope.row.duration + 'h'|| '-' }}</span>
<span>{{ scope.row.person_name }}</span>
</template>
</el-table-column>
</el-table>
......@@ -688,11 +688,24 @@ export default {
this.reservationForm.consultRoomName = ''
this.appointmentRoomList = []
// 预约诊室
// 添加预约表单参数
this.reservationForm = {
id: '',
treatId: '',
treatSchedule: '',
consultRoomName: '',
consultId: '',
useDate: '',
treatEndTime: '',
treatStartTime: '',
useTimeRange: '',
treatType: '0',
userId: '',
userName: '',
startTime: [],
sTime: '',
eTime: ''
eTime: '-',
duration: ''
}
// 分配诊室搜索预约记录
this.allocationForm = {
......
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