feat:合并

This commit is contained in:
lixg
2023-02-17 09:26:53 +08:00
parent 411dc2fe9b
commit 2418321402
2 changed files with 8 additions and 8 deletions

View File

@@ -133,7 +133,7 @@ const router = useRouter();
const returnclick = () => { const returnclick = () => {
router.back(); router.back();
}; };
const { data } = useRequest(ROUTER_PROCESS, { id: routerId }); const { data } = useRequest(ROUTER_PROCESS, { routerId: routerId });
const userInfo = computed(() => store.state.userInfo); const userInfo = computed(() => store.state.userInfo);
console.log("lalalallala", data, userInfo); console.log("lalalallala", data, userInfo);
const activeName = ref("first"); const activeName = ref("first");

View File

@@ -2,7 +2,7 @@
* @Author: lixg lixg@dongwu-inc.com * @Author: lixg lixg@dongwu-inc.com
* @Date: 2023-01-19 11:28:11 * @Date: 2023-01-19 11:28:11
* @LastEditors: lixg lixg@dongwu-inc.com * @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2023-02-14 17:35:07 * @LastEditTime: 2023-02-14 21:01:08
* @FilePath: /stu_h5/src/views/projectdetails/ProjectPath.vue * @FilePath: /stu_h5/src/views/projectdetails/ProjectPath.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
@@ -179,14 +179,14 @@ const handleClick = (tab, event) => {
console.log("selectTab", selectTab.value); console.log("selectTab", selectTab.value);
}; };
const goDetails = () => { const goDetails = () => {
router.push({
path: "/pathdetails",
query: { routerId: 339 },
});
// router.push({ // router.push({
// path: "/projectdetails", // path: "/pathdetails",
// query: { projectId: 517 }, // query: { routerId: 339 },
// }); // });
router.push({
path: "/projectdetails",
query: { projectId: 517 },
});
}; };
</script> </script>