|
|
@@ -0,0 +1,67 @@
|
|
|
+import request from '@/utils/request';
|
|
|
+/**
|
|
|
+ * 获取信息列表
|
|
|
+ */
|
|
|
+export async function getTableList(params) {
|
|
|
+ const res = await request.get(`/eom/changerecord/page`, { params });
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取信息详情
|
|
|
+ */
|
|
|
+export async function getDetail(id) {
|
|
|
+ const res = await request.get(`/eom/changerecord/getById/${id}`, {});
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 更新信息
|
|
|
+ */
|
|
|
+export async function UpdateInformation(data) {
|
|
|
+ const res = await request.put(`/eom/changerecord/update`, data);
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 新增信息
|
|
|
+ */
|
|
|
+export async function addInformation(data) {
|
|
|
+ const res = await request.post(`/eom/changerecord/save`, data);
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 删除
|
|
|
+ */
|
|
|
+export async function deleteInformation(data) {
|
|
|
+ const res = await request.delete('/eom/changerecord/delete', { data });
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取变更记录
|
|
|
+ */
|
|
|
+export async function changeHistory(id) {
|
|
|
+ const res = await request.get(`/eom/changerecord/changeHistory/${id}`, {});
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|