diff --git a/admin/src/api/product.ts b/admin/src/api/product.ts new file mode 100644 index 00000000..8bee7081 --- /dev/null +++ b/admin/src/api/product.ts @@ -0,0 +1,37 @@ +import request from '@/utils/request' + +// 用户列表 +export function getUserList(params: any) { + return request.get({ url: '/user.user/lists', params }, { ignoreCancelToken: true }) +} + +// 土地表列表 +export function apiLandLists(params: any) { + console.log(params) + return request.get({ url: '/land.land/lists', params }) +} + +// 产品列表列表 +export function apiProductLists(params: any) { + return request.get({ url: '/land.product/lists', params }) +} + +// 添加产品列表 +export function apiProductAdd(params: any) { + return request.post({ url: '/land.product/add', params }) +} + +// 编辑产品列表 +export function apiProductEdit(params: any) { + return request.post({ url: '/land.product/edit', params }) +} + +// 删除产品列表 +export function apiProductDelete(params: any) { + return request.post({ url: '/land.product/delete', params }) +} + +// 产品列表详情 +export function apiProductDetail(params: any) { + return request.get({ url: '/land.product/detail', params }) +} \ No newline at end of file diff --git a/admin/src/config/index.ts b/admin/src/config/index.ts index 10bbb3da..4bf4e940 100644 --- a/admin/src/config/index.ts +++ b/admin/src/config/index.ts @@ -2,8 +2,8 @@ const config = { terminal: 1, //终端 title: '后台管理系统', //网站默认标题 version: '1.6.0', //版本号 - baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名 - // baseUrl: 'http://127.0.0.1:30005/', + // baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名 + baseUrl: 'http://127.0.0.1:30005/', urlPrefix: 'adminapi', //请求默认前缀 timeout: 10 * 1000 //请求超时时长 } diff --git a/admin/src/views/land/index.vue b/admin/src/views/land/index.vue index 6a048a65..bdda9027 100644 --- a/admin/src/views/land/index.vue +++ b/admin/src/views/land/index.vue @@ -37,14 +37,13 @@ + - - - +