|
|
@@ -116,8 +116,9 @@ const tableData = computed(() => {
|
|
|
let arr = []
|
|
|
const quoteResult = props.quotationObj.quoteResult
|
|
|
if (quoteResult.kindInfoVo) {
|
|
|
- for (let i = 0; i < props.quotationObj.quoteResult.kindInfoVo.length; i++) {
|
|
|
- const element = props.quotationObj.quoteResult.kindInfoVo[i];
|
|
|
+ const kindArr = quoteResult.kindInfoVo.filter(v => v.kindCode !== "J1")
|
|
|
+ for (let i = 0; i < kindArr.length; i++) {
|
|
|
+ const element = kindArr[i];
|
|
|
const obj = {
|
|
|
title: element.kindName,
|
|
|
amount: element.amount,
|