ZhangXianQiang
2024-07-05 98f494cf633e3acf5c20f3e9de0d708f2a6c2045
src/views/train/data-list/index.vue
@@ -36,7 +36,13 @@
<script setup>
import { ref } from 'vue';
import { Timer } from '@element-plus/icons-vue';
import { storeToRefs } from 'pinia';
import { useRouter } from 'vue-router';
import { useUserStore } from '@/store/index.js';
import { classMeet } from '@/api/modules/meet.js';
const userStore = useUserStore();
const { userInfo } = storeToRefs(userStore);
const router = useRouter();
const props = defineProps({
  dataList: {
@@ -47,9 +53,20 @@
const itemClick = (item) => {
  if (window.electron) {
    window.electron.openNewWindow(JSON.stringify(item));
  }
  classMeet(item.id).then(res => {
    if (window.webBridge) {
      window.webBridge.openNewWindow(JSON.stringify(item));
    } else {
      let path = router.resolve({
        path: "/meet",
        query: { meetName: item.meetName, id: item.id, userName: userInfo.value?.realName || '', userCode: userInfo.value?.phone || '' }
      });
      window.open(path.href, '_blank');
    }
  }).catch(err => {
  });
}
</script>