@@ -179,6 +179,9 @@ export default {
data() {
return {
myThemeArr: [],
+ //
+ activeMode: 0,
+ activeAnd: 0,
//新增对话框
visible: false,
modalObj: {
@@ -257,7 +260,7 @@ export default {
.tab-pane {
display: flex;
flex-wrap:wrap;
- justify-content: space-between;
+ justify-content: flex-start;
align-items: center;
}
.card-items {
@@ -265,7 +268,8 @@ export default {
height: 240px;
background: linear-gradient(180deg, #0088c9 0%, #001c43 100%);
border-radius: 4px;
- margin-top: 24px;
+ margin-top: 16px;
+ margin-right: 16px;
border: 2px solid #0091ff;
.card-item-top {
width: 100%;
@@ -280,7 +284,7 @@ export default {
}
.cid-data {
display: flex;
- justify-content: space-between;
+ justify-content: flex-start;
.s1 {
width: 33%;
display: block;
diff --git a/src/views/ThemeAnalize/tbEvent.js b/src/views/ThemeAnalize/tbEvent.js
index 4cb4ca6..e59b4c8 100644
--- a/src/views/ThemeAnalize/tbEvent.js
+++ b/src/views/ThemeAnalize/tbEvent.js
@@ -53,7 +53,16 @@ export default {
getSchemeDataByGuid(obj).then(res => {
let data = res.data;
this.addForm = data;
- this.selTime = [data.StartTime, data.EndTime]
+ this.selTime = [data.StartTime, data.EndTime];
+ if(data.DetailsData[0].IsAdvancedQuery == 1) {
+ this.changeMode(1)
+ } else if(data.DetailsData[0].IsAdvancedQuery == 2) {
+ this.changeMode(0);
+ this.handlerHH(1);
+ } else {
+ this.changeMode(0);
+ this.handlerHH(0);
+ }
this.doCombo();
this.doCombo2();
this.modalObj.visible = true;
@@ -142,16 +151,19 @@ export default {
this.mode = activeTab;
if(this.isHigh != 1 && activeTab == 0) {
this.addForm.DetailsData[0].IsAdvancedQuery = 0;
+ this.activeAnd = 0;
this.doCombo();
}
if(this.isHigh != 1 && activeTab == 1) {
this.addForm.DetailsData[0].IsAdvancedQuery = 2;
+ this.activeAnd = 1;
this.doCombo2();
};
},
changeMode(activeTab) {
this.addForm.DetailsData[0].IsAdvancedQuery = activeTab;
this.isHigh = activeTab;
+ this.activeMode = activeTab
},
//切换主题
handlerChangeTheme(n) {
@@ -166,6 +178,9 @@ export default {
//重置表单
reSet() {
this.selTime = [];
+ this.activeAnd = 0;
+ this.activeMode = 0;
+ this.isHigh = 0;
this.addForm = {
Name: "",
Classify: 0,
diff --git a/src/views/ThemeBoard/SourceDivide/index.vue b/src/views/ThemeBoard/SourceDivide/index.vue
index b8642dd..1e9c791 100644
--- a/src/views/ThemeBoard/SourceDivide/index.vue
+++ b/src/views/ThemeBoard/SourceDivide/index.vue
@@ -1,11 +1,14 @@
-
+
+
+
diff --git a/src/views/ThemeBoard/TotalVolume/index.vue b/src/views/ThemeBoard/TotalVolume/index.vue
index 9c91311..0f05f7c 100644
--- a/src/views/ThemeBoard/TotalVolume/index.vue
+++ b/src/views/ThemeBoard/TotalVolume/index.vue
@@ -2,23 +2,49 @@