bug
This commit is contained in:
@@ -39,8 +39,8 @@
|
||||
<div class="item" @click="toUser(item)" v-for="(item,index) in list" :key="index">
|
||||
<h2 class="name">{{item.name}}<span class="status" v-if="item.status == 0">有异常</span></h2>
|
||||
<p class="color-999">{{item.idNumber}}</p>
|
||||
<p><img src="./components/img/org-icon.png" alt="">{{item.startAreaName}}</p>
|
||||
<p><img src="./components/img/blue-icon.png" alt="">{{item.arriveAreaName}}</p>
|
||||
<p><img src="./components/img/org-icon.png" alt=""><span class="start-name">{{item.startAreaName}}</span></p>
|
||||
<p><img src="./components/img/blue-icon.png" alt=""><span class="start-name">{{item.arriveAreaName}}</span></p>
|
||||
<p><img src="./components/img/time-icon.png" alt="">{{item.createTime}}</p>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
@@ -226,9 +226,13 @@ export default {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-right: 18px;
|
||||
vertical-align: middle;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
.start-name{
|
||||
display: inline-block;
|
||||
width: calc(100% - 50px);
|
||||
}
|
||||
.color-999{
|
||||
margin-bottom: 24px;
|
||||
color: #999;
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<div class="user-list">
|
||||
<div class="item">
|
||||
<h2 class="name">{{info.name}}的返乡登记信息</h2>
|
||||
<p><img src="./components/img/org-icon.png" alt="">{{info.startAreaName}}</p>
|
||||
<p><img src="./components/img/blue-icon.png" alt="">{{info.arriveAreaName}}</p>
|
||||
<p><img src="./components/img/org-icon.png" alt=""><span class="start-name">{{info.startAreaName}}</span></p>
|
||||
<p><img src="./components/img/blue-icon.png" alt=""><span class="start-name">{{info.arriveAreaName}}</span></p>
|
||||
<p><img src="./components/img/time-icon.png" alt="">{{info.createTime}}</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -222,13 +222,17 @@ export default {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-right: 18px;
|
||||
vertical-align: middle;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
.color-999{
|
||||
margin-bottom: 24px;
|
||||
color: #999;
|
||||
}
|
||||
.start-name{
|
||||
display: inline-block;
|
||||
width: calc(100% - 50px);
|
||||
}
|
||||
}
|
||||
}
|
||||
.info{
|
||||
|
||||
@@ -133,7 +133,7 @@ export default {
|
||||
},
|
||||
|
||||
girdList() {
|
||||
this.$http.post(`/app/appgirdmemberinfo/queryMyGirdList`, null, {
|
||||
this.$http.post(`/app/appgirdmemberinfo/queryMyGirdListWithOut01`, null, {
|
||||
params: {
|
||||
size: 9999,
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<section class="document">
|
||||
<section class="document" v-if="isShow">
|
||||
<div class="card">
|
||||
<div class="info">
|
||||
<u-image border-radius="4" :src="top.detail.avatar" width="118" height="118" />
|
||||
@@ -79,19 +79,20 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
showID: false,
|
||||
isShow: false,
|
||||
familyList: [],
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
},
|
||||
onLoad() {
|
||||
this.$dict.load('sex', 'nation', 'education', 'job', 'faithType', 'politicsStatus', 'militaryStatus', 'householdRelation', 'householdName')
|
||||
console.log('居民档案性别(无字典)', this.resident.sex)
|
||||
console.log('居民档案性别(有字典)', this.$dict.getLabel('sex', this.resident.sex))
|
||||
console.log('居民档案字典值', this.$dict.getDict('sex'))
|
||||
this.$dict.load('sex', 'nation', 'education', 'job', 'faithType', 'politicsStatus', 'militaryStatus', 'householdRelation', 'householdName').then(() => {
|
||||
this.isShow = true
|
||||
})
|
||||
// console.log('居民档案性别(无字典)', this.resident.sex)
|
||||
// console.log('居民档案性别(有字典)', this.$dict.getLabel('sex', this.resident.sex))
|
||||
// console.log('居民档案字典值', this.$dict.getDict('sex'))
|
||||
},
|
||||
onShow() {
|
||||
// this.$dict.load('sex', 'nation', 'education', 'job', 'faithType', 'politicsStatus', 'militaryStatus', 'householdRelation', 'householdName')
|
||||
document.title = '居民详情'
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user