76 lines
1.5 KiB
TypeScript
76 lines
1.5 KiB
TypeScript
import request from '@/utils/http'
|
|
|
|
/**
|
|
* 大富翁-玩家 API接口
|
|
*/
|
|
export default {
|
|
/**
|
|
* 获取数据列表
|
|
* @param params 搜索参数
|
|
* @returns 数据列表
|
|
*/
|
|
list(params: Record<string, any>) {
|
|
return request.get<Api.Common.ApiPage>({
|
|
url: '/dice/player/DicePlayer/index',
|
|
params
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 读取数据
|
|
* @param id 数据ID
|
|
* @returns 数据详情
|
|
*/
|
|
read(id: number | string) {
|
|
return request.get<Api.Common.ApiData>({
|
|
url: '/dice/player/DicePlayer/read?id=' + id
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 创建数据
|
|
* @param params 数据参数
|
|
* @returns 执行结果
|
|
*/
|
|
save(params: Record<string, any>) {
|
|
return request.post<any>({
|
|
url: '/dice/player/DicePlayer/save',
|
|
data: params
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 更新数据
|
|
* @param params 数据参数
|
|
* @returns 执行结果
|
|
*/
|
|
update(params: Record<string, any>) {
|
|
return request.put<any>({
|
|
url: '/dice/player/DicePlayer/update',
|
|
data: params
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 删除数据
|
|
* @param id 数据ID
|
|
* @returns 执行结果
|
|
*/
|
|
delete(params: Record<string, any>) {
|
|
return request.del<any>({
|
|
url: '/dice/player/DicePlayer/destroy',
|
|
data: params
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 仅更新状态(列表内开关用)
|
|
*/
|
|
updateStatus(params: { id: number | string; status: number }) {
|
|
return request.put<any>({
|
|
url: '/dice/player/DicePlayer/updateStatus',
|
|
data: params
|
|
})
|
|
}
|
|
}
|