提交 db0f32fd 编写于 作者: ibizdev's avatar ibizdev

ShineKOT 发布系统代码 [后台服务,演示应用]

上级 f2c90a11
...@@ -48,7 +48,7 @@ export default class IBIZAccountServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase * @memberof IBIZAccountServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizaccounts/${context.ibizaccount}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizaccounts/${context.ibizaccount}/select`,isloading);
return res; return res;
} }
......
...@@ -48,7 +48,7 @@ export default class IBIZBOOKServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase * @memberof IBIZBOOKServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizbooks/${context.ibizbook}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizbooks/${context.ibizbook}/select`,isloading);
return res; return res;
} }
......
...@@ -48,7 +48,7 @@ export default class IBIZCPUServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase * @memberof IBIZCPUServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcpus/${context.ibizcpu}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizcpus/${context.ibizcpu}/select`,isloading);
return res; return res;
} }
......
...@@ -48,7 +48,7 @@ export default class IBIZCustomServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase * @memberof IBIZCustomServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustoms/${context.ibizcustom}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizcustoms/${context.ibizcustom}/select`,isloading);
return res; return res;
} }
......
...@@ -78,7 +78,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService { ...@@ -78,7 +78,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase * @memberof IBIZCustomer_INTFServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,isloading);
return res; return res;
} }
......
...@@ -48,7 +48,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase * @memberof IBIZCustomerMGServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomermgs/${context.ibizcustomermg}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizcustomermgs/${context.ibizcustomermg}/select`,isloading);
return res; return res;
} }
......
...@@ -48,7 +48,7 @@ export default class IBIZCustomerServiceBase extends EntityService { ...@@ -48,7 +48,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase * @memberof IBIZCustomerServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomers/${context.ibizcustomer}/select`,data,isloading); let res:any = Http.getInstance().get(`/ibizcustomers/${context.ibizcustomer}/select`,isloading);
return res; return res;
} }
......
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册