|
@@ -2,6 +2,7 @@ import services from './service';
|
|
|
import { reportCmPV_YL } from '../../utils/cloudMonitorHelper';
|
|
|
Component({
|
|
|
props: {},
|
|
|
+ tabsShow: false,
|
|
|
data: {
|
|
|
typeOptions: [{
|
|
|
value: 'normal',
|
|
@@ -12,7 +13,9 @@ Component({
|
|
|
}, {
|
|
|
value: 'nucleic',
|
|
|
label: '核酸'
|
|
|
- }]
|
|
|
+ }],
|
|
|
+ showInpatient: false,
|
|
|
+ hasFilter: false,
|
|
|
},
|
|
|
|
|
|
didMount() {
|
|
@@ -25,16 +28,18 @@ Component({
|
|
|
methods: {
|
|
|
onFilterHandel(filters) {
|
|
|
this.filters = filters;
|
|
|
- this.flatRef.refresh();
|
|
|
+ this.saveRef.refresh();
|
|
|
},
|
|
|
|
|
|
saveRef(ref) {
|
|
|
- this.flatRef = ref;
|
|
|
+ this.saveRef = ref;
|
|
|
},
|
|
|
|
|
|
/* 分页逻辑 */
|
|
|
async onService(params) {
|
|
|
- return services.getSubscribeRecordList({ ...this.filters,
|
|
|
+ console.log('11111111111');
|
|
|
+ return services.getSubscribeRecordList({
|
|
|
+ ...this.filters,
|
|
|
...params
|
|
|
});
|
|
|
}
|