中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.8 KiB

<template>
<div class="out_box">
<div class="title">模具使用记录</div>
<div class="bottom_box">
<el-table :data="tableData" border style="width: 100%" >
<el-table-column prop="no" align="center" label="物料编号" />
<el-table-column prop="num" align="center" label="数量" width="80" />
<el-table-column prop="name" align="center" label="责任人" />
<el-table-column prop="time" align="center" label="借出/归还时间" />
</el-table>
</div>
</div>
</template>
<script>
export default {
data(){
return{
tableData:[
{
no:'21E8-154-1514-E9',
num:5,
name:'尚玉奇',
time:'2025-09-04 11:12:23'
},
{
no:'21E8-154-1512-E2',
num:15,
name:'朱文博',
time:'2025-08-30 16:22:53'
},
{
no:'21E8-154-1524-E9',
num:2,
name:'王新宽',
time:'2025-08-12 15:21:32'
},
{
no:'21E8-154-1524-E8',
num:18,
name:'崔殿龙',
time:'2025-08-11 11:25:23'
},
{
no:'21E8-154-1524-E7',
num:12,
name:'王新宽',
time:'2025-08-10 15:23:05'
},
3 months ago
]
}
}
}
</script>
<style lang="scss" scoped>
.out_box{
padding: 20px;
.title{
font-weight: 550;
}
.bottom_box{
margin-top: 10px;
}
}
</style>