12345678910111213141516171819202122232425 |
- import request from "../../common/request"
- export default {
- getConfig: function () {
- return request({
- url: "/sys/sysConfig/getConfig",
- method: "get",
- });
- },
- queryById: function () {
- return request({
- url: "/sys/sysConfig/queryById",
- method: "get",
- });
- },
- save: function (inputForm) {
- return request({
- url: "/sys/sysConfig/save",
- method: "post",
- data: inputForm,
- });
- },
- };
|