|
@@ -51,9 +51,9 @@
|
51
|
51
|
</div>
|
52
|
52
|
</div>
|
53
|
53
|
<div class="lineUpList">
|
54
|
|
- <div v-for="(item,index) in fenqu" :key="index" style="color:#1C6895;font-size: 38px;padding: 5px;">
|
|
54
|
+ <div v-for="(item,index) in fenqu" :key="index" style="color:#1C6895;font-size: 40px;padding: 10px;">
|
55
|
55
|
<p style="display: inline-block;width:12%;text-align: center;">{{ item[1].name }}</p>
|
56
|
|
- <p style="display: inline-block;">
|
|
56
|
+ <p style="display: inline-block;width:87%">
|
57
|
57
|
<span v-for="(it,index) in item[1].data" :key="index" >
|
58
|
58
|
{{ it.name }}
|
59
|
59
|
</span>
|
|
@@ -73,8 +73,8 @@
|
73
|
73
|
<div class="lineUpMainLeft">
|
74
|
74
|
<div class="lineUpMainLeftTitle">
|
75
|
75
|
<p style="width:12%">分区</p>
|
76
|
|
- <p style="width:5%">{{ getdays(day) }}</p>
|
77
|
|
- <p style="width:79%">病人姓名 </p>
|
|
76
|
+ <p style="width:6%">{{ getdays(day) }}</p>
|
|
77
|
+ <p style="width:78%">病人姓名 </p>
|
78
|
78
|
</div>
|
79
|
79
|
<div class="lineUpList">
|
80
|
80
|
<div v-for="(item,index) in fenqu" :key="index" style="color:#1C6895;font-size: 40px;padding: 10px;word-wrap: break-word;word-break: break-all;">
|
|
@@ -125,14 +125,14 @@ export default {
|
125
|
125
|
showSetting: false,
|
126
|
126
|
time:'',
|
127
|
127
|
newdate:'',
|
128
|
|
- org_id: '10223',
|
|
128
|
+ org_id: '',
|
129
|
129
|
fenqu:[],
|
130
|
130
|
schArr:[],
|
131
|
131
|
currentPage: 1,
|
132
|
132
|
total:0,
|
133
|
133
|
page:0,
|
134
|
134
|
pagesize:6,
|
135
|
|
- day:'1',
|
|
135
|
+ day:'',
|
136
|
136
|
teem_sel: [
|
137
|
137
|
{ name: "上午", id: 1 },
|
138
|
138
|
{ name: "下午", id: 2 },
|
|
@@ -281,7 +281,7 @@ export default {
|
281
|
281
|
).then((res) => {
|
282
|
282
|
if(res.status==200){
|
283
|
283
|
const paiban = res.data.data
|
284
|
|
- // this.day = res.data.type
|
|
284
|
+ this.day = res.data.type
|
285
|
285
|
this.schArr = Object.entries(paiban);
|
286
|
286
|
this.total = this.schArr.length
|
287
|
287
|
this.getPageData()
|
|
@@ -365,8 +365,8 @@ export default {
|
365
|
365
|
|
366
|
366
|
},
|
367
|
367
|
created(){
|
368
|
|
- // this.org_id = this.$store.getters.xt_user.org_id
|
369
|
|
- this.schArr = Object.entries(this.data);
|
|
368
|
+ this.org_id = this.$store.getters.xt_user.org_id
|
|
369
|
+ // this.schArr = Object.entries(this.data);
|
370
|
370
|
// console.log('5555555555',Math.ceil(this.schArr.length / this.pagesize));
|
371
|
371
|
// console.log('00000',arr);
|
372
|
372
|
// this.getindexschedulelist()
|