仿钉钉设计流程:增加抄送人节点

This commit is contained in:
jason
2024-04-05 13:04:12 +08:00
parent 4f839136c7
commit f79c29d168
10 changed files with 391 additions and 120 deletions

View File

@ -10,4 +10,16 @@ import { hasPermi } from './permission/hasPermi'
export const setupAuth = (app: App<Element>) => {
hasRole(app)
hasPermi(app)
}
/**
* 导出指令v-mountedFoucs
*/
export const setupMountedFoucs= (app: App<Element>) => {
app.directive('mountedFoucs', {
mounted(el) {
el.focus();
}
})
}