16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
|
|
/*
|
|
* 全局通用接口
|
|
*/
|
|
import {req} from "../request"
|
|
|
|
const richText = (key) => req({url: "single/" + key, data: {key: "string"}}) //富文本
|
|
const getStatus = (key) => req({url: "ajax/status/" + key}) //状态查询
|
|
const storeConfig = (data) => req({url: "wechat/mini/myComponents", data: data}) //企业工具模块配置
|
|
|
|
export default({
|
|
richText,
|
|
getStatus,
|
|
storeConfig
|
|
})
|