讲师费用管理,审批增加删除按钮 接口对接

This commit is contained in:
gengxin
2025-02-17 18:33:59 +08:00
parent a0e60925ad
commit 5eaa3d9319
2 changed files with 16 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<div style="margin: 20px;margin-top:0;">
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1" tab="讲师费管理">
<LecturerFee />
<LecturerFee :activeKeyFn="activeKeyFn"/>
</a-tab-pane>
<!-- v-if="lecturerAdmin('lecturer-admin')" -->
<a-tab-pane key="2" tab="审批中心">
@@ -46,9 +46,15 @@ export default {
state.activeKey = '2'
}
})
const activeKeyFn = () => {
state.activeKey = '2'
}
return {
...toRefs(state),
lecturerAdmin,
activeKeyFn
}
},
};