| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * @Author: liuzhenlin 461480418@qq.ocm
- * @Date: 2023-01-29 16:17:15
- * @LastEditors: liuzhenlin
- * @LastEditTime: 2023-02-14 16:45:06
- * @Description: file content
- * @FilePath: \crm\api\customer\index.js
- */
- import micro_request from '@/utils/micro_request'
- const basePath = process.uniEnv.VUE_APP_ParentPath
- export default {
- // 创建跟进
- createFollow(query) {
- return micro_request.postRequest(basePath, 'FollowUp', 'Create', query)
- },
- // 跟进信息
- followList(query) {
- return micro_request.postRequest(basePath, 'FollowUp', 'GetList', query)
- },
- // 跟进记录详情
- getListByDay(query) {
- return micro_request.postRequest(basePath, 'FollowUp', 'GetListByDay', query)
- },
- // 跟进记录详情
- getListByDay(query) {
- return micro_request.postRequest(basePath, 'FollowUp', 'GetListByDay', query)
- },
- // 获取待回复信息
- getNeedReplyComments(query) {
- return micro_request.postRequest(basePath, 'FollowUpComment', 'GetNeedReplyComments', query)
- },
- // 回复信息
- onReply(query) {
- return micro_request.postRequest(basePath, 'FollowUpComment', 'Reply', query)
- },
- // 检测是否需要回复
- getIsNeedReply(query) {
- return micro_request.postRequest(basePath, 'FollowUpComment', 'GetNeedReplyCount', query)
- },
- }
|