123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <div id="list-print" class="list-print">
- <div v-for='(i,index) in pageArr.length' :key="index">
- <div class="listTitle">翁源沅胜透析中心费用清单</div>
- <div class="listInfo">
-
- <div>患者姓名:{{patient.name}}</div>
- <div>透析号:{{patient.dialysis_no}}</div>
- <div>性别:{{patient.gender == 1 ? '男': '女'}}</div>
- <div>年龄:{{patient.age}} 岁</div>
- <div>收费日期:{{getTimes(order.settle_start_time)}} 至 {{getTimes(order.settle_end_time)}}</div>
-
- </div>
- <table class="listTable" border="1">
- <tr>
- <td style="width:19%">开方日期</td>
- <td style="width:10%">类别</td>
- <td style="width:35%">项目名称</td>
- <td style="width:10%">规格</td>
- <td style="width:10%">单价(元)</td>
- <td style="width:6%">数量</td>
- <td style="width:10%">金额(元)</td>
-
- </tr>
- <tr v-for="item in list.slice(index * 13,(index * 14) + pageArr[index])">
- <td style="width:19%">{{item.p_time}}</td>
- <td style="width:10%">{{item.med_chrgitm_type}}</td>
- <td style="width:35%">{{item.name}}</td>
- <td style="width:10%">{{item.spec}}</td>
- <td style="width:10%">{{(item.price).toFixed(2)}}</td>
- <td style="width:6%">{{item.count}}</td>
- <td style="width:10%">{{(item.price * item.count).toFixed(2)}}</td>
- </tr>
- </table>
- <div class="tableBottom">
- <div class="tableBottomOne">制表人:{{admin.user_name}}</div>
- <div class="tableBottomOne">制表日期:{{ getNowTime()}}</div>
- <div class="tableBottomOne">总费用:{{order.medfee_sumamt}}元</div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import { uParseTime } from '@/utils/tools'
-
- export default {
- props: {
- list: {
- type: Array,
- default: function () {
- return [];
- }
- },
- patient: {
- type: Object,
- default: function () {
- return {};
- }
- }, order: {
- type: Object,
- default: function () {
- return {};
- }
- }, admin: {
- type: Object,
- default: function () {
- return {};
- }
- },
- },
- data(){
- return{
- page:1,
- pageArr:[],
- }
- },
- mounted(){
- this.getPage()
- },
- methods:{
- getNowTime: function () {
- let dateTime
- let yy = new Date().getFullYear()
- let mm = new Date().getMonth() + 1
- let dd = new Date().getDate()
- let hh = new Date().getHours()
- let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes()
- :
- new Date().getMinutes()
- let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds()
- :
- new Date().getSeconds()
- dateTime = yy + '-' + mm + '-' + dd + ' ' + hh + ':' + mf + ':' + ss
- return dateTime
- },
- getTimes(time) {
- return uParseTime(time, '{y}-{m}-{d}')
- },
- getPage(){
- if(this.list.length <= 13){
- this.page = 1
- this.pageArr.push(this.list.length)
- }else if(this.list.length > 13){
- this.page = parseInt(this.list.length / 13)
- let num = this.list.length % 13
- for (var i=0;i<this.page;i++){
- this.pageArr.push(13)
- }
- if(num != 0){
- this.pageArr.push(num)
- }
- }
- console.log( this.pageArr)
- }
-
- }
- }
-
-
- </script>
-
- <style lang="scss" scoped>
- .list-print{
- -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
- -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
- margin-bottom: 20px;
- padding:20px 10px;
- }
- .listTitle{
- font-size: 28px;
- text-align: center;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .listInfo{
- display: flex;
- font-size: 16px;
- justify-content: space-between;
- margin: 10px 0;
- }
- .listTable{
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- line-height: 40px;
- font-size: 16px;
- border-color: #000;
- text-align: left;
- }
- .listTable tr td {
- padding: 0 5px;
- }
- .tableBottom{
- font-size: 16px;
- display: flex;
- margin-top: 20px;
- }
- .tableBottomOne{
- margin-right: 40px;
- }
- </style>
|