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.
 
 
 
 
 
 

44 lines
940 B

<template>
<div>
<!-- :loading="loading" -->
<uni-table ref="table" border stripe type="false" emptyText="暂无更多数据" @selection-change="selectionChange">
<uni-tr>
<uni-th width="50">序号</uni-th>
<uni-th width="60">生产码</uni-th>
<uni-th width="60">配置码</uni-th>
<uni-th width="100">批次</uni-th>
</uni-tr>
<uni-tr v-for="(item, index) in tableData" :key="index">
<uni-td>{{ item.seq }}</uni-td>
<uni-td>{{ item.produceNo }}</uni-td>
<!-- <uni-td>{{ item.projectNo }}</uni-td> -->
<uni-td>{{ item.itemCode }}</uni-td>
<uni-td>{{ item.lot }}</uni-td>
</uni-tr>
</uni-table>
</div>
</template>
<script>
export default {
name: "comtjproduct",
data() {
return {
// tableData: {}
};
},
// 此处定义传入的数据
props: {
tableData: {}
// tableData: {
// type: [],
// value: null
// }
},
}
</script>
<style>
</style>