Commit 688718b0 authored by 王飞龙's avatar 王飞龙

Merge remote-tracking branch 'origin/master'

parents 078ba837 872f3e6e
...@@ -257,7 +257,7 @@ color: #333333;" ...@@ -257,7 +257,7 @@ color: #333333;"
v-model="detailInfo.petOwnerBo.createTime" v-model="detailInfo.petOwnerBo.createTime"
clearable clearable
disabled disabled
:placeholder="isEdit? '请选择宠物生日' : '暂无数据'" :placeholder="isEdit? '请选择创建日期' : '暂无数据'"
type="date" type="date"
value-format="yyyy/MM/dd" value-format="yyyy/MM/dd"
format="yyyy/MM/dd" format="yyyy/MM/dd"
...@@ -434,13 +434,13 @@ color: #333333;" ...@@ -434,13 +434,13 @@ color: #333333;"
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
<!--7--用药信息--> <!--7--药物处理-->
<div class="title-content"> <div class="title-content">
<div class="title-left"> <div class="title-left">
<div class="tip-green" /> <div class="tip-green" />
<div <div
class="tip-text" class="tip-text"
>用药信息 >药物处理
</div> </div>
</div> </div>
<el-button <el-button
...@@ -525,6 +525,15 @@ color: #333333;" ...@@ -525,6 +525,15 @@ color: #333333;"
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="销售数量" prop="sallNum">
<template slot-scope="scope">
<span v-if="scope.row.inputShow">-</span>
<span v-else>
{{ scope.row.sallNum ? scope.row.sallNum + scope.row.sallUnit : '-' }}
</span>
</template>
</el-table-column>
<el-table-column align="center" label="取药状态" prop="status"> <el-table-column align="center" label="取药状态" prop="status">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.inputShow">-</span> <span v-if="scope.row.inputShow">-</span>
...@@ -604,7 +613,7 @@ color: #333333;" ...@@ -604,7 +613,7 @@ color: #333333;"
<div class="tip-green" /> <div class="tip-green" />
<div <div
class="tip-text" class="tip-text"
>检查信息 >辅助检查
</div> </div>
</div> </div>
<el-button <el-button
...@@ -689,15 +698,12 @@ color: #333333;" ...@@ -689,15 +698,12 @@ color: #333333;"
}}</span> }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="缴费状态" prop="payType"> <el-table-column align="center" label="检查设备" prop="checkSchedule">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.inputShow">-</span> <span v-if="scope.row.inputShow">-</span>
<dict-tag <span v-else>
v-else {{ scope.row.deviceName ? (scope.row.deviceName) : '-' }}
:options="dict.type.payment_status" </span>
:value="scope.row.payType"
class="content-style"
/>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="检查状态" prop="checkSchedule"> <el-table-column align="center" label="检查状态" prop="checkSchedule">
...@@ -724,6 +730,17 @@ color: #333333;" ...@@ -724,6 +730,17 @@ color: #333333;"
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="缴费状态" prop="payType">
<template slot-scope="scope">
<span v-if="scope.row.inputShow">-</span>
<dict-tag
v-else
:options="dict.type.payment_status"
:value="scope.row.payType"
class="content-style"
/>
</template>
</el-table-column>
<el-table-column <el-table-column
v-if="isEdit" v-if="isEdit"
align="center" align="center"
...@@ -784,7 +801,7 @@ color: #333333;" ...@@ -784,7 +801,7 @@ color: #333333;"
<div class="tip-green" /> <div class="tip-green" />
<div <div
class="tip-text" class="tip-text"
>治疗信息 >辅助治疗
</div> </div>
</div> </div>
<el-button <el-button
......
...@@ -176,10 +176,9 @@ ...@@ -176,10 +176,9 @@
<span>{{ scope.row.wardRuleId || '-' }}</span> <span>{{ scope.row.wardRuleId || '-' }}</span>
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
<span>{{ scope.row.deposit || '-' }}</span> <span>{{ scope.row.deposit || '0.00' }}</span>
<span v-show="scope.row.deposit!==null"></span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="状态" align="center" prop="status" :show-overflow-tooltip="true"> <el-table-column label="状态" align="center" prop="status" :show-overflow-tooltip="true">
......
...@@ -426,12 +426,12 @@ ...@@ -426,12 +426,12 @@
</el-table-column> </el-table-column>
<el-table-column align="left" label="治疗时长"> <el-table-column align="left" label="治疗时长">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.useTimeRange || '-' }}</span> <span>{{ scope.row.duration + 'h'|| '-' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="userName" align="left" label="治疗负责人"> <el-table-column prop="userName" align="left" label="治疗负责人">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.duration + 'h'|| '-' }}</span> <span>{{ scope.row.person_name }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
......
...@@ -290,12 +290,12 @@ ...@@ -290,12 +290,12 @@
</el-table-column> </el-table-column>
<el-table-column align="left" label="治疗时长"> <el-table-column align="left" label="治疗时长">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.useTimeRange || '-' }}</span> <span>{{ scope.row.duration + 'h'|| '-' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="userName" align="left" label="治疗负责人"> <el-table-column prop="userName" align="left" label="治疗负责人">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.duration + 'h'|| '-' }}</span> <span>{{ scope.row.person_name }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -688,11 +688,24 @@ export default { ...@@ -688,11 +688,24 @@ export default {
this.reservationForm.consultRoomName = '' this.reservationForm.consultRoomName = ''
this.appointmentRoomList = [] this.appointmentRoomList = []
// 预约诊室 // 预约诊室
// 添加预约表单参数
this.reservationForm = { this.reservationForm = {
id: '',
treatId: '',
treatSchedule: '',
consultRoomName: '',
consultId: '', consultId: '',
useDate: '', useDate: '',
treatEndTime: '',
treatStartTime: '',
useTimeRange: '',
treatType: '0',
userId: '',
userName: '',
startTime: [],
sTime: '', sTime: '',
eTime: '' eTime: '-',
duration: ''
} }
// 分配诊室搜索预约记录 // 分配诊室搜索预约记录
this.allocationForm = { 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