semanticAnalysis.js 290 B

1234567891011121314
  1. // 语义分析模块
  2. import { get,post } from "./index";
  3. export default{
  4. /**
  5. * 获取文档对比图
  6. * @param Keyword
  7. * @param PageSize
  8. * @param CurrentIndex
  9. */
  10. compareImgList(params){
  11. return get('/semantic_analysis/compare/search',params)
  12. }
  13. }