返回

前端工作总结270-el-table使用

发布时间:2023-12-13 03:16:16 301
<template>
<el-dialog
title="修改记录"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose">
<el-table
:data="tableData"
style="width: 100%">
<el-table-column
prop="name"
label="任务名称"
width="180">
</el-table-column>
<el-table-column
prop="username"
label="修改人">
</el-table-column>
<el-table-column
prop="start_time"
label="创建时间">
</el-table-column>
<el-table-column
prop="updated_at"
label="更新时间">
</el-table-column>
</el-table>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="dialogVisible = false">关闭</el-button>
</span>
</el-dialog>
</template>
<script>
export default {
name:"ResetList",
data() {
return {
tableData:[],
dialogVisible: false
};
},

methods: {
show(record){
this.tableData=record
console.log(record)
/* this.id=id*/
this.dialogVisible=true
/* getAction("/task",).then(res=>{
console.log(res)
let List=[]
res.data.items.map((value,index)=>{
/!* console.log(value.task_recode)*!/
List.push({...value.task_recode})
})
this.tableData=List
console.log(this.tableData)
})*/
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
}
}
};
</script>



特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线
下一篇
前端工作总结268-js日期操作 2023-12-13 00:18:12