Commit eaf0a8db authored by Kimber's avatar Kimber

'update'

parent 24583cf1
"version": "1.118",更新内容:
预警列表添加解除时间列
"version": "1.119", time: 2024/7/13(周六)
更新内容: 添加爆破震动历史记录页面
"version": "1.120",更新内容: 2024/8/10(周六)
为防止环境监测模块名称过长超出边界,添加对设备名称的过滤,只显示设备类型
"version": "1.121",2024/9/29(周日)
更新内容: 对大屏模块添加自动播放控制, 控制字段为 autoplay, 在数据库的 sys_views 表中, true 表示自动播放
......@@ -153,7 +153,7 @@ export default {
methods: {
createViews(item){
this.list = item.children;this.config.interval = item.interval;
item.autoplay && (this.config.autoplay = item.autoplay);
(item.autoplay !== void 0) && (this.config.autoplay = item.autoplay);
var carouselCtn = this.$el.firstElementChild;
return new Promise((resolve, reject) => {
this.$nextTick(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment