123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import {
- request
- } from '@/request/request.js';
- /*
- * 获取项目列表
- *
- */
- export function getProjectList() {
- return request({
- url: `/api/project/projectListIdentity`,
- method: 'get'
- })
- }
- /*
- * 获取项目详情
- *
- *
- */
- export function getProjectDetailById(id) {
- return request({
- url: `/api/project/getProject/${id}`,
- method: 'get'
- })
- }
- /*
- * 切换项目
- * @param null
- */
- export function selectProject(projectId) {
- return request({
- url: `/manager/userContext/project/${projectId}`,
- method: 'put',
- })
- }
- /*
- * 刷新上下文
- * @param null
- *
- */
- export function refresh() {
- return request({
- url: `/manager/userContext/refresh`,
- method: 'get',
- })
- }
|