|
@@ -196,28 +196,14 @@ export default {
|
|
|
if (item.analysis_status !== 2) {
|
|
|
return this.$message.warning('当前数据解析失败,请重新解析');
|
|
|
}
|
|
|
- window.open(
|
|
|
- this.$router.resolve({
|
|
|
- path: '/textanalysis/Result',
|
|
|
- query: {
|
|
|
- // partition_key: item.partition_key,
|
|
|
- // subject_words: item.subject_words,
|
|
|
- // word_text_count: item.word_text_count,
|
|
|
- // word_count: item.word_count,
|
|
|
- // vocabulary_text_count: item.vocabulary_text_count,
|
|
|
- // vocabulary_count: item.vocabulary_count,
|
|
|
- // pinyin_count: item.pinyin_count,
|
|
|
- // pinyin_text_count: item.pinyin_text_count,
|
|
|
- // pinyin_difficulty: item.pinyin_difficulty,
|
|
|
- // word_difficulty: item.word_difficulty,
|
|
|
- // vocabulary_difficulty: item.vocabulary_difficulty,
|
|
|
- type: '文本分析',
|
|
|
- id: item.id,
|
|
|
- userID: this.userID,
|
|
|
- },
|
|
|
- }).href,
|
|
|
- '_blank',
|
|
|
- );
|
|
|
+ this.$router.push({
|
|
|
+ path: '/textanalysis/Result',
|
|
|
+ query: {
|
|
|
+ type: '文本分析',
|
|
|
+ id: item.id,
|
|
|
+ userID: this.userID,
|
|
|
+ },
|
|
|
+ });
|
|
|
},
|
|
|
/**
|
|
|
* 删除一条记录
|