1
Showing
4 changed files
with
13 additions
and
25 deletions
... | @@ -19,10 +19,7 @@ | ... | @@ -19,10 +19,7 @@ |
19 | padding: 0px; | 19 | padding: 0px; |
20 | list-style: none; | 20 | list-style: none; |
21 | } | 21 | } |
22 | |||
23 | .cesium-viewer-toolbar, .cesium-viewer-animationContainer, .cesium-viewer-bottom, .cesium-viewer-fullscreenContainer { | 22 | .cesium-viewer-toolbar, .cesium-viewer-animationContainer, .cesium-viewer-bottom, .cesium-viewer-fullscreenContainer { |
24 | display: none !important; | 23 | display: none !important; |
25 | } | 24 | } |
26 | |||
27 | |||
28 | </style> | 25 | </style> | ... | ... |
... | @@ -60,7 +60,6 @@ | ... | @@ -60,7 +60,6 @@ |
60 | <el-color-picker v-model="noColor"></el-color-picker> | 60 | <el-color-picker v-model="noColor"></el-color-picker> |
61 | </div> | 61 | </div> |
62 | </div> | 62 | </div> |
63 | |||
64 | <div class="func-btn"> | 63 | <div class="func-btn"> |
65 | <div class="btn-wrapper add-bg" @click="startAnalysis"> | 64 | <div class="btn-wrapper add-bg" @click="startAnalysis"> |
66 | <img style="width: 20px; height: 20px; margin: 0 5px 0 44px" src="../assets/icon_开始分析.png" alt=""> | 65 | <img style="width: 20px; height: 20px; margin: 0 5px 0 44px" src="../assets/icon_开始分析.png" alt=""> |
... | @@ -92,7 +91,6 @@ | ... | @@ -92,7 +91,6 @@ |
92 | noColor: 'rgba(255, 69, 0, 0.68)', // 不可见区域颜色 | 91 | noColor: 'rgba(255, 69, 0, 0.68)', // 不可见区域颜色 |
93 | 92 | ||
94 | isXmbj: true, | 93 | isXmbj: true, |
95 | // isAnalysis: true | ||
96 | } | 94 | } |
97 | }, | 95 | }, |
98 | mounted() {}, | 96 | mounted() {}, |
... | @@ -103,12 +101,8 @@ | ... | @@ -103,12 +101,8 @@ |
103 | handleChange() { | 101 | handleChange() { |
104 | 102 | ||
105 | }, | 103 | }, |
106 | startAnalysis() { | 104 | startAnalysis() {}, |
107 | // this.isAnalysis = true; | 105 | stopAnalysis() {}, |
108 | }, | ||
109 | stopAnalysis() { | ||
110 | // this.isAnalysis = false; | ||
111 | }, | ||
112 | handleIsXmbj(flag) { | 106 | handleIsXmbj(flag) { |
113 | this.isXmbj = flag; | 107 | this.isXmbj = flag; |
114 | } | 108 | } | ... | ... |
... | @@ -20,14 +20,14 @@ | ... | @@ -20,14 +20,14 @@ |
20 | 20 | ||
21 | <div class="func-input"> | 21 | <div class="func-input"> |
22 | <span>开始时间</span> | 22 | <span>开始时间</span> |
23 | <el-time-picker style="margin:0 12px; width: 245px;" v-model="staTime" | 23 | <el-time-picker style="margin:0 12px; width: 245px;" v-model="staTime" :picker-options="pickerOptions" |
24 | :picker-options="pickerOptions" placeholder="选择开始时间"> | 24 | placeholder="选择开始时间"> |
25 | </el-time-picker> | 25 | </el-time-picker> |
26 | </div> | 26 | </div> |
27 | <div class="func-input"> | 27 | <div class="func-input"> |
28 | <span>结束时间</span> | 28 | <span>结束时间</span> |
29 | <el-time-picker style="margin:0 12px; width: 245px;" v-model="endTime" | 29 | <el-time-picker style="margin:0 12px; width: 245px;" v-model="endTime" :picker-options="pickerOptions" |
30 | :picker-options="pickerOptions" placeholder="选择结束时间"> | 30 | placeholder="选择结束时间"> |
31 | </el-time-picker> | 31 | </el-time-picker> |
32 | </div> | 32 | </div> |
33 | 33 | ||
... | @@ -82,12 +82,12 @@ | ... | @@ -82,12 +82,12 @@ |
82 | components: {}, | 82 | components: {}, |
83 | data() { | 83 | data() { |
84 | return { | 84 | return { |
85 | isCF: true, // 春分 | 85 | // isCF: true, // 春分 |
86 | isXZ: false, // 夏至 | 86 | // isXZ: false, // 夏至 |
87 | isQF: false, // 秋分 | 87 | // isQF: false, // 秋分 |
88 | isLD: false, // 立冬 | 88 | // isLD: false, // 立冬 |
89 | isDZ: false, // 冬至 | 89 | // isDZ: false, // 冬至 |
90 | keepTqArr: ['isCF', 'isXZ', 'isQF', 'isLD', 'isDZ'], | 90 | // keepTqArr: ['isCF', 'isXZ', 'isQF', 'isLD', 'isDZ'], |
91 | 91 | ||
92 | anslysisTime: '', | 92 | anslysisTime: '', |
93 | timeS: 30, // 时间间隔 | 93 | timeS: 30, // 时间间隔 |
... | @@ -103,7 +103,7 @@ | ... | @@ -103,7 +103,7 @@ |
103 | // label: this.$createElement('strong', '50%') | 103 | // label: this.$createElement('strong', '50%') |
104 | // } | 104 | // } |
105 | }, | 105 | }, |
106 | pickerOptions: { // 时间选择器 时间范围限制 | 106 | pickerOptions: { // 时间选择器 时间范围限制 |
107 | selectableRange: '00:00:00 - 23:59:59' | 107 | selectableRange: '00:00:00 - 23:59:59' |
108 | }, | 108 | }, |
109 | staTime: '', // 开始时间 | 109 | staTime: '', // 开始时间 |
... | @@ -177,7 +177,6 @@ | ... | @@ -177,7 +177,6 @@ |
177 | .box { | 177 | .box { |
178 | background: rgba(4, 10, 10, 0.58); | 178 | background: rgba(4, 10, 10, 0.58); |
179 | box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.5); | 179 | box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.5); |
180 | /* filter: blur(10px); */ | ||
181 | height: 100px; | 180 | height: 100px; |
182 | position: absolute; | 181 | position: absolute; |
183 | width: 100%; | 182 | width: 100%; |
... | @@ -217,7 +216,6 @@ | ... | @@ -217,7 +216,6 @@ |
217 | .func-input { | 216 | .func-input { |
218 | display: flex; | 217 | display: flex; |
219 | align-items: center; | 218 | align-items: center; |
220 | /* justify-content: space-between; */ | ||
221 | padding: 18px 24px 0px 24px; | 219 | padding: 18px 24px 0px 24px; |
222 | font-size: 18px; | 220 | font-size: 18px; |
223 | cursor: pointer; | 221 | cursor: pointer; | ... | ... |
... | @@ -12,7 +12,6 @@ import 'element-ui/lib/theme-chalk/index.css'; | ... | @@ -12,7 +12,6 @@ import 'element-ui/lib/theme-chalk/index.css'; |
12 | 12 | ||
13 | Vue.use(ElementUI); | 13 | Vue.use(ElementUI); |
14 | 14 | ||
15 | |||
16 | Vue.prototype.$echarts = echarts; | 15 | Vue.prototype.$echarts = echarts; |
17 | Vue.prototype.config = config; | 16 | Vue.prototype.config = config; |
18 | Vue.prototype.commons = commons; | 17 | Vue.prototype.commons = commons; | ... | ... |
-
Please register or sign in to post a comment