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