1.修改新疆反馈问题(12.24)
2.修改健康咨询大屏不定时刷新问题
This commit is contained in:
2025-12-25 16:07:50 +08:00
parent f943ee8df3
commit bbc5685be0
17 changed files with 276 additions and 79 deletions
@@ -35,7 +35,7 @@
</template>
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { onMounted, ref, watch } from 'vue';
import { Swiper, SwiperSlide } from 'swiper/vue';
import 'swiper/css';
import 'swiper/css/navigation';
@@ -47,6 +47,20 @@
import { getDocList } from '/@/views/healthConsultation/api/health';
import { getAppEnvConfig } from '/@/utils/env.ts';
const props = defineProps({
bKey: {
type: Number,
default: () => 0,
},
});
watch(
() => props,
() => {
getData();
}
);
const { VITE_GLOB_API_URL } = getAppEnvConfig();
function getFileUrl(path?: string) {
const GATEWAY_URL = VITE_GLOB_API_URL;