oldApi.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. import http from "@/api/http.js"
  2. // const userLogin = params => { return http.post('/login',params); }; //系统用户登录
  3. const userLogin = params => { return http.post('/sysuser/login',params); }; //系统用户登录
  4. // const modifyPwd = params => { return http.post('/modifyPwd',params); }; //修改密码
  5. const modifyPwd = params => { return http.post('/sysuser/modify/pwd',params); }; //修改密码
  6. const checkPwd = params => { return http.get('/sysuser/check_pwd'); }; //判断是否为初始密码
  7. //用户累计停留时长 ActiveTime(s) Part
  8. const timeOnPage = params =>{return http.post('/eta_trial/user/active',params)}
  9. const reportlist = params => { return http.get('/report/list',params); }; //获取报告列表
  10. const reportpublish = params => { return http.post('/report/publish',params); }; //批量发布报告
  11. const reportpublishcancle = params => { return http.post('/report/publish/cancle',params); }; //取消发布报告
  12. const voiceupload = params => { return http.post('/voice/upload',params); }; //上传音频
  13. const resourceVoiceupload = params => { return http.post('/resource/voice/upload',params); }; //上传音频
  14. const reportadd = params => { return http.post('/report/add',params); }; //新增报告
  15. const reportedit = params => { return http.post('/report/edit',params); }; //编辑报告
  16. const reportdelete = params => { return http.post('/report/delete',params); }; //删除报告
  17. const reportdetail = params => { return http.get('/report/detail',params); }; //获取报告详情
  18. const classifyIdDetail = params => { return http.get('/report/classifyIdDetail',params); }; //通过二级分类id获取报告详情
  19. const sendTemplateMsg = params => { return http.post('/report/sendTemplateMsg',params); }; //推送消息
  20. const reportauthor = params => { return http.get('/report/author',params); }; //获取作者
  21. const getDraft = params => { return http.get('/report/getDraft',params); }; //获取草稿
  22. const autosave = params => { return http.post('/report/saveReportContent',params); }; //保存
  23. const reportSetPrepublish=params=>{return http.post('/report/pre_publish',params);};//报告设置定时发布
  24. const classifylist = params => { return http.get('/classify/list',params); }; //获取分类列表
  25. const classifyparent = params => { return http.get('/classify/parent',params); }; //获取父级分类
  26. const classifyadd = params => { return http.post('/classify/add',params); }; //新增分类
  27. const classifydelete = params => { return http.post('/classify/delete',params); }; //删除分类
  28. const classifyedit = params => { return http.post('/classify/edit',params); }; //编辑分类
  29. const checkDeleteClassify = params => { return http.get('/classify/checkDeleteClassify',params); }; //检测分类
  30. const classifyTelList = params=>{return http.get('/classify/tel_list',params)};//电话会分类
  31. const bannerlist = params => { return http.get('/banner/list',params); }; //获取banner列表
  32. const bannerupload = params => { return http.post('/banner/upload',params); }; //上传banner图
  33. const banneradd = params => { return http.post('/banner/add',params); }; //新增banner
  34. const banneredit = params => { return http.post('/banner/edit',params); }; //编辑banner
  35. const bannerdelete = params => { return http.post('/banner/delete',params); }; //删除banner
  36. const getUserUuid=()=>{return http.get('/sysuser/uuid',{})};//获取用户uuid
  37. const userLogOut = params => { return http.post('/sysuser/logout',params); }; //系统用户退出登录,用于后端清空Token
  38. /* ppt */
  39. const pptlist = params => {
  40. return http.get('/ppt/list',params);
  41. }; //获取ppt列表
  42. const pptadd = params => {
  43. return http.post('/ppt/add',params);
  44. }; //新增ppt
  45. const pptdetail = params => {
  46. return http.get('/ppt/detail',params);
  47. }; //获取ppt详情
  48. const pptedit = params => {
  49. return http.post('/ppt/edit',params);
  50. }; //编辑ppt
  51. const pptdelete = params => {
  52. return http.post('/ppt/delete',params);
  53. }; //删除ppt
  54. const base64Upload = params => {
  55. return http.post('/ppt/base64Upload',params);
  56. }; //上传base64图片 img 是 string 图片base64字符串
  57. /* ppt上传 */
  58. const pptUpload = params => {
  59. return http.post('/ppt/base64Upload/batch',params);
  60. }
  61. /* resource_id 是 int 策略组提供的资源id
  62. ppt_id */
  63. /* 获取首页背景 */
  64. const firstBg = params => {
  65. return http.get('/ppt/getImages',params)
  66. }
  67. /* 发布 ppt_id 是 int */
  68. const pptPublish = params => {
  69. return http.post('/ppt/publish',params)
  70. }
  71. /* 客群消息推送接口 */
  72. const messagePushPost= params => {
  73. return http.post('/report/ths/sendTemplateMsg',params)
  74. }
  75. // 晨周报章节类型列表
  76. const dayWeekReportChapterList=params=>{
  77. return http.get('/report/getDayWeekReportChapterTypeList',params)
  78. }
  79. //新增晨周报
  80. const addDayWeekReport=params=>{
  81. return http.post('/report/addDayWeekReport',params)
  82. }
  83. //编辑晨周报
  84. const editDayWeekReport=params=>{
  85. return http.post('/report/editDayWeekReport',params)
  86. }
  87. // 晨周报章节列表
  88. const dayWeekChapterList=params=>{
  89. return http.get('/report/getReportChapterList',params)
  90. }
  91. //章节标签列表
  92. const chapterTrendTagList=()=>{
  93. return http.get('/report/getChapterTrendTag',{})
  94. }
  95. //编辑章节标签
  96. const editChapterTrendTag=params=>{
  97. return http.post('/report/editChapterTrendTag',params)
  98. }
  99. //晨报周报章节详情
  100. const chapterDetail=params=>{
  101. return http.get('/report/getDayWeekChapter',params)
  102. }
  103. //晨报数据指标列表
  104. const dayTicketList=params=>{
  105. return http.get('/report/getDayReportTickerList',params)
  106. }
  107. //保存晨报周报章节报告
  108. const saveChapterReport=params=>{
  109. return http.post('/report/editDayWeekChapter',params)
  110. }
  111. //获取晨报/周报上一篇内容
  112. const getChapterReportBefore=params=>{
  113. return http.get('/report/getLastDayWeekReportChapter',params)
  114. }
  115. //判断晨报周报当前章节是否为最后一篇发布的
  116. const getChapterReportIsLast=params=>{
  117. return http.get('/report/isLastDayWeekReportChapter',params)
  118. }
  119. //发布晨报周报章节
  120. const publishChapterReport=params=>{
  121. return http.post('/report/publishDayWeekReportChapter',params)
  122. }
  123. //发布晨报周报
  124. const publishDayOrWeekReport=params=>{
  125. return http.post('/report/publishDayWeekReport',params)
  126. }
  127. //晨报周报更新暂停的时间
  128. const dayWeekPauseTime=params=>{
  129. return http.get('/report/getDayWeekReportPauseTime',{})
  130. }
  131. //晨报周报设置更新规则
  132. const dayWeekUpdateRule=params=>{
  133. return http.post('/report/setDayWeekReportUpdateRule',params)
  134. }
  135. // 周报校验音频
  136. const weekReportValidAudio=params=>{
  137. return http.get('/report/CheckDayWeekReportChapterVideo',params)
  138. }
  139. const chapterQRCodeImg=params=>{
  140. return http.post('/report/getSunCode',params)
  141. }
  142. //上传阿里云 oss获取临时票据
  143. /**
  144. * @param {*} params.StorageSource number 1:oss 2:minio
  145. * @returns
  146. */
  147. const getOSSSign=params=>{
  148. return http.get('/resource/oss/get_sts_token',params)
  149. }
  150. /* 推送客户群设置 */
  151. // 获取待推送报告类型
  152. /**
  153. * @returns
  154. * List - 报告类型列表
  155. *
  156. */
  157. const getBeingPushedReportType=()=>{
  158. return http.get('/yb/ths_send/report_type',{})
  159. }
  160. // 获取待推送列表
  161. /**
  162. *
  163. * @param {
  164. * Title 推送标题
  165. * ReportType 内容类型
  166. * CreateTimeStart 创建开始日期
  167. * CreateTimeEnd 创建结束日期
  168. * PushTimeStart 推送开始日期
  169. * PushTimeEnd 推送结束日期
  170. * PageSize 每页条数
  171. * CurrentIndex 当前页数
  172. * } params
  173. * @returns
  174. */
  175. const getBeingPushedReportList=params=>{
  176. return http.get('/yb/ths_send/list',params)
  177. }
  178. // 设置推送时间
  179. /**
  180. * @param {
  181. * SendId 序号
  182. * PushTime 新的推送时间
  183. * } params
  184. * @returns
  185. */
  186. const setPushingTime=params=>{
  187. return http.post('/yb/ths_send/modify_push_time',params)
  188. }
  189. //研报标记状态
  190. /**
  191. *
  192. * @param {
  193. * Status 编辑状态
  194. * ReportId 报告ID
  195. * } params
  196. * @returns
  197. */
  198. const markReport = params =>{
  199. return http.post('/report/mark',params)
  200. }
  201. // 获取章节类型列表
  202. /**
  203. * @param params.ReportType Enum-报告类型:day-晨报;week-周报
  204. * @param params.PageSize Integer-每页条数
  205. * @param params.CurrentIndex Integer-当前页数
  206. * @returns 章节类型列表
  207. */
  208. const getchapterTypeList=params=>{
  209. return http.get('/report/chapter_type/list',params)
  210. }
  211. // 新增章节类型
  212. /**
  213. * @param params.ReportChapterTypeName String-章节名称
  214. * @param params.Sort Integer-排序
  215. * @param params.ReportType Enum-报告类型:day-晨报;week-周报
  216. * @param params.SelectedImage String-选中的icon
  217. * @param params.UnselectedImage String-未选中的icon
  218. * @param params.WordsImage String-带字的icon
  219. * @param params.EditImgUrl String-后台-章节列表封面图
  220. * @param params.IsShow Enum-小程序端是否展示:0-隐藏;1-显示
  221. */
  222. const addChapterType=params=>{
  223. return http.post('/report/chapter_type/add',params)
  224. }
  225. // 编辑章节类型
  226. /**
  227. * @param params.ReportChapterTypeId Integer-章节ID
  228. * @param params.ReportChapterTypeName String-章节名称
  229. * @param params.Sort Integer-排序
  230. * @param params.ReportType Enum-报告类型:day-晨报;week-周报
  231. * @param params.SelectedImage String-选中的icon
  232. * @param params.UnselectedImage String-未选中的icon
  233. * @param params.WordsImage String-带字的icon
  234. * @param params.EditImgUrl String-后台-章节列表封面图
  235. * @param params.IsShow Enum-小程序端是否展示:0-隐藏;1-显示
  236. */
  237. const editChapterType=params=>{
  238. return http.post('/report/chapter_type/edit',params)
  239. }
  240. // 删除章节
  241. /**
  242. * @param params.ReportChapterTypeId Integer-章节ID
  243. */
  244. const deleteChapterType=params=>{
  245. return http.post('/report/chapter_type/del',params)
  246. }
  247. // 获取章节类型的权限列表
  248. /**
  249. * @param params.ReportChapterTypeId Integer-章节ID
  250. * @returns 权限列表
  251. */
  252. const getchapterTPermissionList=params=>{
  253. return http.get('/report/chapter_type/permission_list',params)
  254. }
  255. // 设置章节类型的权限
  256. /**
  257. * @param params.ReportChapterTypeId Integer-章节ID
  258. * @param params.ChartPermissionIdList Array<Integer>-权限IDs
  259. */
  260. const setchapterTPermission=params=>{
  261. return http.post('/report/chapter_type/auth_setting',params)
  262. }
  263. //章节启用\禁用
  264. const setChapterEnable=params=>{
  265. return http.post('/report/chapter_type/enabled/set',params)
  266. }
  267. //章节拖动排序
  268. const setChapterSort=params=>{
  269. return http.post('/report/chapter_type/move',params)
  270. }
  271. // 同时推送客群和模板消息
  272. const reportMessageSend=params=>{
  273. return http.post('/report/sendMsg',params)
  274. }
  275. // 获取商家code
  276. const getBusinessCode=params=>{
  277. return http.get('/business_conf/code_encrypt',params)
  278. }
  279. // 获取商家code "ActiveTime":99
  280. const recordActiveLogin=params=>{
  281. return http.post('/eta_trial/user/login_duration',params)
  282. }
  283. /**
  284. * 获取动态配配置 系统内部动态链接
  285. * @param {*} params
  286. */
  287. const getPublicSettingsApi = params => {
  288. return http.get('/system/config')
  289. }
  290. /**
  291. * 真·获取公共配置
  292. * @param {*} params
  293. */
  294. const getRealPublicSettings = params => {
  295. return http.get('/sysuser/public_config')
  296. }
  297. // 下载文件公共接口
  298. const apiDownloadResource=params=>{
  299. return http.get('/resource/file/download',params,'blob')
  300. }
  301. // 中英文研报、智能研报转pdf和长图
  302. const report2PdfImg=params=>{
  303. return http.post('/smart_report/get_pdf_url',params)
  304. }
  305. /* 据cookie ai_user静默登录 */
  306. export const loginTransferByCookie = params => {
  307. return http.post('/user_login/username_login',params)
  308. }
  309. export {
  310. userLogin,
  311. modifyPwd,
  312. checkPwd,
  313. timeOnPage,
  314. reportlist,
  315. reportpublish,
  316. reportpublishcancle,
  317. voiceupload,
  318. resourceVoiceupload,
  319. reportadd,
  320. reportedit,
  321. reportdelete,
  322. reportdetail,
  323. classifyIdDetail,
  324. sendTemplateMsg,
  325. reportauthor,
  326. getDraft,
  327. autosave,
  328. reportSetPrepublish,
  329. classifylist,
  330. classifyparent,
  331. classifyadd,
  332. classifydelete,
  333. classifyedit,
  334. checkDeleteClassify,
  335. bannerlist,
  336. bannerupload,
  337. banneradd,
  338. banneredit,
  339. bannerdelete,
  340. pptlist,
  341. pptadd,
  342. pptdetail,
  343. pptedit,
  344. pptdelete,
  345. base64Upload,
  346. pptUpload,
  347. firstBg,
  348. pptPublish,
  349. messagePushPost,
  350. dayWeekReportChapterList,
  351. addDayWeekReport,
  352. dayWeekChapterList,
  353. chapterTrendTagList,
  354. editChapterTrendTag,
  355. editDayWeekReport,
  356. chapterDetail,
  357. dayTicketList,
  358. saveChapterReport,
  359. getChapterReportBefore,
  360. getChapterReportIsLast,
  361. publishChapterReport,
  362. publishDayOrWeekReport,
  363. dayWeekPauseTime,
  364. dayWeekUpdateRule,
  365. chapterQRCodeImg,
  366. getOSSSign,
  367. classifyTelList,
  368. getBeingPushedReportType,
  369. getBeingPushedReportList,
  370. setPushingTime,
  371. markReport,
  372. getchapterTypeList,
  373. addChapterType,
  374. editChapterType,
  375. deleteChapterType,
  376. getchapterTPermissionList,
  377. setchapterTPermission,
  378. reportMessageSend,
  379. weekReportValidAudio,
  380. getUserUuid,
  381. getBusinessCode,
  382. getPublicSettingsApi,
  383. recordActiveLogin,
  384. setChapterEnable,
  385. setChapterSort,
  386. getRealPublicSettings,
  387. userLogOut,
  388. apiDownloadResource,
  389. report2PdfImg
  390. }