feat: 新增移动端详情

This commit is contained in:
wenhua
2024-06-23 01:36:17 +08:00
parent 82634ddf97
commit 30bd9da52f
10 changed files with 11442 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import request from '@/utils/request'
export const getBaseInfoApi = (projectId) => {
return request({
url: '/workflow/details/info/'+projectId,
method: 'get',
})
}
export const getMapProjectStateInfo = (projectId, state) => {
return request({
url: `/workflow/details/${projectId}/${state}`,
method: 'get'
})
}