12345678910111213141516171819202122232425262728293031323334353637 |
- import {
- request
- } from '@/request/request.js';
- /*
- * 获取产品层级
- *
- *
- */
- export function getServeProductList(id) {
- return request({
- url: `/api/workarkProductLevel/getParentId/${id}`,
- method: 'get'
- })
- }
- /*
- * 通过条件获取服务列表
- *
- *
- */
- export function getServeListByQuery(data) {
- return request({
- url: `/api/workarkProduct/query`,
- method: 'post',
- data: data
- })
- }
- /*
- * 获取客服详情
- *
- *
- */
- export function getCustomerServeDetail(id) {
- return request({
- url: `/manager/customer/${id}`,
- method: 'get'
- })
- }
|