+ 下载
返回
@@ -54,6 +55,9 @@ import userArea from "./UserArea" //用户区域分布
import peopleGender from "./PeopleGender" //人群画像性别分析
import peopleAuthen from "./PeopleAuthen" //人群画像认证分析
import weiboAnalize from "./WeiboAnalize" //微博分析
+import {getVolumeTime,getList,getCoreDiffuse,getCoreWebsite,getSourcetypeTime,getHotWord,
+ getHottalk,getPositive,getNegative,getRegion,getSexMerge,getVAnalyze,getDiffuseZhuTi,
+ getRegionWeiBo,ToWord} from "@/api/ThemeAnalizeDec"
export default {
name: "ThemeBoard",
components: {
@@ -79,11 +83,38 @@ export default {
},
form: {
token: ''
+ },
+ downloadForm: {
+ sType: 'ZhuTiFenXiBl',
+ sGuid: '',
+ sData: {
+ getSummarize: '',
+ getVolumeTime: {Msg: '',sBase64: ''},
+ getList: [],
+ getCoreDiffuse: [],
+ getCoreWebsite: {Data: {}},
+ getSourcetypeTime: {Msg: '',sBase64: ''},
+ getHotWord: {Msg: '',sBase64: ''},
+ getHottalk: {Msg: '',sBase64: ''},
+ getAffections: {Msg: '',sBase64: ''},
+ getPositive: {Msg: '',sBase64: ''},
+ getNegative: {Msg: '',sBase64: ''},
+ getVolume: {Data:{},sBase64: ''},
+ getSex: {Msg: '',sBase64: ''}, //getSexMerge
+ getAttestation: {Msg: '',sBase64: ''}, //getSexMerge
+ getRegion: {Data:{},sBase64: ''},
+ getVAnalyze: {Msg: '',Data:{},sBase64: ''},
+ getCoreDiffuseWeiBo: [],
+ getDiffuse: {Data:{},sBase64: ''},
+ getAffectionsWeiBo: {sBase64: ''},
+ getRegionWeiBo: {Data:{},sBase64: ''},
+ }
}
}
},
created() {
- this.form = this.$route.query;
+ this.form = Object.assign({},{token: this.getToken},this.$route.query)
+ this.downloadForm.sGuid = this.$route.query.sGuid;
this.getTitleData();
},
methods: {
@@ -94,12 +125,94 @@ export default {
let obj = Object.assign({}, this.form);
getSummarizeMerge(obj).then(res => {
let data = res.data;
+ this.downloadForm.sData.getSummarize = data.Summarize;
+ this.downloadForm.sData.getAffections.Msg = data.AffectionsMsg;
let o = {
title: data.Summarize,
content: data.AffectionsMsg
};
this.themeObj = o
})
+ },
+ goDownload() {
+ Promise.all([this.doData()]).then(() => {
+ let str = JSON.stringify(this.downloadForm);
+ let obj = {
+ token: this.getToken,
+ sType: 'ZhuTiFenXiBl',
+ sJson: str
+ }
+ ToWord(obj).then(res => {
+ let url = res.data;
+ this.$notification.open({
+ message: `数据生成中`,
+ description: '请前往个人中心查看下载进度',
+ placement: 'bottomRight',
+ });
+ window.location.href=url;
+ })
+ });
+ },
+ doData() {
+ getVolumeTime(this.form).then(res => {
+ this.downloadForm.sData.getVolumeTime.Msg = res.msg;
+ });
+ let o = {
+ iPageIndex: 1,
+ iPageSize: 20,
+ iTimeType: 0
+ };
+ let obj = Object.assign({},o,this.form);
+ getList(obj).then(res => {
+ this.downloadForm.sData.getList = res.data
+ });
+ getCoreDiffuse(this.form).then(res => {
+ this.downloadForm.sData.getCoreDiffuse = res.data;
+ });
+ getCoreWebsite(this.form).then(res => {
+ this.downloadForm.sData.getCoreWebsite.Data = res.data;
+ });
+ getSourcetypeTime(this.form).then(res => {
+ this.downloadForm.sData.getSourcetypeTime.Msg = res.msg;
+ });
+ getHotWord(this.form).then(res => {
+ this.downloadForm.sData.getHotWord.Msg = res.msg;
+ });
+ getHottalk(this.form).then(res => {
+ this.downloadForm.sData.getHottalk.Msg = res.msg;
+ });
+ getPositive(this.form).then(res => {
+ this.downloadForm.sData.getPositive.Msg = res.msg;
+ });
+ getNegative(this.form).then(res => {
+ this.downloadForm.sData.getNegative.Msg = res.msg;
+ });
+ getRegion(this.form).then(res => {
+ this.downloadForm.sData.getVolume.Data = res.data;
+ });
+ getSexMerge(this.form).then(res => {
+ this.downloadForm.sData.getSex.Msg = res.data.sexMsg;
+ this.downloadForm.sData.getAttestation.Msg = res.data.attestationMsg;
+ });
+ getRegion(this.form).then(res => {
+ this.downloadForm.sData.getRegion.Data = res.data;
+ });
+ getVAnalyze(this.form).then(res => {
+ this.downloadForm.sData.getVAnalyze.Msg = res.data.getVAnalyzeMsg;
+ this.downloadForm.sData.getVAnalyze.Data = res.data.getVAnalyze;
+ });
+ getDiffuseZhuTi(this.form).then(res => {
+ let dt = {
+ total: res.data.total,
+ sum: res.data.sum,
+ volume: res.data.volume,
+ };
+ this.downloadForm.sData.getCoreDiffuseWeiBo = res.data.getCoreDiffuseWeiBo;
+ this.downloadForm.sData.getDiffuse.Data = dt;
+ });
+ getRegionWeiBo(this.form).then(res => {
+ this.downloadForm.sData.getRegionWeiBo.Data = res.data;
+ });
}
}
}
diff --git a/src/views/ThemeData/getApi.js b/src/views/ThemeData/getApi.js
index 37f648b..8b6f781 100644
--- a/src/views/ThemeData/getApi.js
+++ b/src/views/ThemeData/getApi.js
@@ -1,4 +1,4 @@
-import { getQuDao, getQingGan, getTwoTime} from "@/api/comm";
+import { getQuDao, getQingGan, getTwoTime,getToExcelField} from "@/api/comm";
import {getList} from "@/api/ThemeAnalizeDec"
export default {
//获取表格数据
@@ -11,10 +11,12 @@ export default {
this.pagination.total = res.totalNum;
let arr = [];
let ids = [];
+ let ssims = [];
let ssk = [...this.sk];
data.forEach((ele) => {
let _source = ele._source;
let id = _source.id;
+ ssims.push(ele._source.ssid);
ids.push(id);
arr.push(_source);
});
@@ -32,6 +34,10 @@ export default {
this.tbData = arr;
this.tableLoading = false;
})
+ },
+ // 获取列表
+ getListData() {
+
},
// 获取时间选项
getTime() {
@@ -74,7 +80,7 @@ export default {
})
.catch(() => {
reject(false);
- });
+ });
});
},
// 获取情感
@@ -127,4 +133,30 @@ export default {
});
this.form.sQingGan = qingGan.toString();
},
+ // 获取导出字段
+ getToExcelField(sType, token) {
+ return new Promise((resolve, reject) => {
+ getToExcelField({sType: sType, token: token}).then(res => {
+ let data = res.data;
+ let arr = [];
+ let arr1 = [];
+ data.forEach((ele) => {
+ if(ele.checked == 1) {
+ arr1.push(ele.field)
+ }
+ let obj = {
+ label: ele.name,
+ value: ele.field,
+ };
+ arr.push(obj);
+ });
+ this.checkedIds = arr1;
+ this.fileTypeChange(arr1);
+ this.plainOptions4 = arr;
+ resolve(arr);
+ }).catch(() => {
+ reject(false);
+ })
+ })
+ }
}
\ No newline at end of file
diff --git a/src/views/ThemeData/index.vue b/src/views/ThemeData/index.vue
index d957a9d..e8a0a38 100644
--- a/src/views/ThemeData/index.vue
+++ b/src/views/ThemeData/index.vue
@@ -40,9 +40,9 @@
-
共计{{totalNum}}条数据,已选中条数据
+
共计{{totalNum}}条数据,已选中{{tableAll ? totalNum : sk.length}}条数据
@@ -59,6 +59,29 @@