| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import request from '@/utils/request'
- // 查询【请填写功能名称】列表
- export function list(query) {
- return request({
- url: '/core/api/plan/find',
- method: 'post',
- data: query
- })
- }
- // 查询【请填写功能名称】详细
- export function itemfind(id) {
- return request({
- url: '/core/api/plan/item/find' + id,
- method: 'get'
- })
- }
- // 查询【请填写功能名称】详细
- export function distribute(query) {
- return request({
- url: '/core/api/plan/distribute' ,
- method: 'post',
- data: query
- })
- }
- export function getPointIds(id) {
- return request({
- url: '/core/api/plan/getPointIds/' + id,
- method: 'get'
- })
- }
- // 查询【请填写功能名称】详细
- export function get(id) {
- return request({
- url: '/core/api/plan/find/' + id,
- method: 'get'
- })
- }
- // 修改【请填写功能名称】
- export function update(data) {
- return request({
- url: '/core/api/plan/edit',
- method: 'post',
- data: data
- })
- }
- // 删除【请填写功能名称】
- export function delelte(id) {
- return request({
- url: '/core/api/plan/delete/' + id,
- method: 'get'
- })
- }
|