| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询企业纳税信息列表
- export function listInformation(query) {
- return request({
- url: '/crmEnterpriseTaxInformation/findByPage',
- method: 'get',
- params: query
- })
- }
- // 查询企业纳税信息详细
- export function getInformation(id) {
- return request({
- url: '/basicData/information/' + id,
- method: 'get'
- })
- }
- // 新增企业纳税信息
- export function addInformation(data) {
- return request({
- url: '/basicData/information',
- method: 'post',
- data: data
- })
- }
- // 修改企业纳税信息
- export function updateInformation(data) {
- return request({
- url: '/basicData/information',
- method: 'put',
- data: data
- })
- }
- // 删除企业纳税信息
- export function delInformation(id) {
- return request({
- url: '/crmEnterpriseTaxInformation/deleteAll',
- method: 'delete'
- })
- }
|