1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询营商环境问题列表
- export function listDoingBusiness(query) {
- return request({
- url: '/system/doing/business/list',
- method: 'get',
- params: query
- })
- }
- // 查询营商环境问题详细
- export function getDoingBusiness(id) {
- return request({
- url: '/system/doing/business/' + id,
- method: 'get'
- })
- }
- // 新增营商环境问题
- export function addDoingBusiness(data) {
- return request({
- url: '/system/doing/business',
- method: 'post',
- data: data
- })
- }
- // 修改营商环境问题
- export function updateDoingBusiness(data) {
- return request({
- url: '/system/doing/business',
- method: 'put',
- data: data
- })
- }
- // 删除营商环境问题
- export function delDoingBusiness(id) {
- return request({
- url: '/system/doing/business/' + id,
- method: 'delete'
- })
- }
|