12345678910111213141516171819202122232425262728293031323334 |
- import { http } from "../http";
- import type { PageParams, PageResponse } from "./model";
- export const editPageDesignApi = (data: PageParams) =>
- http.post("/api/form/EditPageDesign", data);
- export const getPageDesignApi = (data: { id: string}) =>
- http.post<PageResponse>(`/api/form/GetPageDesign`, data);
- export function GetAllDataSourceColumnList(data: any) {
- return http.post(`/api/page/GetAllDataSourceColumnList`, data);
- }
- export function GetAllTablesAndViews(data: any) {
- return http.post(`/api/table/GetAllTablesAndViews`, data);
- }
- export function GetAllBasicData(data: any) {
- return http.post(`/api/system/GetAllBasicData`, data);
- }
- export function GetTableViewColumns(data: any) {
- return http.post(`/api/table/GetTableViewColumns`, data);
- }
- export function GetTableViewFieldKey(data: any) {
- return http.post(`/api/table/GetTableViewFieldKey`, data);
- }
|