heyujie
2021-06-25 327edd8bcb1c109a73491fff0129281fd22c0f2a
修改postform方式
2个文件已修改
6 ■■■■■ 已修改文件
src/api/shuohuang.ts 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/shuohuang.ts
@@ -1,4 +1,6 @@
import request from '@/scripts/httpRequest'
import qs from "qs";
//初始化查询
export const getlstInit = (query: any) =>
@@ -28,7 +30,7 @@
  request({
    url: '/data/api-c/lkg/updateFollow',
    method: 'post',
    data
    data: qs.stringify(data)
  })
export const getRelatedVideoInfo = (query: any) =>
  request({
src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
@@ -694,7 +694,7 @@
      }).then((res) => {
        this.$notify({
          type: "success",
          message: "已添加关注!",
          message:  data.IsFollow == "0"? "已添加关注!":"已取消关注!",
        });
      });
    },