| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import request from '@/utils/request'
- // 查询个微SOP营期列表
- export function listSopUserLogsWx(query) {
- return request({
- url: '/wxSop/sopUserLogsWx/list',
- method: 'get',
- params: query
- })
- }
- // 查询个微SOP营期详细
- export function getSopUserLogsWx(id) {
- return request({
- url: '/wxSop/sopUserLogsWx/' + id,
- method: 'get'
- })
- }
- // 删除个微SOP营期
- export function delSopUserLogsWx(ids) {
- return request({
- url: '/wxSop/sopUserLogsWx/' + ids,
- method: 'delete'
- })
- }
- // 导出个微SOP营期
- export function exportSopUserLogsWx(query) {
- return request({
- url: '/wxSop/sopUserLogsWx/export',
- method: 'get',
- params: query
- })
- }
- // 批量修改个微SOP营期时间
- export function updateLogDate(data) {
- return request({
- url: '/wxSop/sopUserLogsWx/updateLogDate',
- method: 'post',
- data: data
- })
- }
- // 查询个微SOP营期详情(客户列表)
- export function getSopUserLogsDetail(sopUserId, query) {
- return request({
- url: '/wxSop/sopUserLogsWx/detail/' + sopUserId,
- method: 'get',
- params: query
- })
- }
|