yq1 1 year ago
parent
commit
e2c1b834b8

+ 12 - 12
src/xt_pages/outpatientCharges/invoiceTemplate/printFive.vue View File

2
     <div id='invoice-print'>
2
     <div id='invoice-print'>
3
         <div v-for='(i,index) in pageArr.length' :key="index">
3
         <div v-for='(i,index) in pageArr.length' :key="index">
4
             <div :style="{position: 'absolute',top:(10 + (index * 400))  + 'px',left:70+ 'px',}">{{ list.order_number }}</div>
4
             <div :style="{position: 'absolute',top:(10 + (index * 400))  + 'px',left:70+ 'px',}">{{ list.order_number }}</div>
5
+            <div :style="{position: 'absolute',top:(10 + (index * 400))  + 'px',left:400+ 'px',}">{{list.order.fa_piao_number}}</div>
5
             <div style="display:flex;justify-content: space-between;">
6
             <div style="display:flex;justify-content: space-between;">
6
                 <div :style="{position: 'absolute',top:(40 + (index * 400))  + 'px',left:80+ 'px',}"> {{ paramsObj.name }}</div>
7
                 <div :style="{position: 'absolute',top:(40 + (index * 400))  + 'px',left:80+ 'px',}"> {{ paramsObj.name }}</div>
7
             </div>
8
             </div>
44
             <div :style="{position: 'absolute',top:(315 + (index * 400))  + 'px',left:460+ 'px'}">{{ list.medfee_sumamt }}</div>
45
             <div :style="{position: 'absolute',top:(315 + (index * 400))  + 'px',left:460+ 'px'}">{{ list.medfee_sumamt }}</div>
45
             <div v-if="index == pageArr.length - 1" :style="{position: 'absolute',top:(330 + (index * 400))  + 'px',left:110+ 'px',width:100 + '%'}">
46
             <div v-if="index == pageArr.length - 1" :style="{position: 'absolute',top:(330 + (index * 400))  + 'px',left:110+ 'px',width:100 + '%'}">
46
                 <div style="display:flex;">
47
                 <div style="display:flex;">
47
-                  <div style="width:150px">医疗总费用:{{ list.order.medfee_sumamt }}</div>
48
-                  <div style="width:150px">基金支付总额:{{ list.order.fund_pay_sumamt }}</div>
49
-                  <div style="width:150px">统筹支出:{{ list.order.hifp_pay }}</div>
50
-                  <div style="width:150px">大病支出:{{list.order.hifmi_pay}}</div>
48
+                  <div style="width:170px">医疗总费用:{{ list.order.medfee_sumamt }}</div>
49
+                  <div style="width:170px">基金支付总额:{{ list.order.fund_pay_sumamt }}</div>
50
+                  <div style="width:170px">统筹支出:{{ list.order.hifp_pay }}</div>
51
+                  <div style="width:170px">大病支出:{{list.order.hifmi_pay}}</div>
51
 
52
 
52
                 </div>
53
                 </div>
53
                 <div style="display:flex;">
54
                 <div style="display:flex;">
54
-                  <div style="width:150px">个人账户支付:{{ list.order.acct_pay }}</div>
55
-                  <div style="width:150px">现金支出:{{ list.order.psn_cash_pay }}</div>
56
-                  <div style="width:150px">本次账户:0</div>
57
-                  <div style="width:150px">上次账户:0</div>
55
+                  <div style="width:170px">个人账户支付:{{ list.order.acct_pay }}</div>
56
+                  <div style="width:170px">现金支出:{{ list.order.psn_cash_pay }}</div>
57
+                  <div style="width:170px">本次账户:0</div>
58
+                  <div style="width:170px">上次账户:0</div>
58
                 </div>
59
                 </div>
59
               <div style="display:flex;">
60
               <div style="display:flex;">
60
-                <div style="width:150px">账户余额:{{ list.order.balc }}</div>
61
-                <div style="width:150px">其他支出:{{ list.order.oth_pay }}</div>
62
-                <div style="width:150px">大病补充保险支出:0</div>
63
-                <div style="width:150px">民政支出:0</div>
61
+                <div style="width:170px">账户余额:{{ list.order.balc }}</div>
62
+                <div style="width:170px">其他支出:{{ list.order.oth_pay }}</div>
63
+                <div style="width:170px">民政支出:0</div>
64
               </div>
64
               </div>
65
               <div style="display:flex;">
65
               <div style="display:flex;">
66
                 <div style="width:220px">医疗救助基金支出:{{ list.order.maf_pay }}</div>
66
                 <div style="width:220px">医疗救助基金支出:{{ list.order.maf_pay }}</div>

+ 2 - 3
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

1631
       } else {
1631
       } else {
1632
         let arr = []
1632
         let arr = []
1633
         for (let i = 0; i < this.allProject.length; i++) {
1633
         for (let i = 0; i < this.allProject.length; i++) {
1634
-
1635
             // console.log('4444',this.tabProject[i].first_letter.indexOf(this.search_project_keyword) != -1)
1634
             // console.log('4444',this.tabProject[i].first_letter.indexOf(this.search_project_keyword) != -1)
1636
-
1637
-            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1) {
1635
+            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1 ||
1636
+            this.allProject[i].first_letter.indexOf(this.search_project_keyword) !=-1) {
1638
               arr = arr.concat(this.allProject[i])
1637
               arr = arr.concat(this.allProject[i])
1639
             }
1638
             }
1640
 
1639