|
@ -153,7 +153,7 @@ const initSelectSta = () => { |
|
|
if (item.field != 'action') { |
|
|
if (item.field != 'action') { |
|
|
checkedDataList.value.push(item.label) |
|
|
checkedDataList.value.push(item.label) |
|
|
_showTableColumns.push(_myTableColumns.find(myItem => (myItem.label == item.label))) |
|
|
_showTableColumns.push(_myTableColumns.find(myItem => (myItem.label == item.label))) |
|
|
allData.value.push(t(`ts.${item.label}`)) |
|
|
allData.value.push(t(`ts.${item.label}`).replace('ts.','')) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
@ -165,7 +165,7 @@ const initSelectSta = () => { |
|
|
if (!myTableItem.fixed) { |
|
|
if (!myTableItem.fixed) { |
|
|
if (myTableItem.field != 'action') { |
|
|
if (myTableItem.field != 'action') { |
|
|
if (allData.value.indexOf(myTableItem.label) == -1) { |
|
|
if (allData.value.indexOf(myTableItem.label) == -1) { |
|
|
allData.value.push(t(`ts.${myTableItem.label}`)) |
|
|
allData.value.push(t(`ts.${myTableItem.label}`).replace('ts.','')) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -195,7 +195,7 @@ const initSelectSta = () => { |
|
|
if (!item.fixed) { |
|
|
if (!item.fixed) { |
|
|
if (item.field != 'action') { |
|
|
if (item.field != 'action') { |
|
|
checkedDataList.value.push(item.label) |
|
|
checkedDataList.value.push(item.label) |
|
|
allData.value.push(t(`ts.${item.label}`)) |
|
|
allData.value.push(t(`ts.${item.label}`).replace('ts.','')) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|