| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- import request from '@/utils/request'
- // 查询个微账号列表
- export function listCompanyAccount(query) {
- return request({
- url: '/company/companyWx/list',
- method: 'get',
- params: query
- })
- }
- // 查询个微账号列表
- export function companyListAll(query) {
- return request({
- url: '/company/companyWx/companyListAll',
- method: 'get',
- params: query
- })
- }
- // 查询个微账号列表
- export function listAll(query) {
- return request({
- url: '/company/companyWx/listAll',
- method: 'get',
- params: query
- })
- }
- // 查询个微账号详细
- export function getCompanyAccount(id) {
- return request({
- url: '/company/companyWx/' + id,
- method: 'get'
- })
- }
- // 新增个微账号
- export function addCompanyAccount(data) {
- return request({
- url: '/company/companyWx',
- method: 'post',
- data: data
- })
- }
- // 修改个微账号
- export function updateCompanyAccount(data) {
- return request({
- url: '/company/companyWx',
- method: 'put',
- data: data
- })
- }
- // 删除个微账号
- export function delCompanyAccount(id) {
- return request({
- url: '/company/companyWx/' + id,
- method: 'delete'
- })
- }
- // 导出个微账号
- export function exportCompanyAccount(query) {
- return request({
- url: '/company/companyWx/export',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function getWxQrCode(query) {
- return request({
- url: '/company/companyWx/getWxQrCode',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function getLoginStatus(query) {
- return request({
- url: '/company/companyWx/getLoginStatus',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function bindService(query) {
- return request({
- url: '/company/companyWx/bindService',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function wakeUpLogin(query) {
- return request({
- url: '/company/companyWx/wakeUpLogin',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function updateWxInfo(query) {
- return request({
- url: '/company/companyWx/updateWxInfo',
- method: 'get',
- params: query
- })
- }
- // 导出个微账号
- export function wxLoginOut(query) {
- return request({
- url: '/company/companyWx/wxLoginOut',
- method: 'get',
- params: query
- })
- }
- export function syncWx(query) {
- return request({
- url: '/company/companyWx/syncWx',
- method: 'get',
- params: query
- })
- }
|