diff --git a/src/lycomponents/iSwitchModel/index.vue b/src/lycomponents/iSwitchModel/index.vue
index 8e84bd6..f8b5dc0 100644
--- a/src/lycomponents/iSwitchModel/index.vue
+++ b/src/lycomponents/iSwitchModel/index.vue
@@ -85,6 +85,9 @@ export default {
this.chooseBrand = row;
});
this.getUserSeriesName(this.brandname);
+ //保存上次选择的值
+ this.chooseBrand = this.brandname;
+ this.chooseModel = this.modelName;
},
data() {
return {
@@ -163,7 +166,8 @@ export default {
this.showActive = row.brandid;
this.chooseBrand = row;
this.brandname = this.chooseBrand.brandname;
- this.getUserSeriesName(this.brandname)
+ this.getUserSeriesName(this.brandname);
+ this.chooseModel = null; //刷新
},
// 选择车型
handlerModel(n, row) {
diff --git a/src/views/BrandComparison/brandTonalDistribution/index.vue b/src/views/BrandComparison/brandTonalDistribution/index.vue
index 12d76ba..5ef6491 100644
--- a/src/views/BrandComparison/brandTonalDistribution/index.vue
+++ b/src/views/BrandComparison/brandTonalDistribution/index.vue
@@ -22,7 +22,7 @@
>负面
-
+
diff --git a/src/views/IndustryDataExport/tableEvent.js b/src/views/IndustryDataExport/tableEvent.js
index a7962c4..20183d5 100644
--- a/src/views/IndustryDataExport/tableEvent.js
+++ b/src/views/IndustryDataExport/tableEvent.js
@@ -116,11 +116,11 @@ export default {
// 导出弹框
handlerExport() {
this.getToExcelField(this.form.sType, this.form.token).then(() => {
- if(this.secIds.length===0 || this.secIds.length===1){
- this.execlForm.sFileName = '事件洞察-' + this.getDatetimeSs();
- } else {
- this.execlForm.sFileName = this.form.sBrand + '-' + this.form.sSeriesName + '事件洞察-' + this.getDatetimeSs();
- }
+ // if(this.secIds.length===0 || this.secIds.length===1){
+ // this.execlForm.sFileName = '事件洞察' + this.getDatetimeSs();
+ // } else {
+ this.execlForm.sFileName = this.form.sBrand + this.form.sSeriesName + '事件洞察' + this.getDatetimeSs();
+ // }
this.execlForm.sCheckedIds = this.tableAll ? '' : this.secIds.toString();
this.execlForm.iNum = this.tableAll ? this.totalNum : this.secIds.length;
this.modalObj.visible = true;
diff --git a/src/views/ModelComparison/weiboTuneComparison/index.vue b/src/views/ModelComparison/weiboTuneComparison/index.vue
index 54d16ca..b9dddbe 100644
--- a/src/views/ModelComparison/weiboTuneComparison/index.vue
+++ b/src/views/ModelComparison/weiboTuneComparison/index.vue
@@ -131,6 +131,7 @@ export default {
.wtc-inner {
width: 100%;
height: calc(100% - 48px);
+ margin-left: 18px;
display: flex;
justify-content: flex-start;
align-items: center;