1 changed files with 98 additions and 0 deletions
Unified View
Diff Options
@ -0,0 +1,98 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
// 需要去掉1i1D04JgcdM
|
||||
|
//获取剧本分页列表
|
||||
|
export function queryJbInfo(data) { |
||||
|
return request({ |
||||
|
url: 'sce/info/page', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//获取剧本列表
|
||||
|
export function queryJbInfos(data) { |
||||
|
return request({ |
||||
|
url: 'sce/info/findList', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//获取剧本详情列表
|
||||
|
export function queryJbDetail(id) { |
||||
|
return request({ |
||||
|
url: 'sce/info/detail', |
||||
|
method: 'post', |
||||
|
data:{id} |
||||
|
}) |
||||
|
} |
||||
|
//新增剧本列表
|
||||
|
export function addJbInfo(data) { |
||||
|
return request({ |
||||
|
url: 'sce/info/add', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//编辑剧本列表
|
||||
|
export function updateJbInfo(data) { |
||||
|
return request({ |
||||
|
url: 'sce/info/update', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//删除剧本列表
|
||||
|
export function deleteJbInfo(id) { |
||||
|
return request({ |
||||
|
url: 'sce/info/delete', |
||||
|
method: 'post', |
||||
|
data:{id} |
||||
|
}) |
||||
|
} |
||||
|
//获取流程列表
|
||||
|
export function queryFindList(data) { |
||||
|
return request({ |
||||
|
url: 'sce/process/findList', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//获取Tips列表
|
||||
|
export function queryTipsList(data) { |
||||
|
return request({ |
||||
|
url: 'tips/info/page', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//新增Tips列表
|
||||
|
export function addTipsList(data) { |
||||
|
return request({ |
||||
|
url: 'tips/info/add', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//编辑Tips列表
|
||||
|
export function updateTipsList(data) { |
||||
|
return request({ |
||||
|
url: 'tips/info/update', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
//删除Tips列表
|
||||
|
export function deteleTipsList(id) { |
||||
|
return request({ |
||||
|
url: 'tips/info/detele', |
||||
|
method: 'post', |
||||
|
data:{id} |
||||
|
}) |
||||
|
} |
||||
|
//获取Tips详情
|
||||
|
export function queryTipsDetail(id) { |
||||
|
return request({ |
||||
|
url: 'tips/info/detail', |
||||
|
method: 'post', |
||||
|
data:{id} |
||||
|
}) |
||||
|
} |