| 123456789101112131415161718 |
- /**
- * @created by zhanglin3 2024-07-29 19:40:19
- * @updated by zhanglin3 2024-07-29 19:40:19
- * @description 用户相关接口模拟定义
- */
- import { defineMock, backend, normalResponse } from '@/../mock/shared/utils.js';
- export default defineMock([
- // 获取用户机构列表
- {
- url: `${backend.appOcaService}/api/w/oca/priv/usrorgrel/usrorglist`,
- method: 'POST',
- enabled: true,
- body: () => {
- return normalResponse([]);
- },
- },
- ]);
|