【smart-app更新】1、意见反馈;2、我的;3、退出登录;4、等等其他

This commit is contained in:
zhuoda
2024-03-17 22:52:00 +08:00
parent 4b36de6de5
commit 83d316a2d1
26 changed files with 22871 additions and 118 deletions

View File

@@ -0,0 +1,17 @@
/*
* 意见反馈
*
* @Author: 1024创新实验室开云
* @Date: 2022-09-03 21:56:31
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
import { postRequest } from '/src/lib/smart-request';
export const feedbackApi = {
// 意见反馈-新增
addFeedback: (params) => {
return postRequest('/support/feedback/add', params);
},
};

View File

@@ -0,0 +1,14 @@
/**
* 系统更新日志 api 封装
*
* @Author: 卓大
* @Date: 2022-09-26 14:53:50
* @Copyright 1024创新实验室
*/
import { uploadRequest } from '/@/lib/smart-request';
export const fileApi = {
upload: (file, folder) => {
return uploadRequest(file, folder);
},
};