报表确认, bug

This commit is contained in:
helloDy
2024-04-26 16:14:47 +08:00
parent e7f21456a3
commit b81c95f796
7 changed files with 57 additions and 53 deletions

View File

@@ -1,8 +1,8 @@
<!--
* @Author: zhp
* @Date: 2024-04-18 10:01:33
* @LastEditTime: 2024-04-26 10:44:00
* @LastEditors: zhp
* @LastEditTime: 2024-04-26 15:22:57
* @LastEditors: DY
* @Description:
-->
<template>
@@ -12,14 +12,14 @@
background: '#F2F4F9',
color: '#606266'
}" class="baseTable" :max-height="tableH" id="exportTable" :data="tableData" style="width: 100%">
<el-table-column v-for="item in tableProps" :prop="item.prop" :label="item.label" align="center">
<el-table-column v-for="it in item.children" :prop="it.prop" :label="it.label" align="center">
<el-table-column v-for="(item, index) in tableProps" :key="index" :prop="item.prop" :label="item.label" align="center">
<el-table-column v-for="(it, indexNo) in item.children" :key="indexNo" :prop="it.prop" :label="it.label" align="center">
</el-table-column>
</el-table-column>
</el-table>
<el-table class="baseTable" :max-height="tableH" id="exportTableChild" :data="tableDataChild" style="width: 100%">
<el-table-column v-for="item in tablePropsChild" :prop="item.prop" :label="item.label" align="center">
<el-table-column v-for="it in item.children" :prop="it.prop" :label="it.label" align="center">
<el-table-column v-for="(item, indexn) in tablePropsChild" :key="indexn" :prop="item.prop" :label="item.label" align="center">
<el-table-column v-for="(it, indexi) in item.children" :key="indexi" :prop="it.prop" :label="it.label" align="center">
</el-table-column>
</el-table-column>
</el-table>
@@ -205,7 +205,7 @@ export default {
labelField: 'name',
valueField: 'id',
param: 'lineId',
multiple:true,
// multiple:true,
filterable: true
},
{