Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 4 years ago
parent
commit
52da5a4bda

+ 2 - 2
src/xt_pages/outpatientCharges/allListTemplate/printOne.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div id="allList-print" class="allList-print">
3 3
         <div v-for='(i,index) in pageArr.length' :key="index">
4
-            <div class="allListTitle">翁源沅胜透析中心费用汇总</div>
4
+            <div class="allListTitle">{{$store.getters.xt_user.org.org_name}}费用汇总</div>
5 5
             <div class="allListInfo">
6 6
             <div>患者姓名:{{patient.name}}</div>
7 7
             <div>透析号:{{patient.dialysis_no}}</div>
@@ -108,7 +108,7 @@
108 108
         }else if(this.list.length > 13){
109 109
             this.page = parseInt(this.list.length / 13)
110 110
             let num = this.list.length % 13
111
-            for (var i=0;i<this.page;i++){ 
111
+            for (var i=0;i<this.page;i++){
112 112
                 this.pageArr.push(13)
113 113
             }
114 114
             if(num != 0){

+ 1 - 1
src/xt_pages/outpatientCharges/listTemplate/printOne.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div id="list-print" class="list-print">
3 3
         <div v-for='(i,index) in pageArr.length' :key="index">
4
-        <div class="listTitle">翁源沅胜透析中心费用清单</div>
4
+        <div class="listTitle">{{$store.getters.xt_user.org.org_name}}费用清单</div>
5 5
         <div class="listInfo">
6 6
 
7 7
             <div>患者姓名:{{patient.name}}</div>

+ 2 - 2
src/xt_pages/outpatientRegistration/registrationHistory.vue View File

@@ -102,8 +102,8 @@
102 102
                 </el-table-column>
103 103
                 <el-table-column align="center" prop="name" label="操作" width="180">
104 104
                     <template slot-scope="scope">
105
-                      <el-button size="mini" type="primary" v-if=" scope.row.order.order_status == 0 && scope.row.record_date < startUnix" :disabled="true">已过号</el-button>
106
-                      <el-button size="mini" type="primary" v-if="scope.row.is_return == 1 && scope.row.record_date >= startUnix && scope.row.order.order_status != 2" @click ="toReturnPatient(scope.row.id)">退号</el-button>
105
+                      <el-button size="mini" type="primary" v-if=" scope.row.record_date < startUnix" :disabled="true">已过号</el-button>
106
+                      <el-button size="mini" type="primary" v-if="scope.row.is_return == 1 && scope.row.record_date >= startUnix" @click ="toReturnPatient(scope.row.id)">退号</el-button>
107 107
                       <el-button size="mini" type="primary" v-if="scope.row.record_date == startUnix && scope.row.is_return == 2" :disabled="true">已退号</el-button>
108 108
                       <el-button size="mini" type="primary" v-if="scope.row.record_date == startUnix && scope.row.is_return == 3" :disabled="true">已就诊</el-button>
109 109
                       <el-button size="mini" type="primary" @click="open(scope.row)">详情</el-button>