|
@@ -1,26 +1,26 @@
|
|
|
<template>
|
|
|
<div style="display: flex">
|
|
|
- <button @click="queryYz">重置</button>
|
|
|
+ <button @click="queryYz" title="重新查询患者的医嘱">重置</button>
|
|
|
<label>
|
|
|
显示范围:
|
|
|
- <select v-model="queryParam.displayRange">
|
|
|
- <option :value="0">全部</option>
|
|
|
- <option :value="1">停止</option>
|
|
|
- <option :value="2">当前</option>
|
|
|
- <option :value="3">今天</option>
|
|
|
+ <select v-model="queryParam.displayRange" title="显示范围">
|
|
|
+ <option :value="0" title="全部的医嘱">全部</option>
|
|
|
+ <option :value="1" title="已经停止的医嘱">停止</option>
|
|
|
+ <option :value="2" title="正在执行的长期医嘱">当前</option>
|
|
|
+ <option :value="3" title="今天开的医嘱">今天</option>
|
|
|
</select>
|
|
|
</label>
|
|
|
<label>
|
|
|
类型:
|
|
|
- <select v-model="queryParam.frequCode">
|
|
|
- <option :value="0">全部</option>
|
|
|
- <option :value="1">临时</option>
|
|
|
- <option :value="2">长期</option>
|
|
|
+ <select v-model="queryParam.frequCode" title="医嘱类型">
|
|
|
+ <option :value="0" title="全部医嘱">全部</option>
|
|
|
+ <option :value="1" title="临时医嘱">临时</option>
|
|
|
+ <option :value="2" title="长期医嘱">长期</option>
|
|
|
</select>
|
|
|
</label>
|
|
|
<label>
|
|
|
状态:
|
|
|
- <select v-model.number="queryParam.zhuangTai">
|
|
|
+ <select v-model.number="queryParam.zhuangTai" title="医嘱的状态">
|
|
|
<option :value="0">全部</option>
|
|
|
<option :value="1">录入</option>
|
|
|
<option :value="2">确认</option>
|
|
@@ -30,18 +30,28 @@
|
|
|
</label>
|
|
|
<label>
|
|
|
药房:
|
|
|
- <select v-model="queryParam.groupNo">
|
|
|
+ <select v-model="queryParam.groupNo" title="在新增医嘱的时候,去指定的药房查询药品。">
|
|
|
<option value="73">住院</option>
|
|
|
<option value="71">门诊</option>
|
|
|
</select>
|
|
|
</label>
|
|
|
|
|
|
<button style="margin-left: 5px" @click="props.addYiZhuClick" title="ALT+A">添加</button>
|
|
|
- <button style="margin-left: 5px" @click="props.toDeleteAnOrder">删除</button>
|
|
|
- <button style="margin-left: 5px" @click="batchDeleteOrdersClick">批量删除</button>
|
|
|
- <button style="margin-left: 5px" @click="currentConfirmOrdersClick" v-if="!isCydy()">确认</button>
|
|
|
- <button style="margin-left: 5px" @click="confirmTheDoctorSOrderWithMedicineClick" v-else>确认带药</button>
|
|
|
- <button style="margin-left: 5px" @click="props.clickOnTheOrderTemplate">模板</button>
|
|
|
+ <button style="margin-left: 5px" @click="props.toDeleteAnOrder"
|
|
|
+ title="在表格中选中了一条医嘱后这个方法才能有效果。(这个医嘱需要在工作台显示)">
|
|
|
+ 删除
|
|
|
+ </button>
|
|
|
+ <button style="margin-left: 5px" @click="batchDeleteOrdersClick"
|
|
|
+ title="在表格中,点击前面的选择框,选中医嘱(多条或单挑),才能点击此按钮,限制:只能删除自己开的,只能删除录入状态的医嘱。">
|
|
|
+ 批量删除
|
|
|
+ </button>
|
|
|
+ <button style="margin-left: 5px" @click="currentConfirmOrdersClick" v-if="!isCydy()"
|
|
|
+ title="把录入状态的医嘱,变为确认状态。">确认
|
|
|
+ </button>
|
|
|
+ <button style="margin-left: 5px" @click="confirmTheDoctorSOrderWithMedicineClick" v-else
|
|
|
+ title="此按钮点击后会马上生成药单,不管有没有欠费,直接生成药单。">确认带药
|
|
|
+ </button>
|
|
|
+ <button style="margin-left: 5px" @click="props.clickOnTheOrderTemplate" title="获取医嘱的模板">模板</button>
|
|
|
|
|
|
<div style="display: flex;">
|
|
|
<status-color color="#05ff00" label="R:录入"/>
|