[更新]基础框架,登录流程

This commit is contained in:
唐明明
2020-12-27 09:54:49 +08:00
parent 286f8111bd
commit 49275bc648
125 changed files with 2611 additions and 167 deletions

13
apis/interfaces/public.js Normal file
View File

@@ -0,0 +1,13 @@
/*
* 全局通用接口
*/
import {req} from "../request"
const richText = (key) => req({url: "single/" + key, data: {key: "string"}}) //富文本
const getStatus = (key) => req({url: "ajax/status/" + key}) //状态查询
export default({
richText,
getStatus
})