crmApi.js 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255
  1. import http from "@/api/http.js";
  2. /* 客户管理模块 */
  3. const customInterence = {
  4. // 销售今日待办
  5. sellerTodayList:params=>{
  6. return http.get('/custom/getTryOutCompanyList',params)
  7. },
  8. // 销售待办填写续约说明
  9. sellerTodayListRemark:params=>{
  10. return http.post('/custom/editTryOutCompanyReason',params)
  11. },
  12. //销售代办中历史记录
  13. sellerTodayHistoryList:params=>{
  14. return http.get('/custom/renewReasonList',params)
  15. },
  16. //累计试用天数详情
  17. tryOutDeail:params=>{
  18. return http.get("/custom/company/tryOutDayList",params)
  19. },
  20. /*
  21. 关闭客户
  22. CompanyId
  23. Remark
  24. */
  25. closeCustom:params=>{
  26. return http.post('/custom/close',params)
  27. },
  28. /**
  29. * 关闭客户转流失
  30. * CompanyId
  31. */
  32. turnLose:params=>{
  33. return http.post('/custom/close2loss',params)
  34. },
  35. // 客户系统合同搜索
  36. contractSearch: (params) => {
  37. return http.get("/custom/system_contract/list", params);
  38. },
  39. // 系统合同详情
  40. sysContractDetail: (params) => {
  41. return http.get("/custom/system_contract/detail", params);
  42. },
  43. // 通过系统合同申请转正/服务更新接口
  44. sysCustomeApply: (params) => {
  45. return http.post("/custom/apply/systemContract", params);
  46. },
  47. /**
  48. * 获取客户大于今天的最后一份有效合同详情
  49. * CompanyId
  50. */
  51. lastContractInfo: (params) => {
  52. return http.get("/custom/company/last_contract/detail", params);
  53. },
  54. //补全客户信息
  55. /**
  56. * City
  57. * CompanyId 客户id
  58. * CompanyName
  59. * CreditCode
  60. * IndustryId 所属行业id
  61. * IndustryName
  62. * Province
  63. * Source 来源
  64. */
  65. completeInfo: (params) => {
  66. return http.post("/custom/company_info/edit", params);
  67. },
  68. //获取客户名下联系人数量(根据当前账号角色区分)
  69. //CompanyId 客户id
  70. companyUserTotal: (params) => {
  71. return http.get("/custom/company_user/total", params);
  72. },
  73. //获取客户申请转正的合同类型
  74. applyTurnContractType: (params) => {
  75. return http.get("/custom/apply/contract/getApplyTurnContractType", params);
  76. },
  77. //客户来源
  78. customerSourceList: (params) => {
  79. return http.get("/custom/getCompanySourceList", params);
  80. },
  81. // 获取客户名下所有销售列表
  82. companySellerList: (params) => {
  83. return http.get("/custom/getCompanySellerList", params);
  84. },
  85. // 移动联系人
  86. moveCustom: (params) => {
  87. return http.post("/custom/user/move", params);
  88. },
  89. /* 上传图片接口 file */
  90. upload: (params) => {
  91. return http.post("/resource/image/upload", params);
  92. },
  93. /* 代办消息列表 */
  94. noticeList: (params) => {
  95. return http.get("/custom/message/listV2", params);
  96. },
  97. /* 消息已读接口 Id */
  98. readNotice: (params) => {
  99. return http.post("/custom/message/read", params);
  100. },
  101. /* 客户列表
  102. PageSize * integer
  103. CurrentIndex * integer
  104. Status *string 状态:’传空字符串或者不传为全部’,’试用’,’永续’,’冻结’,’流失’,’正式’
  105. CompanyType *string 客户类型:传空字符串或者不传为全部,’ficc’,’权益’
  106. IndustryId *integer
  107. AdminId string 销售id,多个用英文逗号隔开,空字符串为全部
  108. ChartPermissionIds *string 品种id,多个用英文逗号分开,空字符串为全部
  109. StartDate *
  110. EndDate *
  111. KeyWord * 搜索关键词
  112. TryStage 试用子标签 0全部、1未分类、2 推进、3 跟踪、4 预备
  113. */
  114. customList: (params) => {
  115. return http.get("/custom/list", params);
  116. },
  117. /* 获取指定权限的销售列表 */
  118. getSale: (params) => {
  119. // return http.get('/custom/seller/check/list',params)
  120. return http.get("/custom/seller/check/listV2", params);
  121. },
  122. /* 客户详情
  123. CompanyId
  124. */
  125. customDetail: (params) => {
  126. return http.get("/custom/detail", params);
  127. },
  128. /* 新增客户
  129. Province: string
  130. City:string
  131. 省市
  132. CompanyCode: string
  133. 客户编码
  134. CompanyName: string
  135. 客户名称
  136. CompanyType: string
  137. 客户类型,ficc,权益
  138. CreditCode: string
  139. 社会统一信用码
  140. IndustryId: integer ($int64)
  141. 所属行业id
  142. PermissionIds: string
  143. 权限id,多个用英文逗号隔开
  144. Reasons: string
  145. 新增理由
  146. SellsId: integer ($int64)
  147. 销售员id
  148. Source: string
  149. 来源
  150. Status: string
  151. 客户状态,试用,永续
  152. */
  153. customAdd: (params) => {
  154. return http.post("/custom/add", params);
  155. },
  156. /* 编辑客户
  157. "City": "string",
  158. "CompanyId": 0,
  159. "CompanyName": "string",
  160. "CreditCode": "string",
  161. "Products": [
  162. {
  163. "CompanyProductId": 0,
  164. "CompanyType": "string",
  165. "IndustryId": 0,
  166. "IndustryName": "string",
  167. "PermissionIds": "string",
  168. "Reasons": "string",
  169. "SellsId": 0,
  170. "Source": "string",
  171. "Status": "string"
  172. }
  173. ],
  174. "Province": "string"
  175. */
  176. customEdit: (params) => {
  177. return http.post("/custom/edit", params);
  178. },
  179. /* 删除客户 CompanyId*/
  180. customDel: (params) => {
  181. return http.post("/custom/delete", params);
  182. },
  183. /* 新增编辑客户名称检索 KeyWord*/
  184. customSea: (params) => {
  185. return http.get("/custom/fuzzy/search", params);
  186. },
  187. /* 获取销售接口 */
  188. /**
  189. *
  190. * @param {
  191. * SellerType - 销售类型 - 0:所有; 1:FICC; 2:权益
  192. * } params
  193. * @returns
  194. */
  195. saleslist: (params) => {
  196. return http.get("/custom/seller/list", params);
  197. },
  198. /* 联系人列表
  199. PageSize
  200. CurrentIndex
  201. CompanyId *integer
  202. KeyWord
  203. */
  204. concactList: (params) => {
  205. return http.get("/custom/user/list", params);
  206. },
  207. /* 新增联系人
  208. DepartmentName
  209. BusinessCardUrl: string名片地址
  210. CompanyId: integer ($int64)客户id
  211. Email: string邮箱
  212. IsMaker: integer ($int64) 是否决策人,1:是,0:否
  213. MobileOne: string手机号1
  214. MobileTwo: string手机号2
  215. Position: string职位
  216. RealName: string姓名
  217. Sex: integer ($int64)用户性别,1为男性,2为女性
  218. */
  219. concactAdd: (params) => {
  220. return http.post("/custom/user/add", params);
  221. },
  222. /* 删除联系人 UserId int*/
  223. concactDel: (params) => {
  224. return http.post("/custom/user/delete", params);
  225. },
  226. /* 编辑联系人
  227. DepartmentName
  228. "BusinessCardUrl": "string",
  229. "CompanyId": 0,
  230. "Email": "string",
  231. "IsMaker": 0,
  232. "MobileOne": "string",
  233. "MobileTwo": "string",
  234. "Position": "string",
  235. "RealName": "string",
  236. "Sex": 0,
  237. "UserId": 0
  238. */
  239. concactEdit: (params) => {
  240. return http.post("/custom/user/edit", params);
  241. },
  242. /* 关注/取消关注 联系人
  243. UserId CompanyId
  244. Type 0取关 1关注
  245. */
  246. concactFollow: (params) => {
  247. return http.post("/custom/follow", params);
  248. },
  249. /* 获取权限基本信息 */
  250. authList: (params) => {
  251. return http.get("/custom/permission/list", params);
  252. },
  253. /* 查看权限 CompanyId */
  254. lookauth: (params) => {
  255. return http.get("/custom/permission/look", params);
  256. },
  257. /* 根据客户类型获取行业列表接口
  258. Classify string
  259. */
  260. getindustry: (params) => {
  261. return http.get("/custom/industry/list", params);
  262. },
  263. /*
  264. 品种列表 客户列表筛选
  265. */
  266. getvariety: (params) => {
  267. return http.get("/custom/permission/variety", params);
  268. },
  269. /* 客户检索列表
  270. KeyWord
  271. */
  272. searchList: (params) => {
  273. return http.get("/custom/search/list", params);
  274. },
  275. /* 潜在用户列表
  276. PageSize * 每页数据条数
  277. CurrentIndex *
  278. ApplyMethod * int 申请方式,0:全部,1:未申请,2:已付费客户申请试用,3:非客户申请试用
  279. KeyWord *
  280. */
  281. potentialList: (params) => {
  282. return http.get("/custom/potential/user/list", params);
  283. },
  284. /* 获取试用用户列表 */
  285. trialList: (params) => {
  286. return http.get("/custom/official/user/list", params);
  287. // return http.get('/api/adminapi/custom/official/user/list?PageSize=10&CurrentIndex=1&SourceType=中文官网', params)
  288. },
  289. /* 试用用户确认已处理接口 */
  290. trialStatus: (params) => {
  291. return http.post("/custom/official/user/confirm", params);
  292. },
  293. /* 标记研报申请分组
  294. ApplyRecordId
  295. GroupName
  296. UserId
  297. */
  298. markApplyUser:(params)=>{
  299. return http.post('/yb/apply_record/mark_group',params)
  300. },
  301. /**
  302. * 标记官网试用申请
  303. * Id
  304. * GroupName
  305. */
  306. markOfficialUser:(params)=>{
  307. return http.post('/custom/official/user/mark_group',params)
  308. },
  309. /* 搜索公司 KeyWord */
  310. companySearch: (params) => {
  311. return http.get("/custom/potential/company/search", params);
  312. },
  313. /* 搜索公司qcc KeyWord */
  314. companyQccSearch: (params) => {
  315. return http.get("/custom/potential/company/qccSearch", params);
  316. },
  317. /* 检查公司名称或是信用码 CompanyName CreditCode */
  318. checkCompany: (params) => {
  319. return http.get("/custom/check/companyInfo", params);
  320. },
  321. /* 检查公司名称或是信用码 CompanyName CreditCode */
  322. checkCompanyInfo: (params) => {
  323. return http.get("/custom/check/RepeatCompanyInfo", params);
  324. },
  325. /* 移动潜在用户
  326. "BusinessCardUrl":string名片地址
  327. "CompanyId": int,
  328. "DepartmentName":string联系人部门
  329. "Email": "string",
  330. "IsMaker":int是否决策人,1:是,0:否
  331. "Mobile": "string",
  332. "Position": string职位
  333. "RegionType":string 区域,枚举值:国内、海外
  334. "RealName": "string",
  335. "Remark": "string",
  336. "SellerId":int 需要移动到的销售id
  337. "Sex":int 用户性别,1为男性,2为女性
  338. "UserId": int
  339. */
  340. moveUser: (params) => {
  341. return http.post("/custom/potential/user/move", params);
  342. },
  343. /* 删除潜在用户
  344. "UserId": int
  345. */
  346. potentialDel: (params) => {
  347. return http.post("/custom/potential/user/delete", params);
  348. },
  349. //给用户打标记
  350. potentialDeal: (params) => {
  351. return http.post("/custom/potential/user/deal", params);
  352. },
  353. /* 客户创建周期
  354. CompanyId int
  355. */
  356. processList: (params) => {
  357. return http.get("/custom/process/list", params);
  358. },
  359. /* 服务更新 历史签约列表 CompanyId CompanyType */
  360. historydeal: (params) => {
  361. return http.get("/custom/apply/contract/history/list", params);
  362. },
  363. /* 服务更新
  364. "CompanyId": 0,
  365. "CompanyType": "string",
  366. "EndDate": "string",
  367. "ImgUrl": "string",
  368. "Money": 0,
  369. "PayChannel": "string",
  370. "PayMethod": "string",
  371. "PermissionIds": "string",
  372. "StartDate": "string"
  373. */
  374. Update: (params) => {
  375. return http.post("/custom/apply/service/update", params);
  376. },
  377. /* 冻结客户
  378. "CompanyId": 0,
  379. "CompanyType":*/
  380. Freez: (params) => {
  381. return http.post("/custom/freeze", params);
  382. },
  383. /* 申请转正
  384. "CompanyId": 0,
  385. "EndDate": "string",
  386. "ImgUrl": "string",
  387. "Money": 0,
  388. "PayChannel": "string",
  389. "PayMethod": "string",
  390. "PermissionIds": "string",
  391. "StartDate": "string"
  392. */
  393. applyTurn: (params) => {
  394. return http.post("/custom/apply/turn/positive", params);
  395. },
  396. /* 申请延期
  397. "ApplyRemark": "string",
  398. "CompanyId": 0
  399. CompanyApprovalId
  400. PermissionIds
  401. */
  402. applyDelay: (params) => {
  403. return http.post("/custom/apply/delay", params);
  404. },
  405. /* 申请领取
  406. "ApplyRemark": "string",
  407. "CompanyId": 0
  408. */
  409. applyPick: (params) => {
  410. return http.post("/custom/apply/receive", params);
  411. },
  412. /* 申请解冻
  413. "ApplyRemark": "string",
  414. "CompanyId": 0
  415. */
  416. applyThaw: (params) => {
  417. return http.post("/custom/apply/thaw", params);
  418. },
  419. /* 修改所属销售 "CompanyId": 0,"SellsId": 0*/
  420. moveSale: (params) => {
  421. return http.post("/custom/move/seller", params);
  422. },
  423. /* 暂停/启用 CompanyId */
  424. Suspend: (params) => {
  425. return http.post("/custom/suspend", params);
  426. },
  427. /* 领取列表
  428. PageSize *
  429. CurrentIndex *
  430. IndustryId 行业id,0为全部
  431. ChartPermissionIds
  432. StartDate *
  433. EndDate *
  434. KeyWord *
  435. */
  436. pickList: (params) => {
  437. return http.get("/custom/receive/list", params);
  438. },
  439. /* 领取客户 ——领取列表
  440. "CompanyId": 0,
  441. "IndustryId": 0,
  442. "PermissionIds": "string",
  443. "Reasons": "string",
  444. "SellsId": 0,
  445. "Source": "string",
  446. "Status": "string"
  447. CompanyType
  448. */
  449. Pick: (params) => {
  450. return http.post("/custom/receive", params);
  451. },
  452. /* 设置共享/取消共享
  453. CompanyId
  454. IsShare 0-取消共享 1-共享
  455. */
  456. setCustomShare: (params) => {
  457. return http.post("/custom/share", params);
  458. },
  459. /**
  460. * 正式客户共享
  461. */
  462. /**
  463. * 获取 共享客户组 里面的销售列表
  464. */
  465. salesShareList: (params) => {
  466. return http.get("/custom/seller/share/list", params);
  467. },
  468. /**
  469. * 获取 共享客户列表
  470. * SortParam 排序字段
  471. * SortType 排序类型 `asc 正序`,`desc 倒叙`
  472. * PageSize CurrentIndex
  473. * SellerId 选择的销售id
  474. * Keyword
  475. * ListParam 0:全部 、 1:已分配 、 2:未分配
  476. *
  477. */
  478. getShareCustomList: (params) => {
  479. return http.get("/custom/share/list", params);
  480. },
  481. /**
  482. * 共享客户列表 - 分配销售
  483. * CompanyId 公司Id
  484. * SellsId 销售Id
  485. *
  486. */
  487. assignShareSeller: (params) => {
  488. return http.post("/custom/share/moveSeller", params);
  489. },
  490. /**
  491. * 新增服务记录
  492. * CompanyId 公司Id
  493. * Content 服务描述
  494. */
  495. addRecord:(params)=>{
  496. return http.post("/custom/service_record/add",params)
  497. },
  498. /**
  499. * 服务记录列表
  500. * CompanyId 公司Id
  501. */
  502. getRecordList:(params)=>{
  503. return http.get("/custom/service_record/list",params)
  504. },
  505. /**
  506. * 删除服务记录
  507. * CompanyServiceRecordId 服务记录id
  508. */
  509. deleteRecord:(params)=>{
  510. return http.post("/custom/service_record/del",params)
  511. },
  512. /**
  513. * 正式客户共享-添加备注
  514. * CompanyId
  515. * Remark
  516. */
  517. addCustomRemark:(params)=>{
  518. return http.post("/custom/share/remark/add",params)
  519. },
  520. /**
  521. * 客户列表,正式客户共享-删除备注
  522. * RemarkId
  523. */
  524. deleteRemark:(params)=>{
  525. return http.post("/custom/remark/del",params)
  526. },
  527. /*
  528. * 标记服务记录
  529. * CompanyServiceRecordId
  530. * Status 0取消标记 1标记
  531. */
  532. markRecord:(params)=>{
  533. return http.post('/custom/share/mark',params)
  534. },
  535. /**
  536. * 同城客户列表
  537. */
  538. getCustomCityList:(params)=>{
  539. return http.get('/custom/share/list/city',params)
  540. },
  541. /* 审批列表
  542. PageSize *
  543. CurrentIndex *
  544. Status *
  545. KeyWord *
  546. */
  547. approvalList: (params) => {
  548. return http.get("/custom/approval/listV2", params);
  549. },
  550. /* 审批
  551. "CompanyId": 0,
  552. "Remark": "string",
  553. "Status": 0
  554. */
  555. Approval: (params) => {
  556. return http.post("/custom/approval/approve", params);
  557. },
  558. /* 撤回 CompanyId*/
  559. Revoke: (params) => {
  560. return http.post("/custom/apply/revoke", params);
  561. },
  562. /* 删除审批单 CompanyApprovalId CompanyId */
  563. approvalDel: (params) => {
  564. return http.post("/custom/approval/delete", params);
  565. },
  566. /* 审批页面详情
  567. CompanyId * *
  568. */
  569. approvalDetail: (params) => {
  570. return http.get("/custom/apply/contract/detail", params);
  571. },
  572. /* 重新申请合同详情 */
  573. reapplyDetail: (params) => {
  574. return http.get("/custom/apply/contract", params);
  575. },
  576. /* 阅读报告记录 UserId*/
  577. readList: (params) => {
  578. return http.get("/custom/view/report/list", params);
  579. },
  580. /* 获取导入联系人列表 File CompanyId*/
  581. getimportList: (params) => {
  582. return http.post("/custom/import/list", params);
  583. },
  584. /* 导入联系人 File CompanyId*/
  585. importUser: (params) => {
  586. return http.post("/custom/import", params);
  587. },
  588. /* 增加试用 "ChartPermissionId" "CompanyId"*/
  589. addTryout: (params) => {
  590. return http.post("/custom/permission/add/try/out", params);
  591. },
  592. /* 申请解冻 申请领取权限列表 */
  593. allAuth: (params) => {
  594. return http.get("/custom/getCompanyPermission", params);
  595. },
  596. /**
  597. * 获取审批单中的权限列表
  598. * @param {ApprovalId } params 审批单id
  599. * @returns
  600. */
  601. approvalPermission: (params) => {
  602. return http.get("/custom/approval/getApprovalPermissionList", params);
  603. },
  604. /**
  605. * 查看客户权限接口(主观客观)
  606. * @param {CompanyId } params 客户id
  607. * @param {LookType } params 调用类型:1增开试用,0其他
  608. * @returns
  609. */
  610. permissionLookSando: (params) => {
  611. return http.get("/custom/permission/lookSando", params);
  612. },
  613. // 获取联系人配置图库权限详情
  614. chartPermissionInfo: (params) => {
  615. return http.get("/custom/user/getChartClassifyPermissionDetail", params);
  616. },
  617. // 联系人图库权限设置
  618. chartPermissionSet: (params) => {
  619. return http.post("/custom/user/addChartClassifyPermission", params);
  620. },
  621. // 联系人图库权限编辑
  622. chartPermissionEdit: (params) => {
  623. return http.post("/custom/user/editChartClassifyPermission", params);
  624. },
  625. // 销售待办添加未续约说明
  626. sellerAddListRemark: (params) => {
  627. return http.post("/custom/addTryOutCompanyReason", params);
  628. },
  629. // 正式转试用添加说明
  630. addTryOutRenewalReason: (params) => {
  631. return http.post("/custom/addRenewalReason", params);
  632. },
  633. // 导出
  634. companyExportList: (params) => {
  635. return http.get("/cygx/company/exportList", params);
  636. },
  637. /* 查看备注 */
  638. lookRemarkAuth: (params) => {
  639. return http.get("/custom/remark", params);
  640. },
  641. /* 新增备注 */
  642. lookRemarkAuthAdd: (params) => {
  643. return http.post("/custom/remark/add", params);
  644. },
  645. //路演的弹框
  646. roadShowList: (params) => {
  647. return http.get("/custom/roadShowList", params);
  648. },
  649. /**
  650. * 销售ToDo
  651. */
  652. //新建任务
  653. addToDoItem: (params) => {
  654. return http.post("/custom/company_todo/add", params);
  655. },
  656. //编辑任务
  657. editToDoItem: (params) => {
  658. return http.post("/custom/company_todo/edit", params);
  659. },
  660. //正在进行的任务
  661. getToDoItem: (params) => {
  662. return http.get("custom/company_todo/edit_list", params);
  663. },
  664. //历史记录
  665. getHistory: (params) => {
  666. return http.get("/custom/company_todo/list", params);
  667. },
  668. //确认完成
  669. checkToDo: (params) => {
  670. return http.post("/custom/company_todo/approve", params);
  671. },
  672. // 设置试用子标签
  673. // "CompanyId":6802,"ProductId":1, "TryStage": 2
  674. setTrialTag: (params) => {
  675. return http.post("/custom/update/tryStage", params);
  676. },
  677. /**
  678. * 销售添加客户管理
  679. */
  680. //销售分组列表
  681. getSales: (params) => {
  682. return http.get("/custom/receive/seller/group", params);
  683. },
  684. //销售列表
  685. getSalesData: (params) => {
  686. return http.get("/custom/receive/seller", params);
  687. },
  688. //权益销售列表
  689. getSalesRaiData: (params) => {
  690. return http.get("/custom/seller/check/list_rai", params);
  691. },
  692. //启用/禁用权限
  693. changeSaleAuth: (params) => {
  694. return http.post("/custom/receive/permission/change", params);
  695. },
  696. /**
  697. * 分产品阅读统计
  698. */
  699. /*
  700. 用户阅读统计:
  701. UserId:联系人ID;ClickSort:点击量排序:1-升序 2-降序
  702. CurrentIndex,pageSize
  703. */
  704. getYbProductReadInfo:(params)=>{
  705. return http.get("/yb/product_census/user/visit_count",params)
  706. },
  707. /*
  708. 用户阅读统计详情:
  709. UserId:联系人ID;ClickSort:点击量排序:1-升序 2-降序
  710. ProductType:产品类型:1-语音播报 2-视频社区 3-问答社区
  711. ProductId:产品ID:产品类型为1-语音播报时必填
  712. CurrentIndex,pageSize
  713. */
  714. getYbProductReadDetail:(params)=>{
  715. return http.get("/yb/product_census/user/visit_count_detail",params)
  716. },
  717. /**
  718. * 获取分产品列表
  719. * @param {*} params
  720. * @returns
  721. */
  722. getSubProduct: params => {
  723. return http.get('/custom/user/otherProductList',params)
  724. },
  725. /**
  726. * 客户区域统计
  727. */
  728. /**
  729. * 获取客户区域统计列表
  730. * @param {*} params
  731. * @returns Date 当天 ProductId=1
  732. */
  733. getRegionCustom: params => {
  734. return http.get('/custom/customerAreaStatistics',params)
  735. },
  736. /**
  737. * --------开票到款统计
  738. */
  739. /**
  740. * 获取简易的套餐列表(用于搜索下拉框)
  741. * @returns
  742. */
  743. getSimpleServiceList: () => {
  744. return http.get('/statistic_report/contract/service/simple')
  745. },
  746. /**
  747. * 获取客户合同商品到款列表
  748. * @param data.page_size - 每页数据量 - 必填
  749. * @param data.current - 页码 - 必填
  750. * @param data.keyword - 关键词-客户名称/销售
  751. * @param data.service_types - 套餐
  752. * @param data.start_date - 开始时间
  753. * @param data.end_date - 结束时间
  754. * @param data.time_type - 时间类型:1-开票时间; 2-到款时间
  755. * @param data.sort_type - desc:降序 asc:升序
  756. * @param data.sort_param - invoice_time:开票日 payment_date:到款日
  757. * @returns
  758. */
  759. getCTContractStatistics: params => {
  760. return http.get('/statistic_report/census/invoice_payment/list',params)
  761. },
  762. // ----------------------------------------------------英文客户
  763. /**
  764. * 设置英文客户权限
  765. * @param {*} params
  766. * @returns
  767. */
  768. setENCustomReportVariety:params=>{
  769. return http.post('/english_report/company/save_permission',params)
  770. },
  771. // 获取英文客户列表
  772. /**
  773. *
  774. * @param {
  775. * PageSize - 每页数据量 - 必填
  776. * CurrentIndex - 当前页数 - 必填
  777. * Keywords - 客户名称
  778. * SortType - 点击量排序方式: 1-倒序;2-正序
  779. * } params
  780. * @returns
  781. */
  782. getCustomListEn: params => {
  783. return http.get('/english_report/company/list',params)
  784. },
  785. // 新增英文客户
  786. /**
  787. *
  788. * @param {
  789. * CompanyId - 客户ID 大于0为编辑
  790. * CompanyName - 客户名称 - 必填
  791. * CountryCode - 国家代码 - 必填
  792. * Country - 国家 - 必填
  793. * SellerId - 销售ID - 必填
  794. * } params
  795. * @returns
  796. */
  797. addCustomEn: (params) => {
  798. return http.post("/english_report/company/save", params);
  799. },
  800. // 删除英文客户
  801. /**
  802. *
  803. * @param {
  804. * CompanyId - 客户ID
  805. * } params
  806. * @returns
  807. */
  808. delCustomEn: (params) => {
  809. return http.post("/english_report/company/del", params);
  810. },
  811. // 英文客户点击量详情
  812. /**
  813. *
  814. * @param {
  815. * PageSize - 每页数据量 - 必填
  816. * CurrentIndex - 当前页数 - 必填
  817. * CompanyId - 客户ID - 必填
  818. * SortParam - 点击量排序字段 - 1-点击量;2-点击时间
  819. * SortType - 点击量排序方式: 1-倒序;2-正序
  820. * } params
  821. * @returns
  822. */
  823. customEnHitNumber: (params) => {
  824. return http.get("/english_report/company/view_list", params);
  825. },
  826. // 英文客户详情
  827. /**
  828. *
  829. * @param {
  830. * CompanyId - 客户ID
  831. * } params
  832. * @returns
  833. */
  834. customDetailEn: (params) => {
  835. return http.get("/english_report/company/detail", params);
  836. },
  837. // ---------英文客户todo
  838. // 新建to do
  839. /**
  840. *
  841. * @param {
  842. * CompanyId - 客户ID
  843. * Description - 任务描述
  844. * EndTime - 截止日期
  845. * } params
  846. * @returns
  847. */
  848. addCustomToDoEn: (params) => {
  849. return http.post("/english_report/company_todo/add", params);
  850. },
  851. // 编辑todo的列表
  852. /**
  853. *
  854. * @param {
  855. * CompanyId - 客户ID - 必填
  856. * } params
  857. * @returns
  858. */
  859. todoEditListEn: (params) => {
  860. return http.get("/english_report/company_todo/edit_list", params);
  861. },
  862. // 编辑todo
  863. /**
  864. *
  865. * @param {
  866. * Id - 任务Id - 必填
  867. * CompanyId - 客户ID - 必填
  868. * Description - 任务描述 - 必填
  869. * } params
  870. * @returns
  871. */
  872. editCustomToDoEn: (params) => {
  873. return http.post("/english_report/company_todo/edit", params);
  874. },
  875. // 完成todo
  876. /**
  877. *
  878. * @param {
  879. * Id - 任务Id - 必填
  880. * } params
  881. * @returns
  882. */
  883. finishCustomToDoEn: (params) => {
  884. return http.post("/english_report/company_todo/approve", params);
  885. },
  886. // to do历史记录
  887. /**
  888. * @param {
  889. * PageSize - 每页数据量 - 必填
  890. * CurrentIndex - 当前页数 - 必填
  891. * CompanyId - 客户ID
  892. * SortType - 点击量排序方式: 1-倒序;2-正序
  893. * } params
  894. * @returns
  895. */
  896. getTodoListEn: (params) => {
  897. return http.get("/english_report/company_todo/list", params);
  898. },
  899. //----------------------------英文联系人列表
  900. /**
  901. * @param {
  902. * PageSize - 每页数据量 - 必填
  903. * CurrentIndex - 当前页数 - 必填
  904. * CompanyId - 客户ID
  905. * Keywords - 搜索关键词,客户名称/邮箱
  906. * SortType - 点击量排序方式: 1-倒序;2-正序
  907. * } params
  908. * @returns
  909. */
  910. getContactsListEn: (params) => {
  911. return http.get("/english_report/email/list", params);
  912. },
  913. // 保存联系人 新增/编辑
  914. /**
  915. *
  916. * @param {
  917. * Id - 联系人ID,大于0为编辑
  918. * CompanyId - 客户Id
  919. * Name - 联系人名称
  920. * Email - 邮箱地址
  921. * } params
  922. * @returns
  923. */
  924. contactsSaveEn: (params) => {
  925. return http.post("/english_report/email/save", params);
  926. },
  927. // 移动联系人
  928. /**
  929. *
  930. * @param {
  931. * EmailId - 邮箱ID
  932. * CompanyId - 客户Id
  933. * } params
  934. * @returns
  935. */
  936. contactsMoveEn: (params) => {
  937. return http.post("/english_report/email/moveToCurrent", params);
  938. },
  939. // 英文联系人批量导入
  940. /**
  941. *
  942. * @param { formData
  943. * File - Excel文件
  944. * CompanyId - 客户ID
  945. * } params
  946. * @returns
  947. */
  948. importContactsEn: (params) => {
  949. return http.post("/english_report/email/import", params);
  950. },
  951. // 删除英文联系人
  952. /**
  953. *
  954. * @param {
  955. * EmailId - 联系人Id
  956. * } params
  957. * @returns
  958. */
  959. delContactsEn: (params) => {
  960. return http.post("/english_report/email/del", params);
  961. },
  962. //启用禁用英文联系人
  963. /**
  964. *
  965. * @param {*
  966. * EmailId
  967. * Enabled
  968. * } params
  969. * @returns
  970. */
  971. editEnabledEn:(params)=>{
  972. return http.post('/english_report/email/editEnabled',params)
  973. },
  974. //批量启用,禁用英文联系人
  975. /**
  976. *
  977. * @param {*
  978. * CompanyId
  979. * Enabled
  980. * } params
  981. * @returns
  982. */
  983. editEnabledAll:(params)=>{
  984. return http.post('/english_report/company/edit_enabled',params)
  985. },
  986. // 英文联系人点击量详情
  987. /**
  988. *
  989. * @param {
  990. * PageSize - 每页数据量 - 必填
  991. * CurrentIndex - 当前页数 - 必填
  992. * EmailId - 联系人ID - 必填
  993. * SortParam - 点击量排序字段 - 1-点击量;2-点击时间
  994. * SortType - 点击量排序方式: 1-倒序;2-正序
  995. * } params
  996. * @returns
  997. */
  998. contactsEnHitNumber: (params) => {
  999. return http.get("/english_report/email/view_list", params);
  1000. },
  1001. //英文客户-未完成todo统计
  1002. /**
  1003. *
  1004. * @param {
  1005. * PageSize - 每页数据量
  1006. * CurrentIndex - 当前页数
  1007. * SortType - 截止日期排序方式: 1-正序; 2-倒序
  1008. * } params
  1009. * @returns
  1010. */
  1011. getUnDoList:(params)=>{
  1012. return http.get("/english_report/company_todo/doing_list",params)
  1013. },
  1014. //英文客户-获取to-do编辑框信息
  1015. getToDoEditData:(params)=>{
  1016. return http.get("/english_report/company_todo/last_public_todo",params)
  1017. },
  1018. //英文客户-新增to-do编辑框信息
  1019. /**
  1020. *
  1021. * @param {* Description 任务描述} params
  1022. * @returns
  1023. */
  1024. saveToDoEditData:(params)=>{
  1025. return http.post("/english_report/company_todo/add_public",params)
  1026. }
  1027. };
  1028. /*
  1029. 权益联系人列表模块
  1030. */
  1031. const equityContacts = {
  1032. //状态搜索栏接口
  1033. getUserStatusTable: (params) => {
  1034. return http.get("/cygx/user/status/table", params);
  1035. },
  1036. // 用户列表接口
  1037. getCygxContactsList: (params) => {
  1038. return http.get("/cygx/user/list", params);
  1039. },
  1040. //备注列表接口
  1041. getCygxRemarkList: (params) => {
  1042. return http.get("/cygx/user/remark/list", params);
  1043. },
  1044. // 新增备注
  1045. getCygxAddRemarks: (params) => {
  1046. return http.post("/cygx/user/addRemarks", params);
  1047. },
  1048. //获取用户标签详情接口
  1049. getCygxLabelDetail: (params) => {
  1050. return http.get("/cygx/user/label/detail", params);
  1051. },
  1052. //产业、标的模糊查询接口
  1053. industrialManagementSearch: (params) => {
  1054. return http.get("/cygx/industrialManagement/search", params);
  1055. },
  1056. //互动详情table栏接口
  1057. getCygxMutualList: (params) => {
  1058. return http.get("/cygx/user/table/list", params);
  1059. },
  1060. //互动详情table栏接口
  1061. getCygxMutualDetail: (params) => {
  1062. return http.get("/cygx/user/interaction/detail", params);
  1063. },
  1064. //用户相关互动接口
  1065. getInteractionRelevant: (params) => {
  1066. return http.get("/cygx/user/interaction/relevant", params);
  1067. },
  1068. //机构状态搜索栏互助
  1069. getInteractionNum: (params) => {
  1070. return http.get("/cygx/user/interactionNum", params);
  1071. },
  1072. //机构互动详情table栏接口
  1073. getCompanyTableList: (params) => {
  1074. return http.get("/cygx/user/company/table/list", params);
  1075. },
  1076. //机构互动详情table栏接口
  1077. getCompanyInteractionDetail: (params) => {
  1078. return http.get("/cygx/user/company/interaction/detail", params);
  1079. },
  1080. //添加/取消用户提醒
  1081. postUserRemind: (params) => {
  1082. return http.post("/cygx/user/remind", params);
  1083. },
  1084. //全机构互动列表接口
  1085. getUserCompanyList: (params) => {
  1086. return http.get("cygx/user/company/list", params);
  1087. },
  1088. //机构列表互动详情table栏接口
  1089. getUserTableCompanyList: (params) => {
  1090. return http.get("/cygx/user/table/companyList", params);
  1091. },
  1092. };
  1093. /*
  1094. crm12.4 ETA试用列表模块
  1095. */
  1096. const etaTrialInterence={
  1097. /**ETA试用客户列表
  1098. * PageSize,CurrentIndex,KeyWord
  1099. * SortParam
  1100. * SortType : asc正序 desc倒序
  1101. */
  1102. getETATrialList:(params)=>{
  1103. return http.get('/eta_trial/list',params)
  1104. },
  1105. /**非管理员-我的审批列表
  1106. *
  1107. */
  1108. getApprovalAllList:(params)=>{
  1109. return http.get('/eta_trial/apply/myList',params)
  1110. },
  1111. /**非管理员-账号列表
  1112. *
  1113. */
  1114. getApprovalList:(params)=>{
  1115. return http.get('/eta_trial/apply/accountlist',params)
  1116. },
  1117. /**非管理员-删除申请
  1118. * ApprovalId
  1119. */
  1120. deleteApproval:(params)=>{
  1121. return http.post('/eta_trial/apply/del',params)
  1122. },
  1123. /**非管理员-撤回申请
  1124. * Mobile
  1125. */
  1126. withdrawApproval:(params)=>{
  1127. return http.post('/eta_trial/apply/revoke',params)
  1128. },
  1129. /**非管理员-申请启用
  1130. * UserName,CompanyName,Position,Mobile
  1131. * ApplyReasons 申请理由
  1132. */
  1133. applyEnable:(params)=>{
  1134. return http.post('/eta_trial/apply/enable',params)
  1135. },
  1136. /**非管理员-新增申请
  1137. * List[]
  1138. * List[].UserName 姓名
  1139. * List[].CompanyName 公司名称
  1140. * List[].Position 职位
  1141. * List[].Mobile 手机号
  1142. */
  1143. addApproval:(params)=>{
  1144. return http.post('/eta_trial/add',params)
  1145. },
  1146. /**管理员-审批列表
  1147. * ApprovalStatus
  1148. */
  1149. getAdminApprovalList:(params)=>{
  1150. return http.get('/eta_trial/apply/list',params)
  1151. },
  1152. /**管理员-同意申请
  1153. * ApprovalId
  1154. */
  1155. agreeApply:(params)=>{
  1156. return http.post('/eta_trial/apply/approval',params)
  1157. },
  1158. /**管理员-驳回申请
  1159. * ApprovalId
  1160. * RejectReason
  1161. */
  1162. rejectApply:(params)=>{
  1163. return http.post('/eta_trial/apply/reject',params)
  1164. },
  1165. // -------------ETA试用 1.1
  1166. // 问卷调查
  1167. /**统计结果列表
  1168. * ListParam 1-全部 2-选择题 3-简答题
  1169. */
  1170. getQuestionDataList:(params)=>{
  1171. return http.get('/eta_trial/questionnaire/statistical',params)
  1172. },
  1173. /**简答题详情列表
  1174. * CurrentIndex PageSize QuestionnaireId
  1175. */
  1176. getTextDetailList:(params)=>{
  1177. return http.get('/eta_trial/questionnaire/answerList',params)
  1178. },
  1179. /**详细数据列表
  1180. * PageSize CurrentIndex
  1181. */
  1182. getDetailDataList:(params)=>{
  1183. return http.get('/eta_trial/questionnaire/detailList',params)
  1184. },
  1185. /**详细数据 - 详情
  1186. * Mobile
  1187. */
  1188. getDetailDataDetail:(params)=>{
  1189. return http.get('/eta_trial/questionnaire/detail',params)
  1190. },
  1191. /**问卷列表
  1192. */
  1193. getQuestionOptionList:()=>{
  1194. return http.get('/eta_trial/questionnaire/list')
  1195. },
  1196. /**保存题目配置
  1197. * List - 题目列表
  1198. */
  1199. questionOptionSave:(params)=>{
  1200. return http.post('/eta_trial/questionnaire/save',params)
  1201. },
  1202. /**删除题目
  1203. * QuestionnaireId - 题目Id
  1204. */
  1205. questionOptionDelete:(params)=>{
  1206. return http.post('/eta_trial/questionnaire/del',params)
  1207. },
  1208. }
  1209. /* 全量客户相关 */
  1210. const customAllInterence = {
  1211. //客户列表
  1212. customList:(params)=>{
  1213. return http.get("/custom/full/list",params)
  1214. },
  1215. //客户详情
  1216. customDetail:(params)=>{
  1217. return http.get("/custom/full/detail", params);
  1218. },
  1219. //查看权限
  1220. lookauth: (params) => {
  1221. return http.get("/custom/full/permission/look", params);
  1222. },
  1223. }
  1224. export { customInterence,customAllInterence, equityContacts,etaTrialInterence};