async getChannel() {
await this.$http
.get('/x86/channel/')
.then((res) => {
console.log(res.data)
// data: Array(4)
// 0: {channel: 0, input: Array(1), output: {…}}
// 1: {channel: 2, input: Array(0), output: null}
// 2: {channel: 3, input: Array(0), output: null}
// 3: {channel: 22, input: Array(0), output: null}
this.tableData = res.data.map((item) => {
return {
id: item.channel,
flag: item.status === 'RUNNING' ? true : false,
date: item.date,
name: item.user,
runtime: item.uptime === ''?'0:00:00':item.uptime,
address: '上海市普陀区金沙江路 1517 弄',
tag: '公司', //默认数据
text: item.describe,//后端返回的数据
}
})
// return this.$message.success('请求通路成功')
})
.catch((error) => {
console.log(error)
return this.$message.error('请求通路失败')
})
修改后端返回的数据加上前端自己渲染的默认数据(后端不返回,需要使用的数据,时用)
最新推荐文章于 2023-07-23 14:00:00 发布