多体系建设信息化条统-前端
祖安之光
4 days ago 83d251608828d17dbb9a8d480c13a1a7c0a20eb5
src/views/menuPage.vue
@@ -197,8 +197,17 @@
  }
}
const debounce = (func, wait) => {
  let timeout
  return (...args) => {
    clearTimeout(timeout)
    timeout = setTimeout(() => {
      func(...args)
    }, wait)
  }
}
const handleSystemLinkClick = (systemId) => {
  console.log('点击了'+ systemId)
  if(systemId == 1){
    router.push({ path: "/menuIndex"});
  }else{
@@ -206,6 +215,12 @@
  }
}
// const debouncedSubmit = ref(debounce(submitHandle, 500))
// const handleSystemLinkClick = (id) => {
//   debouncedSubmit.value(id)
// }
function getInfo() {
  reviewRef.value.openDialog('view',userInfo.value)
}