摘要: <template> <div id="app"> <!-- <select v-for="(arrItem, key) in selectList" v-model="selectArr[key]" @focus="position = key" @change="selected" :key=" 阅读全文
posted @ 2021-05-28 11:32 7c89 阅读(1313) 评论(0) 推荐(0) 编辑
摘要: 在页面中需要定时刷新局部数据,在数据变化是否频繁的情况下,没有必要使用webSocket,因为数据变化频繁,数据实时变化太快看不清楚。因此页面会定时调用后台接口以达到实时刷新数据的效果。 1、在data中定义一个定时器变量,timer 2、在mounted中把定时器的复制为timer 3、页面离开前 阅读全文
posted @ 2021-05-28 10:51 7c89 阅读(668) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="myChart" :style="{ height: '400px' }"></div> </template> <script> export default { data() { return { data1: [120, 132, 101, 134, 9 阅读全文
posted @ 2021-05-28 10:43 7c89 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1、添加监听事件(addEventListener) 语法:element.addEventListener(event, function, useCapture) event:指定事件名(注意: 不要使用 "on" 前缀。 例如,使用 "click" ,而不是使用 "onclick") func 阅读全文
posted @ 2021-05-28 10:42 7c89 阅读(1079) 评论(0) 推荐(0) 编辑