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对象中的数据渲染上去,每天中的四条数据都必须在使用鼠标的hover事件后出现编辑和重置两个按钮,代码怎么写
时间: 2023-12-06 20:44:44 浏览: 37
first-timers-guide:初学者指南集
首先,我们可以在模板中使用 `v-for` 指令来遍历一周内的每一天,并使用 `v-if` 指令来判断该天是否有数据。然后,我们可以在每天的数据中再次使用 `v-for` 指令来遍历该天内的所有 timer 对象,并将它们渲染出来。
接下来,我们可以在每个 timer 对象上添加鼠标悬停事件,使其显示编辑和重置按钮。为了实现这一点,我们可以使用 `v-show` 指令来控制按钮的显示和隐藏。当鼠标悬停在 timer 对象上时,我们将 `editBtnVisible` 和 `resetBtnVisible` 变量设置为 `true`,当鼠标离开时,我们将变量设置为 `false`。
最后,我们可以为编辑和重置按钮添加点击事件,以便在用户点击这些按钮时执行相应的操作。
下面是一个示例代码:
```html
<template>
<div>
<el-table :data="tableData">
<el-table-column prop="week" label="Week"></el-table-column>
<el-table-column prop="timestamp" label="Timestamp"></el-table-column>
<el-table-column label="Timers">
<template slot-scope="scope">
<div v-for="(timer, index) in scope.row.timers" :key="index">
<span>{{ timer.startTime }} - {{ timer.stopTime }}</span>
<el-button v-show="editBtnVisible[index]" @click="editTimer(scope.row, timer)">Edit</el-button>
<el-button v-show="resetBtnVisible[index]" @click="resetTimer(scope.row, timer)">Reset</el-button>
</div>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
import { electricQuery } from "@/api/electric";
const ELECTRIC_ID = "13675259";
export default {
data() {
return {
tableData: [],
editBtnVisible: [],
resetBtnVisible: []
};
},
async mounted() {
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]);
this.editBtnVisible.push(false);
this.resetBtnVisible.push(false);
}
})
);
}
await Promise.all(promises);
this.tableData = outputArr;
},
methods: {
editTimer(row, timer) {
// 执行编辑操作
},
resetTimer(row, timer) {
// 执行重置操作
}
}
};
</script>
```
阅读全文