|
|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div v-loading="loading">
|
|
|
<div class="white-box">
|
|
|
- <el-table class="withdraw-table" :data="tableData" style="width: 100%;" :span-method="objectSpanMethod">
|
|
|
+ <el-table class="withdraw-table" :data="tableData" :max-height="maxHeight" style="width: 100%;" :span-method="objectSpanMethod">
|
|
|
<el-table-column width="120" label="Product code" prop="SKU_CODE"></el-table-column><!--商品编号-->
|
|
|
<el-table-column width="120" label="Product Name" prop="GOODS_TITLE"></el-table-column><!--商品名称-->
|
|
|
<el-table-column width="120" label="Quantity" prop="BUY_NUMS"></el-table-column><!--数量-->
|
|
|
@@ -70,8 +70,7 @@
|
|
|
//订单号判断
|
|
|
spanArr: [], // 用于存放需要合并的行的个数
|
|
|
pos: 0, // 记录spanArr数组的下标
|
|
|
-
|
|
|
-
|
|
|
+ maxHeight: tool.getTableHeight(),
|
|
|
}
|
|
|
},
|
|
|
|