see999 3 years ago
parent
commit
fe8df019c9

+ 19 - 19
src/xt_pages/dialysis/batch_print/batch_print_order_twentyEight.vue View File

@@ -1116,9 +1116,9 @@ export default {
1116 1116
             var delghTwo = 0
1117 1117
             if (
1118 1118
               this.records[recordIndex].advices &&
1119
-              this.records[recordIndex].advices.length < 14
1119
+              this.records[recordIndex].advices.length < 7
1120 1120
             ) {
1121
-              delghTwo = 14 - this.records[recordIndex].advices.length
1121
+              delghTwo = 7 - this.records[recordIndex].advices.length
1122 1122
             } else {
1123 1123
               delghTwo = 0
1124 1124
             }
@@ -1173,29 +1173,29 @@ export default {
1173 1173
             var adlen = advices.length
1174 1174
 
1175 1175
             var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2
1176
-            for (var i = 0; i < halfLen; i++) {
1176
+            for (var i = 0; i < adlen; i++) {
1177 1177
               leftAdvice.push(advices[i])
1178
-              var rightIndex = i + halfLen
1179
-              rightAdvice.push(
1180
-                rightIndex in advices ? advices[i + halfLen] : []
1181
-              )
1182
-            }
1183
-            if (halfLen < 5) {
1184
-              var nl = 5 - leftAdvice.length
1185
-              for (let index = 0; index < nl; index++) {
1186
-                leftAdvice.push([])
1187
-              }
1188
-              var nl = 5 - rightAdvice.length
1189
-              for (let index = 0; index < nl; index++) {
1190
-                rightAdvice.push([])
1191
-              }
1178
+              // var rightIndex = i + halfLen
1179
+              // rightAdvice.push(
1180
+              //   rightIndex in advices ? advices[i + halfLen] : []
1181
+              // )
1192 1182
             }
1183
+            // if (halfLen < 5) {
1184
+            //   var nl = 5 - leftAdvice.length
1185
+            //   for (let index = 0; index < nl; index++) {
1186
+            //     leftAdvice.push([])
1187
+            //   }
1188
+            //   var nl = 5 - rightAdvice.length
1189
+            //   for (let index = 0; index < nl; index++) {
1190
+            //     rightAdvice.push([])
1191
+            //   }
1192
+            // }
1193 1193
 
1194 1194
             this.records[recordIndex].advices = []
1195
-            for (var i = 0; i < halfLen; i++) {
1195
+            for (var i = 0; i < adlen; i++) {
1196 1196
               var item = []
1197 1197
               item.push(leftAdvice[i])
1198
-              item.push(rightAdvice[i])
1198
+              // item.push(rightAdvice[i])
1199 1199
               this.records[recordIndex].advices.push(item)
1200 1200
             }
1201 1201
           }

+ 14 - 1
src/xt_pages/outpatientDoctorStation/template/printThree.vue View File

@@ -22,7 +22,7 @@
22 22
                 <span v-if="item.patient.gender == 1">男</span>
23 23
                 <span v-if="item.patient.gender == 2">女</span>
24 24
               </div>
25
-              <div>年龄:{{getAge(item.patient)?getAge(item.patient):""}}岁</div>
25
+              <div>年龄:{{getNewAge(item.patient.birthday)?getNewAge(item.patient.birthday):""}}岁</div>
26 26
           </div>
27 27
           <div class="infoMain">
28 28
               <div style="margin-bottom: 10px;display:flex;">门诊号码:<span class="under_line" v-if="hisPatient.number">{{hisPatient.number?hisPatient.number:""}}</span></div>
@@ -120,6 +120,19 @@ export default {
120 120
       }
121 121
     },
122 122
    methods:{
123
+    getNewAge(birthday){
124
+      // var myDate = new Date(birthday * 1000)
125
+      // var month = myDate.getMonth() + 1
126
+      // var day = myDate.getDate()
127
+      // var age = new Date().getFullYear() - myDate.getFullYear()
128
+      // if (month < new Date().getMonth() + 1 || new Date().getMonth() + 1 == month && day <= new Date().getDate()) {
129
+      //   age++
130
+      // }
131
+      // return age
132
+      var nowTime = new Date().getTime(); 
133
+      //一年毫秒数(365 * 86400000 = 31536000000)
134
+      return Math.ceil((nowTime-(birthday * 1000))/31536000000);
135
+    },
123 136
      getAge(patient){
124 137
        var thisLen = patient.id_card_no.length
125 138
        var birth = ''

+ 14 - 1
src/xt_pages/outpatientDoctorStation/treatTemplate/printTwo.vue View File

@@ -20,7 +20,7 @@
20 20
             <span v-if="item.patient.gender == 1">男</span>
21 21
             <span v-if="item.patient.gender == 2">女</span>
22 22
             </div>
23
-            <div>年龄:{{getAge(item.patient)?getAge(item.patient):""}}岁</div>
23
+            <div>年龄:{{getNewAge(item.patient.birthday)?getNewAge(item.patient.birthday):""}}岁</div>
24 24
         </div>
25 25
         <div class="infoMain">
26 26
             <div style="margin-bottom: 10px;display:flex;">门诊号码:<span class="under_line">{{hisPatient.number?hisPatient.number:""}}</span></div>
@@ -238,6 +238,19 @@ export default {
238 238
       }
239 239
     },
240 240
    methods:{
241
+    getNewAge(birthday){
242
+      // var myDate = new Date(birthday * 1000)
243
+      // var month = myDate.getMonth() + 1
244
+      // var day = myDate.getDate()
245
+      // var age = new Date().getFullYear() - myDate.getFullYear()
246
+      // if (month < new Date().getMonth() + 1 || new Date().getMonth() + 1 == month && day <= new Date().getDate()) {
247
+      //   age++
248
+      // }
249
+      // return age
250
+      var nowTime = new Date().getTime(); 
251
+      //一年毫秒数(365 * 86400000 = 31536000000)
252
+      return Math.ceil((nowTime-(birthday * 1000))/31536000000);
253
+    },
241 254
      getAge(patient){
242 255
        var thisLen = patient.id_card_no.length
243 256
        var birth = ''