|
@@ -3,10 +3,10 @@
|
3
|
3
|
<patient-sidebar :id="patientID" defaultActive="1-4" v-on:tran-patient="onTranPatient"></patient-sidebar>
|
4
|
4
|
<div class="patient-app-container advice-container app-container">
|
5
|
5
|
<div class="filter-container">
|
6
|
|
- <el-input size="small" style="width: 400px;" v-model="listQuery.keywords" class="filter-item" />
|
7
|
|
- <el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="changeKey" >搜索</el-button>
|
8
|
|
- <el-button size="small" class="filter-item" style="float:right;" @click="printThisInfo()" :type="adviceType==1 || adviceType == 3?'primary':'warning'" icon="el-icon-printer" >打印医嘱</el-button>
|
9
|
|
- <el-button size="small" :disabled="$store.getters.xt_user.subscibe.state==3?true:false" class="filter-item" style="float:right;" @click="openNew" type="primary" icon="el-icon-plus" >新增医嘱</el-button>
|
|
6
|
+ <el-input style="width: 400px;" v-model="listQuery.keywords" class="filter-item" />
|
|
7
|
+ <el-button class="filter-item" type="primary" icon="el-icon-search" @click="changeKey" >搜索</el-button>
|
|
8
|
+ <el-button class="filter-item" style="float:right;" @click="printThisInfo()" :type="adviceType==1 || adviceType == 3?'primary':'warning'" icon="el-icon-printer" >打印医嘱</el-button>
|
|
9
|
+ <el-button :disabled="$store.getters.xt_user.subscibe.state==3?true:false" class="filter-item" style="float:right;" @click="openNew" type="primary" icon="el-icon-plus" >新增医嘱</el-button>
|
10
|
10
|
</div>
|
11
|
11
|
<div class="cell clearfix">
|
12
|
12
|
<label class="title"><span class="name">医嘱类型</span> : </label>
|
|
@@ -2839,7 +2839,66 @@ export default {
|
2839
|
2839
|
cursor: pointer;
|
2840
|
2840
|
}
|
2841
|
2841
|
}
|
2842
|
|
-
|
|
2842
|
+ .cell {
|
|
2843
|
+ margin: 0px 0 15px 0;
|
|
2844
|
+ -moz-box-sizing: border-box;
|
|
2845
|
+ -webkit-box-sizing: border-box;
|
|
2846
|
+ -o-box-sizing: border-box;
|
|
2847
|
+ -ms-box-sizing: border-box;
|
|
2848
|
+ box-sizing: border-box;
|
|
2849
|
+ display: -webkit-box;
|
|
2850
|
+ display: -ms-flexbox;
|
|
2851
|
+ // display: flex;
|
|
2852
|
+ -webkit-box-align: flex-start;
|
|
2853
|
+ -ms-flex-align: flex-start;
|
|
2854
|
+ align-items: flex-start;
|
|
2855
|
+ text-align: left;
|
|
2856
|
+ justify-content: flex-start;
|
|
2857
|
+ color: #333;
|
|
2858
|
+ .title {
|
|
2859
|
+ width: 80px;
|
|
2860
|
+ display: inline-block;
|
|
2861
|
+ font-weight: normal;
|
|
2862
|
+ color: #909399;
|
|
2863
|
+ padding: 6px 0;
|
|
2864
|
+ font-weight: 700;
|
|
2865
|
+ .name {
|
|
2866
|
+ width: 60px;
|
|
2867
|
+ text-align: justify;
|
|
2868
|
+ text-justify: distribute-all-lines;
|
|
2869
|
+ text-align-last: justify;
|
|
2870
|
+ -moz-text-align-last: justify;
|
|
2871
|
+ -webkit-text-align-last: justify;
|
|
2872
|
+ display: inline-block;
|
|
2873
|
+ }
|
|
2874
|
+ }
|
|
2875
|
+ .time {
|
|
2876
|
+ -webkit-box-flex: 1;
|
|
2877
|
+ -ms-flex: 1;
|
|
2878
|
+ flex: 1;
|
|
2879
|
+ ul {
|
|
2880
|
+ padding: 0;
|
|
2881
|
+ margin: 0;
|
|
2882
|
+ li {
|
|
2883
|
+ float: left;
|
|
2884
|
+ list-style: none;
|
|
2885
|
+ cursor: pointer;
|
|
2886
|
+ padding: 6px 10px;
|
|
2887
|
+ color: #606266;
|
|
2888
|
+ border-radius: 4px;
|
|
2889
|
+ margin: 0 4px 0 0;
|
|
2890
|
+ &:hover {
|
|
2891
|
+ background: #409eff;
|
|
2892
|
+ color: #fff;
|
|
2893
|
+ }
|
|
2894
|
+ }
|
|
2895
|
+ .active {
|
|
2896
|
+ background: #409eff;
|
|
2897
|
+ color: #fff;
|
|
2898
|
+ }
|
|
2899
|
+ }
|
|
2900
|
+ }
|
|
2901
|
+ }
|
2843
|
2902
|
.amount {
|
2844
|
2903
|
font-weight: normal;
|
2845
|
2904
|
padding: 10px 0 0 0;
|