dev
This commit is contained in:
parent
215c69a5cb
commit
42a123e58b
|
|
@ -9,7 +9,7 @@ import {onMounted, onUnmounted, ref} from "vue";
|
|||
import {ElMessage} from "element-plus";
|
||||
import {post} from "@/utils/request.ts";
|
||||
import type {Request, Response} from "@/utils/ws.ts";
|
||||
import {useWsStore} from "@/store/wsStore.ts";
|
||||
import {useWsStore} from "@/stores/wsStore.ts";
|
||||
|
||||
const wsStore = useWsStore();
|
||||
const isReading = ref(false)
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import {onMounted, onUnmounted, ref} from "vue";
|
|||
import {ElMessage} from "element-plus";
|
||||
import {post} from "@/utils/request.ts";
|
||||
import type {Request, Response} from "@/utils/ws.ts";
|
||||
import {useWsStore} from "@/store/wsStore.ts";
|
||||
import {useWsStore} from "@/stores/wsStore.ts";
|
||||
|
||||
const wsStore = useWsStore();
|
||||
const isReading = ref(false)
|
||||
|
|
|
|||
|
|
@ -46,9 +46,7 @@ import {post} from "@/utils/request.ts";
|
|||
import CardPay from "@/components/retail/CardPay.vue";
|
||||
import {medTypeJson, priceBtnList} from "@/assets/config/constants.ts"
|
||||
import PersonalPayment from "@/components/retail/PersonalPayment.vue";
|
||||
import {ElMessage, ElMessageBox} from "element-plus";
|
||||
import type {Request, Response} from "@/utils/ws.ts";
|
||||
import {useWsStore} from "@/store/wsStore.ts";
|
||||
import {useWsStore} from "@/stores/wsStore.ts";
|
||||
const wsStore = useWsStore();
|
||||
const socialCard =defineModel<any>();
|
||||
const prop=defineProps({
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ import {post} from "@/utils/request.ts";
|
|||
|
||||
|
||||
const tableData = ref([])
|
||||
post("organization/section/list", {page: 1, size: 10}).then((res)=>{
|
||||
post("organization/section/list", {page: 1, size: 10}).then((res:any)=>{
|
||||
tableData.value = res.list
|
||||
})
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -38,7 +38,13 @@ import ValidityWarning from "@/components/home/index/ValidityWarning.vue";
|
|||
onMounted(() => {
|
||||
getData()
|
||||
})
|
||||
const systemMessage = ref("")
|
||||
// 定义系统消息的数据结构
|
||||
interface SystemMessage {
|
||||
title: string;
|
||||
content: string;
|
||||
time: string;
|
||||
}
|
||||
const systemMessage = ref<SystemMessage[]>()
|
||||
const proxyMessage = ref("")
|
||||
const userMessage = ref("")
|
||||
let appConfig: any = null;
|
||||
|
|
|
|||
Loading…
Reference in New Issue