diff --git a/src/views/modules/quote/detail/tpCost.vue b/src/views/modules/quote/detail/tpCost.vue index 83e36d7..8d6f560 100644 --- a/src/views/modules/quote/detail/tpCost.vue +++ b/src/views/modules/quote/detail/tpCost.vue @@ -38,17 +38,8 @@ export default { }) }, flexColumnWidth (str, arr1, flag = 'max') { - // str为该列的字段名(传字符串);tableData为该表格的数据源(传变量); - // flag为可选值,可不传该参数,传参时可选'max'或'equal',默认为'max' - // flag为'max'则设置列宽适配该列中最长的内容,flag为'equal'则设置列宽适配该列中第一行内容的长度。 str = str + '' let columnContent = '' - if (!arr1 || !arr1.length || arr1.length === 0 || arr1 === undefined) { - return - } - if (!str || !str.length || str.length === 0 || str === undefined) { - return - } if (flag === 'equal') { // 获取该列中第一个不为空的数据(内容) for (let i = 0; i < arr1.length; i++) { @@ -63,7 +54,7 @@ export default { let index = 0 for (let i = 0; i < arr1.length; i++) { if (arr1[i][str] === null) { - return + continue } const now_temp = arr1[i][str] + '' const max_temp = arr1[index][str] + '' @@ -71,31 +62,43 @@ export default { index = i } } - columnContent = arr1[index][str] + columnContent = arr1[index][str]+'' } - // console.log('该列数据[i]:', columnContent) - // 以下分配的单位长度可根据实际需求进行调整 let flexWidth = 0 - for (const char of columnContent) { + if (columnContent && columnContent.length > 0){ + for (const char of columnContent) { + if ((char >= 'A' && char <= 'Z') || (char >= 'a' && char <= 'z')) { + // 如果是英文字符,为字符分配8个单位宽度 + flexWidth += 8 + } else if (char >= '\u4e00' && char <= '\u9fa5') { + // 如果是中文字符,为字符分配15个单位宽度 + flexWidth += 15 + } else { + // 其他种类字符,为字符分配8个单位宽度 + flexWidth += 8 + } + } + } + let flexWidthStr = 0 + for (const char of str){ if ((char >= 'A' && char <= 'Z') || (char >= 'a' && char <= 'z')) { // 如果是英文字符,为字符分配8个单位宽度 - flexWidth += 8 + flexWidthStr += 8 } else if (char >= '\u4e00' && char <= '\u9fa5') { // 如果是中文字符,为字符分配15个单位宽度 - flexWidth += 15 + flexWidthStr += 15 } else { // 其他种类字符,为字符分配8个单位宽度 - flexWidth += 8 + flexWidthStr += 8 } } - if (flexWidth < 80) { + if (flexWidthStr > flexWidth){ + flexWidth = flexWidthStr + } + if (flexWidth < 120) { // 设置最小宽度 - flexWidth = 80 + flexWidth = 120 } - // if (flexWidth > 250) { - // // 设置最大宽度 - // flexWidth = 250 - // } return flexWidth + 'px' } }, @@ -120,8 +123,8 @@ export default {