|
@@ -43,6 +43,9 @@ const Ptbx = defineAsyncComponent(() => {
|
|
|
const Wdyk = defineAsyncComponent(() => {
|
|
|
return import('../rightChild/wdyk.vue')
|
|
|
})
|
|
|
+const Wdjk = defineAsyncComponent(() => {
|
|
|
+ return import('../rightChild/myLoan.vue')
|
|
|
+})
|
|
|
const rightTabsList = ref([
|
|
|
{
|
|
|
icon: 'wdda',
|
|
@@ -87,6 +90,8 @@ const rightTabsClick = (item, index) => {
|
|
|
currentComponent.value = Ptbx
|
|
|
} else if (item.icon == 'wdyk') {
|
|
|
currentComponent.value = Wdyk
|
|
|
+ } else if (item.icon == 'wdjk') {
|
|
|
+ currentComponent.value = Wdjk
|
|
|
}
|
|
|
}
|
|
|
/** 初始化 **/
|