1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询【请填写功能名称】列表
- export function listCdq(query) {
- return request({
- url: '/vpp/cdq/list',
- method: 'get',
- params: query
- })
- }
- // 查询【请填写功能名称】详细
- export function getCdq(bus) {
- return request({
- url: '/vpp/cdq/' + bus,
- method: 'get'
- })
- }
- // 新增【请填写功能名称】
- export function addCdq(data) {
- return request({
- url: '/vpp/cdq',
- method: 'post',
- data: data
- })
- }
- // 修改【请填写功能名称】
- export function updateCdq(data) {
- return request({
- url: '/vpp/cdq',
- method: 'put',
- data: data
- })
- }
- // 删除【请填写功能名称】
- export function delCdq(bus) {
- return request({
- url: '/vpp/cdq/' + bus,
- method: 'delete'
- })
- }
|