|
|
|
@ -173,8 +173,10 @@
|
|
|
|
|
<div class="selection-total-row" v-show="shownm && isHaveSelection"> |
|
|
|
|
<span>勾选合计:</span> |
|
|
|
|
<span v-for="item in selectCount" :key="item.label"> |
|
|
|
|
<span style="margin: 0 5px">{{ item.label + ':' }}</span> |
|
|
|
|
<el-text type="success">{{ item.value }}</el-text> |
|
|
|
|
<template v-if="!item.head"> |
|
|
|
|
<span style="margin: 0 5px">{{ item.label + ':' }}</span> |
|
|
|
|
<el-text type="success">{{ item.value }}</el-text> |
|
|
|
|
</template> |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -398,12 +400,15 @@ const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: nu
|
|
|
|
|
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection', 'makeCargo']); |
|
|
|
|
let newcolumnList = ref<TableColumnType[]>([]); |
|
|
|
|
watchEffect(() => { |
|
|
|
|
newcolumnList.value = []; |
|
|
|
|
props.columnList.map(item => { |
|
|
|
|
const _arr = []; |
|
|
|
|
|
|
|
|
|
props.columnList.forEach(item => { |
|
|
|
|
if (!item.head) { |
|
|
|
|
newcolumnList.value.push(item); |
|
|
|
|
_arr.push(item); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
newcolumnList.value = _arr; |
|
|
|
|
}); |
|
|
|
|
onMounted(() => { |
|
|
|
|
/* if (props.checkselect) { |
|
|
|
@ -597,32 +602,39 @@ function handleDelete(index: number, row: TableDataType) {}
|
|
|
|
|
const getSummaries = (param: any) => { |
|
|
|
|
const _arr = []; |
|
|
|
|
const { columns, data } = param; |
|
|
|
|
|
|
|
|
|
let newarr = []; |
|
|
|
|
let tji = 0; |
|
|
|
|
columns.forEach((item, index) => { |
|
|
|
|
if (item.type === 'selection') isHaveSelection.value = true; |
|
|
|
|
let _flag1 = false; |
|
|
|
|
let _flag2 = false; |
|
|
|
|
|
|
|
|
|
props.columnList.forEach((item, index) => { |
|
|
|
|
if (item.type === 0) _flag1 = true; |
|
|
|
|
if (index == 0) { |
|
|
|
|
newarr[index] = '总计'; |
|
|
|
|
newarr[0] = '总计'; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
tji = 0; |
|
|
|
|
if (props.columnList[index]?.isshowSummary) { |
|
|
|
|
console.log('item :>> ', item); |
|
|
|
|
if (item?.isshowSummary && !item.head) { |
|
|
|
|
for (let ite of data) { |
|
|
|
|
tji = computeNumber(tji, '+', Number(ite[props.columnList[index]?.prop] || 0)).result; |
|
|
|
|
tji = computeNumber(tji, '+', Number(ite[item?.prop] || 0)).result; |
|
|
|
|
} |
|
|
|
|
newarr[index] = tji; |
|
|
|
|
newarr.push(tji); |
|
|
|
|
_arr.push({ |
|
|
|
|
label: props.columnList[index]?.label, |
|
|
|
|
label: item?.label, |
|
|
|
|
value: 0, |
|
|
|
|
prop: props.columnList[index]?.prop, |
|
|
|
|
prop: item?.prop, |
|
|
|
|
head: item.head, |
|
|
|
|
}); |
|
|
|
|
// shownm.value=true |
|
|
|
|
} else { |
|
|
|
|
newarr[index] = null; |
|
|
|
|
_flag2 = true; |
|
|
|
|
} else if (!item.head) { |
|
|
|
|
newarr.push(null); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
selectCount.value = _arr; |
|
|
|
|
// console.log(columns) |
|
|
|
|
isHaveSelection.value = _flag1; |
|
|
|
|
shownm.value = _flag2; |
|
|
|
|
return newarr; |
|
|
|
|
}; |
|
|
|
|
/** 设置合并行和列 */ |
|
|
|
@ -630,11 +642,12 @@ const arraySpanMethod = row => {
|
|
|
|
|
if (props.arraySpanMethod) return props.arraySpanMethod(row); |
|
|
|
|
}; |
|
|
|
|
watchEffect(() => { |
|
|
|
|
props.columnList.map(item => { |
|
|
|
|
if (item.isshowSummary) { |
|
|
|
|
for (const iterator of props.columnList) { |
|
|
|
|
if (iterator.isshowSummary) { |
|
|
|
|
shownm.value = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// 复制文本内容 |
|
|
|
|
function copyContent(content: string) { |
|
|
|
|