lixuan #1

Merged
lixuan merged 73 commits from lixuan into master 2023-02-27 16:57:43 +08:00
Showing only changes of commit 549a529174 - Show all commits

View File

@@ -123,14 +123,15 @@ export default {
iconClass: mappingDataItem.iconClass || "iconjichuziliao",
isFold: mappingDataItem.isFold || true,
listData: mappingDataItem.carItems.map((carItem) => {
let value =
(typeof carItem.value == "function" &&
carItem.value(shineData)) ||
shineData[carItem.value] == 0
? 0
: shineData[carItem.value] || carItem.fieldDefault || "";
return {
label: carItem.label,
value:
(typeof carItem.value == "function" &&
carItem.value(shineData)) ||
shineData[carItem.value] ||
carItem.fieldDefault ||
"暂无数据",
value: value,
field: carItem.value,
remark: carItem.remark,
isCopy: carItem.isCopy || false,