|
|
@@ -70,6 +70,13 @@
|
|
|
const activeKey = ref(BasicTabActive);
|
|
|
const tabData = ref(BasicTab);
|
|
|
const title = `病历详情 — ${info.value.name}(${info.value.gender}${info.value.age})`;
|
|
|
+ if (route.query?.activeKeys) {
|
|
|
+ BasicTab.forEach(item => {
|
|
|
+ if (parseInt(route.query?.activeKeys.toString()) == item.value) {
|
|
|
+ activeKey.value = item.key;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|