1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import request from '@/utils/request'
- // 创建参会人员明细
- export function creatPeople(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/create',
- method: 'post',
- data
- })
- }
- // 删除参会人员明细
- export function delPeople(data) {
- return request({
- url: `/admin-api/backend/meeting-participants/delete?id=${data}`,
- method: 'post',
- })
- }
- // 导出excel
- export function outExcel(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/export-excel',
- method: 'get',
- query: data
- })
- }
- // 获取参会人员明细
- export function getOne(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/get',
- method: 'get',
- data
- })
- }
- // 获取参会人员列表
- export function getList(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/list',
- method: 'get',
- query: data
- })
- }
- // 获取参会人员分页
- export function getListPage(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/page',
- method: 'get',
- data
- })
- }
- // 修改参会人员明细
- export function editPeople(data) {
- return request({
- url: '/admin-api/backend/meeting-participants/update',
- method: 'post',
- data
- })
- }
|