You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
duoji-frontend/src/api/http/http-api.js

29 lines
558 B
JavaScript

export default {
getStreetList: {
method: "POST",
url: "/street/page",
name: "获取巷道列表"
},
addStreet: {
method: "POST",
url: "/street",
name: "新增巷道"
},
editStreet: {
method: "PUT",
url: "/street",
name: "编辑巷道"
},
// deleteStreet: {
// method: "DELETE",
// url: "/street",
// name: "删除巷道"
// },
queryList: {
url: '/order/list',
name: '查询',
method: 'POST'
}
}