diff --git a/src/api/ThemeAnalizeDec/index.js b/src/api/ThemeAnalizeDec/index.js index 2bd7532..4ace5d9 100644 --- a/src/api/ThemeAnalizeDec/index.js +++ b/src/api/ThemeAnalizeDec/index.js @@ -221,9 +221,22 @@ export function getRegionWeiBo(params) { }) } -// 主题分析-看板导出 -export function ToWord(params) { - let obj = Object.assign({action: 'ToWord', sType: 'ZhuTiFenXiBl'}, params) +// 主题分析-热点资讯 +export function getSsimData(params) { + let obj = Object.assign({action: 'getSsimData', sType: ''}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 主题分析-ppt导出 +export function getToPptTask(params) { + let obj = Object.assign({action: 'getToPptTask', sType: 'ZhuTiFenXiBl'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', diff --git a/src/views/ThemeAnalize/helpContent.vue b/src/views/ThemeAnalize/helpContent.vue new file mode 100644 index 0000000..e3a08a9 --- /dev/null +++ b/src/views/ThemeAnalize/helpContent.vue @@ -0,0 +1,62 @@ + + + + + \ No newline at end of file diff --git a/src/views/ThemeAnalize/index.vue b/src/views/ThemeAnalize/index.vue index ccf69c9..9ab68dc 100644 --- a/src/views/ThemeAnalize/index.vue +++ b/src/views/ThemeAnalize/index.vue @@ -68,6 +68,12 @@
@@ -127,7 +140,7 @@ - + @@ -136,13 +149,6 @@
@@ -159,9 +165,13 @@ @@ -253,7 +267,7 @@ export default { } .card-items { width: 446px; - // height: 240px; + height: 240px; background: linear-gradient(180deg, #0088c9 0%, #001c43 100%); border-radius: 4px; margin-top: 24px; diff --git a/src/views/ThemeAnalize/tbEvent.js b/src/views/ThemeAnalize/tbEvent.js index 4c47bc3..94b4b9c 100644 --- a/src/views/ThemeAnalize/tbEvent.js +++ b/src/views/ThemeAnalize/tbEvent.js @@ -2,7 +2,6 @@ import {getSchemeDataToTheme} from "@/api/ThemeAnalize" import {setSchemeData} from "@/api/ThemeAnalize" import {delCarBigDataByGuid} from "@/api/ThemeAnalize" import {getSchemeDataByGuid} from "@/api/ThemeAnalize" -import moment from "moment"; export default { getNowData() { let obj = Object.assign({}, this.form); @@ -39,7 +38,10 @@ export default { number: 0, display: [] }; - this.comboHigh = ''; + this.combo2 = { + number: 0, + display: [] + }; this.modalObj.visible = true }, //编辑修改 @@ -52,7 +54,7 @@ export default { let data = res.data; this.addForm = data; this.doCombo(); - this.doComboHigh(); + this.doCombo2(); this.modalObj.visible = true; }) }, @@ -106,13 +108,12 @@ export default { }, //配置示例 doCombo() { - let bWord = this.addForm.DetailsData[0].AnalyzeWord.split(',') - let hWord = this.addForm.DetailsData[0].HuoWord.split(',') + let bArr = this.addForm.DetailsData[0].AnalyzeWord.replace(/,/g,','); + let bWord = bArr.split(','); + let hArr = this.addForm.DetailsData[0].HuoWord.replace(/,/g,','); + let hWord = hArr.split(','); let arr = []; let bString = ''; - // bWord.forEach(ele => { - // bString = bString + ele.trim() - // }); for(let i=0;i
- +
- +