This commit is contained in:
parent
a12bfc4414
commit
d96ad0e353
|
@ -331,13 +331,21 @@
|
||||||
<div class="my-label-title">{{ dataMyTag.title }}</div>
|
<div class="my-label-title">{{ dataMyTag.title }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="my-info">
|
<div class="my-info">
|
||||||
<div class="my-info-item" v-if="dataMyTag.title == '学习'">
|
<div
|
||||||
<div class="my-info-label" style="min-width: 40px">学历</div>
|
class="my-info-item"
|
||||||
|
v-if="dataMyTag.title == '学习' && baseInfo.eduPhase"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="my-info-label"
|
||||||
|
style="min-width: 40px"
|
||||||
|
>
|
||||||
|
学历
|
||||||
|
</div>
|
||||||
<div class="my-info-content">
|
<div class="my-info-content">
|
||||||
<p>{{ baseInfo.eduPhase || "" }}</p>
|
<p>{{ baseInfo.eduPhase || "" }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="my-info-item" v-if="dataMyTag.title == '婚育'">
|
<div class="my-info-item" v-if="dataMyTag.title == '婚育' && baseInfo.maritalStatus">
|
||||||
<div class="my-info-label">婚姻状况</div>
|
<div class="my-info-label">婚姻状况</div>
|
||||||
<div class="my-info-content">
|
<div class="my-info-content">
|
||||||
<p>{{ baseInfo.maritalStatus || "" }}</p>
|
<p>{{ baseInfo.maritalStatus || "" }}</p>
|
||||||
|
@ -356,9 +364,7 @@
|
||||||
>
|
>
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="my-info-content">
|
||||||
class="my-info-content"
|
|
||||||
>
|
|
||||||
<p>{{ pd(item.label, rightList[item.property]) }}</p>
|
<p>{{ pd(item.label, rightList[item.property]) }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -903,26 +909,37 @@ const getTable = (url, csh) => {
|
||||||
// 如果数据为空,则清空列表
|
// 如果数据为空,则清空列表
|
||||||
rightList.value.length = 0;
|
rightList.value.length = 0;
|
||||||
} else {
|
} else {
|
||||||
// 如果数据不为空,则将数据赋值给列表
|
// // 如果数据不为空,则将数据赋值给列表
|
||||||
rightList.value = tableType.data[0];
|
// rightList.value = tableType.data[0];
|
||||||
for (const key in tableType.data[0]) {
|
// for (const key in tableType.data[0]) {
|
||||||
if (
|
// if (
|
||||||
tableType.data[0][key] == null ||
|
// tableType.data[0][key] == null ||
|
||||||
tableType.data[0][key] == ""
|
// tableType.data[0][key] == ""
|
||||||
) {
|
// ) {
|
||||||
tableType.columns.forEach((item) => {
|
// tableType.columns.forEach((item) => {
|
||||||
if (item.property == key) {
|
// if (item.property == key) {
|
||||||
item.show = false;
|
// item.show = false;
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
} else {
|
// } else {
|
||||||
tableType.columns.forEach((item) => {
|
// tableType.columns.forEach((item) => {
|
||||||
if (item.property == key) {
|
// if (item.property == key) {
|
||||||
item.show = true;
|
// item.show = true;
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
const rowData = tableType.data[0];
|
||||||
|
for (const key in rowData) {
|
||||||
|
const isEmpty = rowData[key] == null || rowData[key] === "";
|
||||||
|
tableType.columns.forEach((item) => {
|
||||||
|
if (item.property === key) {
|
||||||
|
item.show = !isEmpty;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
rightList.value = rowData; // 将数据赋值给列表
|
||||||
}
|
}
|
||||||
rightType.value = 0;
|
rightType.value = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue