Browse Source

新分支

28169 1 year ago
parent
commit
dfa6b3b188

+ 2 - 1
src/xt_pages/dialysis/dialysisPrintOrder.vue View File

@@ -2144,6 +2144,7 @@ export default {
2144 2144
       } else if (
2145 2145
         this.org_template_info.template_id == 2 ||
2146 2146
         this.org_template_info.template_id == 5 ||
2147
+        this.org_template_info.template_id == 6 ||
2147 2148
         this.org_template_info.template_id == 22 ||
2148 2149
         this.org_template_info.template_id == 33
2149 2150
       ) {
@@ -2181,7 +2182,7 @@ export default {
2181 2182
           style: style,
2182 2183
           scanStyles: false,
2183 2184
         });
2184
-      } else if (this.org_template_info.template_id == 53) {
2185
+      } else if (this.org_template_info.template_id == 53 ) {
2185 2186
         console.log("进来233232323232")
2186 2187
         printJS({
2187 2188
           printable: "dialysis-print-box-1-2",

+ 184 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

@@ -3104,6 +3104,190 @@
3104 3104
           <!-- <div  class="print-yema">1</div> -->
3105 3105
         </div>
3106 3106
       </div>
3107
+    </div>
3108
+
3109
+
3110
+
3111
+    <div id="dialysis-print-box-1-2" class="dialysis-print-order print-template-two print_page_main_content" style="position: relative;">
3112
+      <div class="order-yy-name">{{ orgname }}</div>
3113
+      <div class="order_title">血液净化科医嘱及执行单</div>
3114
+      <div class="row" style="margin-top: 15px">
3115
+        <div class="inline_block">
3116
+          科室:
3117
+          <check-box text="门诊透析" :checked="patientInfo_source_1"></check-box>
3118
+          &nbsp;
3119
+          <check-box text="住院" :checked="patientInfo_source_2"></check-box>
3120
+        </div>
3121
+        <div class="inline_block" style="margin-left: 5px;">
3122
+          住院号:
3123
+          <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
3124
+            {{ patientInfo.admission_number }}
3125
+          </div>
3126
+          <div class="under_line" style="width: 70px;text-align: left" v-else>
3127
+            {{ "/" }}
3128
+          </div>
3129
+        </div>
3130
+        <div class="inline_block" style="margin-left:10px;">
3131
+          姓名:
3132
+          <div class="under_line" style="width: 50px;text-align: left">
3133
+            {{ patientInfo.name }}
3134
+          </div>
3135
+        </div>
3136
+        <div class="inline_block" style="margin-left: 10px;">
3137
+          性别:
3138
+          <check-box text="男" :checked="patientInfo_gender_1"></check-box>
3139
+          &nbsp;
3140
+          <check-box text="女" :checked="patientInfo_gender_2"></check-box>
3141
+        </div>
3142
+        <div class="inline_block" style="margin-left: 10px;">
3143
+          年龄:
3144
+          <div class="under_line" style="width: 30px;text-align: left">
3145
+            {{ getAge(patientInfo) }}
3146
+          </div>
3147
+          岁
3148
+        </div>
3149
+        <div class="inline_block" style="margin-left: 10px;">
3150
+          诊断:
3151
+          <div class="under_line" style="width:180px;text-align: left">
3152
+            {{ patientInfo.diagnose }}
3153
+          </div>
3154
+        </div>
3155
+      </div>
3156
+
3157
+      <table class="print-table-no">
3158
+                    <tbody>
3159
+                      <tr style="line-height: 35px; padding: 8px 5px">
3160
+                        <td
3161
+                          colspan="7"
3162
+                          style="
3163
+                            letter-spacing: 5px;
3164
+                            text-align: center;
3165
+                            font-weight: 520;
3166
+                            font-size: 16px;
3167
+                            padding: 6px 8px;
3168
+                            line-height: 30px;
3169
+                          "
3170
+                        >
3171
+                          医嘱内容
3172
+                        </td>
3173
+                      </tr>
3174
+                      <tr style="line-height: 35px; padding: 8px 5px">
3175
+                        <td style="font-size: 16px" width="10%">时间</td>
3176
+                        <td style="font-size: 16px" colspan="2" width="45%">
3177
+                          医嘱内容
3178
+                        </td>
3179
+                        <td style="font-size: 16px" width="10%">医生签名</td>
3180
+                        <!-- <td style="font-size: 16px" width="10%">核对人签名</td> -->
3181
+                        <td style="font-size: 16px" width="10%">执行人签名</td>
3182
+                        <td style="font-size: 16px" width="10%">时间</td>
3183
+                        <td
3184
+                          style="font-size: 16px"
3185
+                          width="10%"
3186
+                          v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375"
3187
+                        >
3188
+                          核对护士
3189
+                        </td>
3190
+                      </tr>
3191
+                     
3192
+
3193
+                      <tr
3194
+                        v-for="(advice, advice_index) in doctor_advices"
3195
+                        :key="advice_index"
3196
+                      >
3197
+                        <td height="32px">
3198
+                          <span v-if="advice.start_time">
3199
+                            {{ getTime(advice.start_time, "{h}:{i}") }}
3200
+                          </span>
3201
+                          
3202
+                        </td>
3203
+                        <td
3204
+                          height="32px"
3205
+                          colspan="2"
3206
+                          class="advice-name"
3207
+                          style="padding-left: 7px"
3208
+                        >
3209
+                          <span v-if="advice.parent_id > 0">---></span>
3210
+                          <span>{{ advice.advice_name }}</span>
3211
+                          <span v-if="advice && advice.advice_desc"
3212
+                            >({{ advice.advice_desc
3213
+                            }}{{ advice.drug_spec_unit }})</span
3214
+                          >
3215
+                          <span v-if="advice.prescribing_number"
3216
+                            >&nbsp;&nbsp; {{ advice.prescribing_number
3217
+                            }}{{ advice.prescribing_number_unit }}</span
3218
+                          >
3219
+                          <span v-if="advice.single_dose != 0"
3220
+                            >{{ advice.single_dose
3221
+                            }}{{ advice.single_dose_unit }}</span
3222
+                          >
3223
+                          <span v-if="advice.parent_id == 0">{{
3224
+                            advice.delivery_way
3225
+                          }}</span>
3226
+                          <span v-if="advice.parent_id == 0">{{
3227
+                            advice.execution_frequency
3228
+                          }}</span>
3229
+                          <span
3230
+                            v-if="
3231
+                              advice.parent_id == 0 && advice.remark.length > 0
3232
+                            "
3233
+                            >({{ advice.remark }})</span
3234
+                          >
3235
+                        </td>
3236
+                    
3237
+                        <td height="32px">
3238
+                          <span
3239
+                            v-if="setAdminUserES(advice.advice_doctor) == ''"
3240
+                            >{{ getAdminUser(advice.advice_doctor) }}</span
3241
+                          >
3242
+                          <img
3243
+                            style="height: 30px"
3244
+                            :src="setAdminUserES(advice.advice_doctor)"
3245
+                            alt=""
3246
+                            srcset=""
3247
+                            v-else
3248
+                          />
3249
+                        </td>
3250
+                      
3251
+                        <td height="32px">
3252
+                          <span
3253
+                            v-if="setAdminUserES(advice.execution_staff) == ''"
3254
+                            >{{ getAdminUser(advice.execution_staff) }}</span
3255
+                          >
3256
+                          <img
3257
+                            style="height: 30px"
3258
+                            :src="setAdminUserES(advice.execution_staff)"
3259
+                            alt=""
3260
+                            srcset=""
3261
+                            v-else
3262
+                          />
3263
+                        </td>
3264
+                        <td height="32px">
3265
+                          <span v-if="advice.execution_time">{{
3266
+                            getTime(advice.execution_time, "{h}:{i}")
3267
+                          }}</span>
3268
+                        </td>
3269
+                        <td height="32px" v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375">
3270
+                          <span v-if="setAdminUserES(advice.checker) == ''">{{
3271
+                            getAdminUser(advice.checker)
3272
+                          }}</span>
3273
+                          <img
3274
+                            style="height: 30px"
3275
+                            :src="setAdminUserES(advice.checker)"
3276
+                            alt=""
3277
+                            srcset=""
3278
+                            v-else
3279
+                          />
3280
+                        </td>
3281
+                      </tr>
3282
+                     
3283
+                    </tbody>
3284
+     </table>
3285
+
3286
+
3287
+    
3288
+     
3289
+
3290
+     
3107 3291
     </div>
3108 3292
   </div>
3109 3293
 </template>