20 lines
454 B
JavaScript
20 lines
454 B
JavaScript
import config from "@/config";
|
|
import http from "@/utils/request";
|
|
|
|
export default {
|
|
ossGet: {
|
|
url: `${config.API_URL}/oss.get.sign`,
|
|
name: "获取oss参数",
|
|
post: async function (params) {
|
|
return await http.oss(this.url, params);
|
|
},
|
|
},
|
|
status: {
|
|
url: `${config.API_URL}/common.active.status.list`,
|
|
name: "获取系统禁用启用下拉列表",
|
|
post: async function (params) {
|
|
return await http.post(this.url, params);
|
|
},
|
|
}
|
|
};
|