| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import request from "../../common/request"
- export default {
- save: function (inputForm) {
- return request({
- url: "/info/community/community/save",
- method: "post",
- data: inputForm,
- });
- },
- delete: function (ids) {
- return request({
- url: "/info/community/community/delete",
- method: "delete",
- params: { ids: ids },
- });
- },
- getListById: function (id) {
- return request({
- url: "/info/community/community/getListById",
- method: "get",
- params: { id: id },
- });
- },
- queryById: function (id) {
- return request({
- url: "/info/community/community/queryById",
- method: "get",
- params: { id: id },
- });
- },
- drag: function (inputForm) {
- return request({
- url: "/info/community/community/drag",
- method: "post",
- data: inputForm,
- });
- },
- treeData: function () {
- return request({
- url: "/info/community/community/treeData",
- method: "get",
- });
- },
- };
|