vue 用原生的table怎么按照列渲染

 前面的多选框值可以附上去,后面几个要怎么赋值上去

<template>
	<a-card :bordered="false">
		<table>
			<thead>
				<tr>
					<th v-for="(list,index) in listData">{{list.week}}</th>
				</tr>
			</thead>
			<tbody>
				<tr v-for="(sj,index) in sjData" v-if="index!=0&&index<7">
					<td>{{sj.id}}</td>
					<td>
						<input type="checkbox" :checked="sj.stae" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
					<td>
						<input type="checkbox" @change="onChange(index)">
					</td>
				</tr>
			</tbody>
		</table>


	</a-card>
</template>
<script>
	export default {
		data() {
			return {
				listData: [{
						id: 0,
						week: ''
					},
					{
						id: 1,
						week: '周一'
					},
					{
						id: 2,
						week: '周二'
					},
					{
						id: 3,
						week: '周三'
					},
					{
						id: 4,
						week: '周四'
					},
					{
						id: 5,
						week: '周五'
					},
					{
						id: 6,
						week: '周六'
					},
					{
						id: 7,
						week: '周日'
					}
				],
				sjData: [{
						id: 0
					},
					{
						id: 1
					},
					{
						id: 2
					},
					{
						id: 3
					},
					{
						id: 4,
						stae: false
					},
					{
						id: 5,
						stae: true
					},
					{
						id: 6,
						stae: true
					},
					{
						id: 7
					},
					{
						id: 8,
						stae: false
					},
					{
						id: 9,
						stae: true
					},
					{
						id: 10
					},
					{
						id: 11,
						stae: true
					},
					{
						id: 12,
						stae: true
					},
					{
						id: 13,
						stae: true
					}
				]
			}
		},
		methods: {
			onChange(index) {
				console.log(index)
			}
		}
	}
</script>
<style scoped>
	th {
		background-color: #66C3FD;
		border: 1px solid #CCCCCC;
		width: 120px;
		height: 50px;
		color: #FFFFFF;
	}

	hr {
		border: 1px solid #CCCCCC;
	}

	td {
		height: 50px;
		border: 1px solid #CCCCCC;
	}
</style>

 

你的意思是周一是1-6周二7-12?

遍历tr下的第一个td元素就好,然后修改你的样式内容。