1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import request from '@/utils/request'
- // 查询企微活码列表
- export function listContactWay(query) {
- return request({
- url: '/qw/contactWay/list',
- method: 'get',
- params: query
- })
- }
- export function sync(id) {
- return request({
- url: '/qw/contactWay/sync/' + id,
- method: 'get'
- })
- }
- export function informationList() {
- return request({
- url: '/qw/contactWay/informationList',
- method: 'get'
- })
- }
- export function statistics(query) {
- return request({
- url: '/qw/contactWay/statistics',
- method: 'get',
- params: query
- })
- }
- // 查询企微活码详细
- export function getContactWay(id) {
- return request({
- url: '/qw/contactWay/' + id,
- method: 'get'
- })
- }
- // 新增企微活码
- export function addContactWay(data) {
- return request({
- url: '/qw/contactWay',
- method: 'post',
- data: data
- })
- }
- // 修改企微活码
- export function updateContactWay(data) {
- return request({
- url: '/qw/contactWay',
- method: 'put',
- data: data
- })
- }
- // 删除企微活码
- export function delContactWay(id) {
- return request({
- url: '/qw/contactWay/' + id,
- method: 'delete'
- })
- }
- // 导出企微活码
- export function exportContactWay(query) {
- return request({
- url: '/qw/contactWay/export',
- method: 'get',
- params: query
- })
- }
|