添加测试数据
This commit is contained in:
@@ -155,7 +155,7 @@
|
|||||||
AI生成
|
AI生成
|
||||||
</a-button>
|
</a-button>
|
||||||
</template>
|
</template>
|
||||||
<a-table :columns="item.columns" bordered></a-table>
|
<a-table :columns="item.columns" bordered :data-source="item.data"></a-table>
|
||||||
<!-- <div v-if="item.description" class="section-description">-->
|
<!-- <div v-if="item.description" class="section-description">-->
|
||||||
<!-- {{ item.description }}-->
|
<!-- {{ item.description }}-->
|
||||||
<!-- </div>-->
|
<!-- </div>-->
|
||||||
@@ -310,18 +310,18 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '决策事项金额',
|
title: '决策事项金额',
|
||||||
dataIndex: 'content',
|
dataIndex: 'amount',
|
||||||
key: 'content'
|
key: 'amount'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '程序程序',
|
title: '程序程序',
|
||||||
dataIndex: 'content',
|
dataIndex: 'progress',
|
||||||
key: 'content'
|
key: 'progress'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '执行情况(是/否)',
|
title: '执行情况(是/否)',
|
||||||
dataIndex: 'content',
|
dataIndex: 'done',
|
||||||
key: 'content'
|
key: 'done'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '执行效果(是否实现决策目标)',
|
title: '执行效果(是否实现决策目标)',
|
||||||
@@ -329,17 +329,14 @@
|
|||||||
{
|
{
|
||||||
title: '好',
|
title: '好',
|
||||||
dataIndex: 'goods',
|
dataIndex: 'goods',
|
||||||
key: 'goods'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '一般',
|
title: '一般',
|
||||||
dataIndex: 'goods',
|
dataIndex: 'normal',
|
||||||
key: 'goods'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '差',
|
title: '差',
|
||||||
dataIndex: 'goods',
|
dataIndex: 'bad'
|
||||||
key: 'goods'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -394,7 +391,20 @@
|
|||||||
formCommit: 30,
|
formCommit: 30,
|
||||||
rows: 8,
|
rows: 8,
|
||||||
generating: false,
|
generating: false,
|
||||||
columns: columns.value
|
columns: columns.value,
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
index: '1',
|
||||||
|
name: '测试',
|
||||||
|
content: '测试内容',
|
||||||
|
amount: '9999',
|
||||||
|
progress: '这是程序',
|
||||||
|
done: '是',
|
||||||
|
goods: '',
|
||||||
|
normal: '是',
|
||||||
|
bad: '',
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
number: '四',
|
number: '四',
|
||||||
|
|||||||
Reference in New Issue
Block a user