| 1234567891011121314151617181920212223242526 |
- /*
- * @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)
- },
- }
|