update
1.修改新疆反馈问题(12.24) 2.修改健康咨询大屏不定时刷新问题
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user