huangyw 2 years ago
parent
commit
5a94ce26e9
1 changed files with 36 additions and 18 deletions
  1. 36 18
      src/xt_pages/hospitalStation/invoiceTemplate/printThree.vue

+ 36 - 18
src/xt_pages/hospitalStation/invoiceTemplate/printThree.vue View File

@@ -1,6 +1,15 @@
1 1
 <template>
2 2
     <div id='invoice-print'>
3 3
 
4
+        <div style="display:flex;justify-content: space-between;">
5
+            
6
+            <div style="position: absolute;top:40px;left:40px"></div>
7
+            
8
+            <div  style="position: absolute;top:40px;left:300px"></div>
9
+
10
+            <div style="position: absolute;top:40px;left:560px"></div>
11
+        </div>
12
+
4 13
         <div style="display:flex;justify-content: space-between;">
5 14
             <!-- 机构名称 -->
6 15
             <div style="position: absolute;top:70px;left:40px">机构名称:{{ list.org_name }}</div>
@@ -88,6 +97,7 @@
88 97
 
89 98
         <div>
90 99
             <span>
100
+            <span style="position: absolute;top:280px;left:40px">合计金额(大写):</span> 
91 101
             <span  style="position: absolute;top:280px;left:180px">
92 102
                 <span v-if="zhongwen.indexOf('万') > -1 && zhongwen.indexOf('拾') > -1 && zhongwen.indexOf('拾') == 1">
93 103
                     {{ zhongwen.substring(0,1) }}
@@ -141,24 +151,24 @@
141 151
         </div>
142 152
 
143 153
 
144
-        <div style="position: absolute;top:310px;left:320px">
154
+        <div style="position: absolute;top:310px;left:40px">
145 155
             <!-- 个人账户支付 -->
146
-          {{list.order.acct_pay?list.order.acct_pay:''}}
156
+          个人账户支付:{{list.order.acct_pay?list.order.acct_pay:''}}
147 157
         </div>
148
-        <div style="position: absolute;top:310px;left:380px">
158
+        <div style="position: absolute;top:310px;left:250px">
149 159
             <!-- 统筹支付 -->
150
-          {{list.order.hifp_pay?list.order.hifp_pay:''}}
160
+          统筹支付:{{list.order.hifp_pay?list.order.hifp_pay:''}}
151 161
         </div>
152
-        <div style="position: absolute;top:310px;left:500px">
153
-          {{list.order.psn_cash_pay?list.order.psn_cash_pay:''}}
162
+        <div style="position: absolute;top:310px;left:480px">
163
+          现金支付:{{list.order.psn_cash_pay?list.order.psn_cash_pay:''}}
154 164
           <!-- 现金支付 -->
155 165
         </div>
156
-        <div style="position: absolute;top:340px;left:320px">
157
-          {{list.order.cvlserv_pay?list.order.cvlserv_pay:''}}
166
+        <div style="position: absolute;top:340px;left:40px">
167
+          公务员补助:{{list.order.cvlserv_pay?list.order.cvlserv_pay:''}}
158 168
           <!-- 公务员补助 -->
159 169
         </div>
160
-        <div style="position: absolute;top:340px;left:380px">
161
-          {{list.order.maf_pay?list.order.maf_pay:''}}
170
+        <div style="position: absolute;top:340px;left:250px">
171
+          医疗救助:{{list.order.maf_pay?list.order.maf_pay:''}}
162 172
           <!-- 医疗救助 -->
163 173
         </div>
164 174
         <!-- 大病 -->
@@ -171,31 +181,39 @@
171 181
           {{list.order.oth_pay?list.order.oth_pay:''}}
172 182
 
173 183
         </div> -->
174
-        <div style="position: absolute;top:370px;left:320px">
184
+        <div style="position: absolute;top:370px;left:40px">
175 185
             <!-- 预交款合计 -->
176
-
186
+            预交款合计:
177 187
         </div>
178
-        <div style="position: absolute;top:370px;left:380px">
188
+        <div style="position: absolute;top:370px;left:250px">
179 189
             <!-- 补交款 -->
190
+            补交款:
180 191
         </div>
181
-        <div style="position: absolute;top:370px;left:500px">
192
+        <div style="position: absolute;top:370px;left:480px">
182 193
             <!-- 应退款 -->
194
+            应退款:
183 195
         </div>
184 196
         <div>
185 197
             <div style="position: absolute;top:400px;left:40px">
186 198
                 <!-- 开票日期 -->
187
-              {{printDate}}
199
+              开票日期:{{printDate}}
188 200
 
189 201
             </div>
190 202
             <div style="position: absolute;top:400px;left:280px">
191 203
                 <!-- 结算日期: -->
192
-              {{list.order.setl_time?list.order.setl_time.split(' ')[0]:''}}
204
+              结算日期:{{list.order.setl_time?list.order.setl_time.split(' ')[0]:''}}
193 205
             </div>
194
-            <div style="position: absolute;top:400px;left:580px">
195
-                <!-- 经手人: -->
206
+            <div style="position: absolute;top:400px;left:500px">
207
+               经手人:<!-- 经手人: -->
196 208
               {{list.admin_user_name}}
197 209
             </div>
198 210
         </div>
211
+
212
+        <div>
213
+            <div style="position: absolute;top:600px;left:40px">
214
+                <!-- 开票人: -->
215
+            </div>
216
+        </div>
199 217
     </div>
200 218
 </template>
201 219