居民档案bug

This commit is contained in:
花有清香月有阴
2021-12-22 16:36:28 +08:00
parent c28f8734e2
commit 93e680eeb1
7 changed files with 30 additions and 19 deletions

View File

@@ -473,7 +473,6 @@ uni-page-body {
.topcard {
position: relative;
background: url(http://respub.sinoecare.net/20211221/4-20211221095551.png) no-repeat;
// background: url(http://respub.sinoecare.net/20211221/44-20211221095613.png) no-repeat;
background-size: 100% 100%;
height: 320px;
.cards {

View File

@@ -129,6 +129,7 @@ export default {
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
border-radius: 16px;
padding: 48px 32px;
margin-bottom: 32px;
.photos {
img {
width: 96px;
@@ -177,6 +178,16 @@ export default {
}
}
}
.card:nth-child(2n-1) {
// background: royalblue;
background: url(http://respub.sinoecare.net/20211222/装饰-20211222162743.png) no-repeat;
background-size: 100% 100%;
}
.card:nth-child(2n) {
// background: pink;
background: url(http://respub.sinoecare.net/20211222/装饰2-20211222162934.png) no-repeat;
background-size: 100% 100%;
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -19,7 +19,7 @@
<AiCard v-for="(item, i) in data" :key="i" @click.native="goDetail(item, 1)">
<template #custom>
<div class="cards-left">
<span class="walkName">走访对象{{ item.createUserName }}</span>
<span class="walkName">走访对象{{ item.name }}</span>
<span class="tags">{{ item.menuLevel3Name }}</span>
<span class="tags">{{ $dict.getLabel('realityStatus', item.reality) }}</span>
</div>
@@ -106,10 +106,6 @@ export default {
},
computed: {
...mapState(['user']),
loadmore() {
return this.pages <= this.current ? 'loading ' : 'nomore'
},
},
onLoad() {
this.areaId = this.user.areaId
@@ -132,6 +128,9 @@ export default {
})
.then((res) => {
if (res.code == 0) {
if (this.current > res.data.pages) {
return
}
this.data = this.current > 1 ? [...this.data, ...res.data.records] : res.data.records
this.pages = res.data.pages

View File

@@ -97,16 +97,18 @@ export default {
mounted() {},
methods: {
getDetail() {
this.$http.post(`/app/appvisitvondolence/queryDetailById?id=${this.params.id}`).then((res) => {
if (res?.data) {
this.forms = res.data
this.forms.realityValue = res.data.reality
this.forms.reality = this.$dict.getLabel('realityStatus', res.data.reality)
if (res.data.images) {
this.forms.images = JSON.parse(res.data.images || '[]')
if (this.params.id) {
this.$http.post(`/app/appvisitvondolence/queryDetailById?id=${this.params.id}`).then((res) => {
if (res?.data) {
this.forms = res.data
this.forms.realityValue = res.data.reality
this.forms.reality = this.$dict.getLabel('realityStatus', res.data.reality)
if (res.data.images) {
this.forms.images = JSON.parse(res.data.images || '[]')
}
}
}
})
})
}
},
submit() {
@@ -218,15 +220,14 @@ export default {
.u-form-item--right__content__slot {
.AiAreaPicker {
width: 100%;
display: flex;
justify-content: end;
.AiSearchPopup {
.areaSelector {
.location {
opacity: 0;
}
div {
width: 100%;
text-align: right;
}
}
}
}

View File

@@ -144,6 +144,7 @@ export default {
<style scoped lang="scss">
.workonline {
background: #f3f6f9;
.search {
.serach_content {
background-color: #fff;