|
@@ -13,7 +13,7 @@
|
|
|
<template slot="personnelNumber">{{ formData.personnelNumber }}</template>
|
|
|
<template slot="sex" v-if="formData.sex === 0">未知</template>
|
|
|
<template slot="sex" v-else>{{ formData.sex === 1 ? '男' : '女' }}</template>
|
|
|
- <template slot="remarks">{{ formData.remarks }}</template>
|
|
|
+ <template slot="remarks">{{ formData.remarks || '--'}}</template>
|
|
|
</template>
|
|
|
</zz-form>
|
|
|
|
|
@@ -66,12 +66,14 @@
|
|
|
<!-- 查看审核 -->
|
|
|
<template>
|
|
|
<template slot="householdType">{{ item.householdType | matchingVal(householdTypeArray) }}</template>
|
|
|
- <template slot="checkInDate">{{ item.checkInDate }}</template>
|
|
|
+ <template slot="checkInDate">{{ item.checkInDate || '--' }}</template>
|
|
|
</template>
|
|
|
</zz-form>
|
|
|
|
|
|
<div class="block-title car" v-for="(items, indexs) in item.parkingList" :key="indexs">
|
|
|
- <div class="floor list-title">{{ `${items.garageName}${items.partitionName}-${items.parkingNumber}` }}</div>
|
|
|
+ <div class="floor list-title">
|
|
|
+ {{ `${items.garageName}${items.areaName || items.partitionName || ''}-${items.parkingNumber}` }}
|
|
|
+ </div>
|
|
|
<img class="bg-img" src="@/assets/img/ownerManagement/bg_card@2x.png" alt="" />
|
|
|
<img class="bg-imgIoc" src="@/assets/img/ownerManagement/icon_car@2x.png" alt="" />
|
|
|
</div>
|
|
@@ -104,7 +106,7 @@ export default {
|
|
|
},
|
|
|
filters: {
|
|
|
matchingVal(val, arr) {
|
|
|
- let v = '';
|
|
|
+ let v = '--';
|
|
|
if (!!val) {
|
|
|
arr.forEach((item) => {
|
|
|
if (!!item.status && item.status === val) {
|