|
|
@@ -202,19 +202,19 @@ const gettabledatalength = (val: any) => {
|
|
|
tabledatalength.value = val
|
|
|
}
|
|
|
|
|
|
-// onMounted(() => {
|
|
|
-// getsubscribe()
|
|
|
-// if (sessionStorage.getItem('activeTab') != null) {
|
|
|
-// TabActive.value = sessionStorage.getItem('activeTab')
|
|
|
-// sessionStorage.removeItem('activeTab')
|
|
|
-// }
|
|
|
-// })
|
|
|
+onMounted(() => {
|
|
|
+ getsubscribe()
|
|
|
+ if (sessionStorage.getItem('activeTab') != null) {
|
|
|
+ TabActive.value = sessionStorage.getItem('activeTab')
|
|
|
+ sessionStorage.removeItem('activeTab')
|
|
|
+ }
|
|
|
+})
|
|
|
</script>
|
|
|
<template>
|
|
|
<div class="Title">System Settings</div>
|
|
|
<el-tabs v-model="TabActive" class="demo-tabs">
|
|
|
<el-tab-pane label="Personal Profile" name="Personal Profile"><PersonalProfile /></el-tab-pane>
|
|
|
- <!-- <el-tab-pane label="Subscribe Notifications" name="Subscribe Notifications">
|
|
|
+ <el-tab-pane label="Subscribe Notifications" name="Subscribe Notifications">
|
|
|
<div class="subscribedTitle">Notification Events for Subscribed Shipments</div>
|
|
|
<div class="SubscribeCollapse">
|
|
|
<el-collapse v-model="CollapseActive" accordion @change="changeCollapse">
|
|
|
@@ -325,7 +325,7 @@ const gettabledatalength = (val: any) => {
|
|
|
>
|
|
|
</div>
|
|
|
<MonitoringTable @gettabledatalength="gettabledatalength"></MonitoringTable>
|
|
|
- </el-tab-pane> -->
|
|
|
+ </el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</template>
|
|
|
|