Explorar el Código

echarts优化

ming hace 4 años
padre
commit
ec49d1bfcb

+ 3 - 1
App.vue

@@ -13,7 +13,9 @@
 	
 	
 	
-</script>
+</script>
+
+
 
 <style>
 	/*每个页面公共css */

+ 0 - 5
main.js

@@ -22,10 +22,5 @@ const app = new Vue({
 app.$mount()
 
 
-const BASE_URL="https://iot.usky.cn/USKYOF/USKYOF.php/Home/";
-
-// export default {  
-//  BASE_URL
-// }
 
 

+ 6 - 4
pages/index/components/chart/chart.vue

@@ -1,7 +1,6 @@
 <template>
 	<view class="content">
 		<view @click="echarts.onClick" :prop="option" :change:prop="echarts.updateEcharts" id="echarts" class="echarts"></view>
-
 	</view>
 </template>
 
@@ -35,7 +34,8 @@
 					color: ['#67e0e3', '#e062ae'],
 					tooltip: {
 						trigger: 'item',
-						formatter: "{a} <br/>{b}: {c} ({d}%)"
+						// formatter: "{b}: {c} ({d}%)",
+						formatter: "{b}: {c} "
 					},
 					title: [{ //aa标题
 						text: '{val|' + this.bindData.integratedAlarmCount + '}\n{name|' + title + '}',
@@ -159,7 +159,7 @@
 				// 动态引入较大类库避免影响页面展示
 				const script = document.createElement('script')
 				// view 层的页面运行在 www 根目录,其相对路径相对于 www 计算
-				script.src = '/static/echarts.js'
+				script.src = '/static/echarts.min.js'
 				script.onload = this.initEcharts.bind(this)
 				document.head.appendChild(script)
 			}
@@ -189,7 +189,9 @@
 		display: flex;
 		flex-direction: column;
 		align-items: center;
-		justify-content: center;
+		justify-content: center;
+		width:100%;
+		height:100%
 	}
 
 	.echarts {

+ 3 - 2
pages/index/components/chart2/chart2.vue

@@ -43,7 +43,8 @@
 					},
 					tooltip: {
 						trigger: 'item',
-						formatter: "{a} <br/>{b}: {c} ({d}%)"
+						// formatter: "{a} <br/>{b}: {c} ({d}%)"
+						formatter: "{b}: {c} "
 					},
 
 					title: [{ //aa标题
@@ -180,7 +181,7 @@
 				// 动态引入较大类库避免影响页面展示
 				const script = document.createElement('script')
 				// view 层的页面运行在 www 根目录,其相对路径相对于 www 计算
-				script.src = '/static/echarts.js'
+				script.src = '/static/echarts.min.js'
 				script.onload = this.initEcharts.bind(this)
 				document.head.appendChild(script)
 			}

+ 1 - 1
pages/index/components/chart3/chart3.vue

@@ -194,7 +194,7 @@
 				// 动态引入较大类库避免影响页面展示
 				const script = document.createElement('script')
 				// view 层的页面运行在 www 根目录,其相对路径相对于 www 计算
-				script.src = '/static/echarts.js'
+				script.src = '/static/echarts.min.js'
 				script.onload = this.initEcharts.bind(this)
 				document.head.appendChild(script)
 			}

+ 5 - 3
pages/index/index.vue

@@ -21,9 +21,10 @@
 			</view>
 			<view class="time text-center">统计时段:{{staticData.statisticalPeriod}}
 			</view>
-			<view style="height:570rpx">
-				<view v-if="Inv == 0">
+			<view style="height:570rpx" >
+				<view v-if="Inv == 0" >
 					<chart :bindData="staticData" v-if="hackReset"></chart>
+					
 				</view>
 				<view v-if="Inv == 1">
 
@@ -315,7 +316,8 @@
 			
 			
 			
-		},
+		},
+		
 		methods: {
 
 			// start

+ 1 - 1
pages/login/login.vue

@@ -13,7 +13,7 @@
 					<span class="icon iconfont right-icon">&#xe610;</span>
 				</view>
 				<view class="password-box">
-					<input type="text" placeholder="请输入验证码" v-model="verify" maxlength="6" >
+					<input type="text" placeholder="请输入验证码" v-model="verify" maxlength="5" >
 					<text class="icon iconfont left-icon">&#xe86a;</text>
 					<view @click="getVerifyCode">
 						<!-- <text class="right-icon verify">获取验证码</text> -->

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 21 - 0
static/echarts.min.js


+ 2 - 2
util/api.js

@@ -1,5 +1,5 @@
-const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/'   //(测试域名)
-// const BASE_URL='https://qhome.usky.cn/USKYOF/USKYOF.php/Home/'
+// const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/'   //(测试域名)
+const BASE_URL='https://qhome.usky.cn/USKYOF/USKYOF.php/Home/'
 // 同时发送异步代码的次数,防止一次点击中有多次请求,用于处理
 let ajaxTimes = 0;
 

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio