|
@@ -1181,6 +1181,13 @@
|
|
|
:align="tableColumnProperty.align"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight"
|
|
|
+ label="重量"
|
|
|
+ :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
|
|
|
+ :align="tableColumnProperty.align"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</template>
|
|
|
<template v-if="tableList.length && action == 15">
|
|
@@ -1230,6 +1237,13 @@
|
|
|
:align="tableColumnProperty.align"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight"
|
|
|
+ label="重量"
|
|
|
+ :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
|
|
|
+ :align="tableColumnProperty.align"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</template>
|
|
|
</div>
|
|
@@ -1478,6 +1492,13 @@ export default {
|
|
|
sums[12] = this.listall.oklvall;
|
|
|
}
|
|
|
}
|
|
|
+ if (this.action === 15) {
|
|
|
+ sums[3] = this.listall.alllist;
|
|
|
+ sums[4] = this.listall.allwei;
|
|
|
+ } else if (this.action === 14) {
|
|
|
+ sums[4] = this.listall.alllist;
|
|
|
+ sums[5] = this.listall.allwei;
|
|
|
+ }
|
|
|
});
|
|
|
return sums;
|
|
|
},
|