subquantity added on each bancai
This commit is contained in:
parent
5c5acf08d1
commit
681c6a43cc
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
|
||||
<router-view/>
|
||||
<router-view />
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
|
@ -317,7 +317,6 @@ export default Vue.extend({
|
||||
if (dataKey === cell.title) {
|
||||
foundMatchedString = true;
|
||||
cell.title = this.data[dataKey];
|
||||
console.log('找到', this.data[dataKey]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -454,7 +453,24 @@ export default Vue.extend({
|
||||
}
|
||||
}
|
||||
};
|
||||
const addSubTotal = (boardInfos) => {
|
||||
const addSubTotal = (
|
||||
boardInfos: Array<{
|
||||
houseName: string;
|
||||
closetName: string;
|
||||
boardNo: string;
|
||||
boardName: string;
|
||||
length: number;
|
||||
width: number;
|
||||
thickness: number;
|
||||
quantity: number;
|
||||
area: number;
|
||||
mutation: string;
|
||||
shape: string;
|
||||
direction: string;
|
||||
stripe: string;
|
||||
boardAddOn: string;
|
||||
}>,
|
||||
) => {
|
||||
let amountHolder = 0;
|
||||
|
||||
for (const row of this.infos) {
|
||||
|
Loading…
Reference in New Issue
Block a user