BUG 28005

This commit is contained in:
aixianling
2022-03-03 18:04:27 +08:00
parent aa2612514e
commit 74fa627d75

View File

@@ -22,7 +22,7 @@
</div>
<div class="card">
<b class="title" v-text="`联络方式`"/>
<view class="item flex spb" v-for="row in contract" :key="row.prop">
<view class="item" :class="{spb:!row.topLabel,flex:!row.topLabel}" v-for="row in contract" :key="row.prop">
<span class="color-999" v-text="row.label"/>
<div v-text="detail[row.prop]||'-'"/>
</view>
@@ -40,7 +40,7 @@ import {mapState} from "vuex";
export default {
name: "authInfo",
appName:"我的档案",
appName: "我的档案",
data() {
return {
detail: {},
@@ -57,9 +57,9 @@ export default {
contract: [
{label: "联系方式", prop: "phone"},
{label: "现住址", prop: "currentAreaName"},
{label: "详细住址", prop: "currentAddress"},
{label: "详细住址", prop: "currentAddress", topLabel: true},
{label: "户籍地址", prop: "householdAreaName"},
{label: "详细地址", prop: "householdAddress"},
{label: "详细地址", prop: "householdAddress", topLabel: true},
]
}
},