|
@ -90,7 +90,7 @@
|
|
|
</li>
|
|
|
<li v-else>暂无居民信息</li>
|
|
|
</ul>
|
|
|
<div class="text-center ptb10" v-if="!noDenizen" @click="getScreenList('more')">
|
|
|
<div class="text-center ptb10" v-if="!noDenizen" @click="getPatientSignByDoctor('more')">
|
|
|
<button class="btn btn-default">更多居民</button>
|
|
|
</div>
|
|
|
</li>
|
|
@ -150,10 +150,10 @@
|
|
|
}
|
|
|
jbscAPI.getScreenList(data).then(function(res){
|
|
|
if(res.status==200){
|
|
|
var list=vm.screenList;
|
|
|
var list=JSON.parse(JSON.stringify(vm.screenList));
|
|
|
var _length=res.data && res.data.length || 0;
|
|
|
_length && (list=list.concat(res.data));
|
|
|
vm.screenList=list;
|
|
|
vm.screenList=list
|
|
|
if(_length<vm.pageSize){
|
|
|
vm.noScreen=true;
|
|
|
}
|