Commit a39d3e6d authored by 黄奎's avatar 黄奎

页面修改

parent b0b2e3cc
import Api,{ HttpResponse, Result } from './../utils/request';
import Api, {
HttpResponse,
Result
} from './../utils/request';
/**
* 配置相关方法
*/
class ConfigService{
class ConfigService {
/**
* 获取绑定数据源列表
*/
static async TemplateGetTripFiled(params : any):Promise<HttpResponse>{
return Api.Post("triptemplate_GetTripFiled",params)
static async TemplateGetTripFiled(params: any): Promise < HttpResponse > {
return Api.Post("triptemplate_GetTripFiled", params)
}
/**
*
* @returns 获取模板查询条件
*/
static async GetTemplateQueryAsync():Promise<HttpResponse>{
return Api.Post("triptemplate_GetTemplateConfigData",{})
static async GetTemplateQueryAsync(): Promise < HttpResponse > {
return Api.Post("triptemplate_GetTemplateConfigData", {})
}
/**
* 获取模板市场分页列表
*/
static async GetTemplagePageAsync(params : any):Promise<HttpResponse>{
return Api.Post("triptemplate_GetTripTemplatePage",params)
static async GetTemplagePageAsync(params: any): Promise < HttpResponse > {
return Api.Post("triptemplate_GetTripTemplatePage", params);
}
/**
* 根据配置编号(ConfigId)获取行程配置信息[根据编号获取行程数据(修改使用)]
*/
static async GetTripConfig(params: any): Promise < HttpResponse > {
return Api.Post("triptemplate_GetTripConfig", params);
}
/**
* 根据ConfigId获取行程中的配置信息【初始化使用】
*/
static async GetTripFiledData(params: any): Promise < HttpResponse > {
return Api.Post("triptemplate_GetTripConfig", params);
}
}
export default ConfigService;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment