update
1213问题修改
This commit is contained in:
@@ -54,13 +54,13 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="center-footer" v-if="showFooter">
|
||||
<div class="count-item">
|
||||
<div class="num">{{ useDetail?.alerdyreceive || '0' }}</div>
|
||||
<div class="text">累计受理</div>
|
||||
<div class="count-item" style="cursor: pointer" @click="handleClickLastSeven(useDetail?.lastSevenTotal, '近七天累计受理', '1')">
|
||||
<div class="num">{{ useDetail?.lastSevenTotal || '0' }}</div>
|
||||
<div class="text">近七天累计受理</div>
|
||||
</div>
|
||||
<div class="count-item">
|
||||
<div class="count-item" style="cursor: pointer" @click="handleClickLastSeven(useDetail?.totalacceptance, '累计受理', '2')">
|
||||
<div class="num">{{ useDetail?.totalacceptance || '0' }}</div>
|
||||
<div class="text">累计处置</div>
|
||||
<div class="text">累计受理</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
const panelTitle = ref();
|
||||
const level = ref(0);
|
||||
const routeList = ref<any[]>([]);
|
||||
const emits = defineEmits(['clearHospitalList', 'showRestB', 'handleDetail']);
|
||||
const emits = defineEmits(['clearHospitalList', 'showRestB', 'handleDetail', 'handleLastSeven']);
|
||||
let placeSearch: any = null;
|
||||
let sListen: any = null;
|
||||
let eListen: any = null;
|
||||
@@ -207,7 +207,15 @@
|
||||
sListen = startAuto.on('select', startSelect);
|
||||
eListen = endAuto.on('select', endSelect);
|
||||
}
|
||||
|
||||
function handleClickLastSeven(value, name, type) {
|
||||
const obj = {
|
||||
name,
|
||||
value,
|
||||
key: 'gross',
|
||||
dateType: type,
|
||||
};
|
||||
emits('handleLastSeven', obj);
|
||||
}
|
||||
function startSelect(e: any) {
|
||||
placeSearch.search(e.poi.name, function (status: any, result: any) {
|
||||
if (status === 'complete' && result.poiList.pois.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user