electricNo : "13675259" timers : [{startTime: "13:0:0", stopTime: "14:0:0"}, {startTime: "16:0:0", stopTime: "17:0:0"},…] 0 : 一周七天,每天的数据格式是这样的{startTime: "13:0:0", stopTime: "14:0:0"} 1 : {startTime: "16:0:0", stopTime: "17:0:0"} 2 : {startTime: "16:0:0", stopTime: "0:0:0"} 3 : {startTime: "16:22:58", stopTime: "19:22:58"} timestamp : "1684380700000" type : 1 week : "1" ,使用elementUI,将下边 async getPorts () { const outputArr = [] const promises = [] for (let i = 1; i <= 7; i++) { promises.push( electricQuery({ electricId: ELECTRIC_ID, commandKey: 15, queryMode: 1, week: i }).then(({ data }) => { if (data[0]) { outputArr.push(data[0]) } }) ) } await Promise.all(promises) 这是一周的数据并且要把每天的数据中的timer对象中的数据渲染上去,每天中的四条数据都可以在鼠标移入上去后出现编辑和重置两个按钮,代码怎么写
时间: 2023-12-06 14:44:41 浏览: 63
首需要在页面中引入 ElementUI 的组件库,具体引入方法可以参考 ElementUI 的官方文档。
接下来,在 Vue 组件中定义一个名为 `getPorts` 的异步方法,该方法通过循环遍历每个星期中的每一天,并通过 `electricQuery` 方法获取该天的电力数据。如果获取到了数据,则将其存储在名为 `outputArr` 的数组中。
代码示例:
```
<template>
<div>
<div v-for="(port, index) in ports" :key="index">
<div>{{ port.timestamp }}</div>
<div v-for="(timer, timerIndex) in port.timers" :key="timerIndex">
<div>{{ timer.startTime }} - {{ timer.stopTime }}</div>
<el-button type="text" @click="editTimer(port, timer)">编辑</el-button>
<el-button type="text" @click="resetTimer(port, timer)">重置</el-button>
</div>
</div>
</div>
</template>
<script>
import { electricQuery } from '@/api/electric'
import { mapGetters } from 'vuex'
export default {
data () {
return {
ports: []
}
},
computed: {
...mapGetters([
'ELECTRIC_ID'
])
},
async mounted () {
await this.getPorts()
},
methods: {
async getPorts () {
const outputArr = []
const promises = []
for (let i = 1; i <= 7; i++) {
promises.push(
electricQuery({
electricId: this.ELECTRIC_ID,
commandKey: 15,
queryMode: 1,
week: i
}).then(({ data }) => {
if (data[0]) {
outputArr.push(data[0])
}
})
)
}
await Promise.all(promises)
this.ports = outputArr
},
editTimer (port, timer) {
// 编辑计时器
},
resetTimer (port, timer) {
// 重置计时器
}
}
}
</script>
```
在页面中通过 `v-for` 遍历渲染每个星期的电力数据。对于每个电力数据,再通过 `v-for` 遍历渲染该天的计时器数据。在每个计时器数据后面添加了两个按钮,分别为“编辑”和“重置”,点击这两个按钮后可以触发对应的方法。
在 `editTimer` 和 `resetTimer` 方法中可以编写对计时器的编辑和重置操作。具体操作方式可以根据业务需求来定。
阅读全文