This commit is contained in:
liuye
2024-08-15 10:16:00 +08:00
parent aac3fe97c4
commit de76c5bcb9
5 changed files with 40 additions and 2 deletions

View File

@@ -78,7 +78,11 @@ export default {
this.forms.girdMemberId = this.user.girdMemberId
this.forms.girdMemberName = this.user.name
this.eventSource = option.eventSource
this.id = option.id
this.typeList()
if(this.id) {
this.getDetail()
}
},
onShow() {
document.title = '添加上报'
@@ -100,6 +104,25 @@ export default {
}
})
},
getDetail() {
this.$http.post(`/app/apppatrolreportinfov2/queryDetailById?id=${this.id}`).then((res) => {
if (res?.data) {
this.forms = res.data
this.forms.mapInfo = {
lat: res.data.lat,
lng: res.data.lng,
address: res.data.address,
}
// var list = this.$dict.getDict('xbotReportEventType')
// this.typeList.map((item) => {
// if(item.dictValue == res.data.type) {
// this.forms.typeName = item.dictName
// }
// })
this.selectGird = { girdId: res.data.girdId|| '', girdName: res.data.girdName || ''}
}
})
},
selectStatus(e) {
this.forms.groupName = e[0].label
this.forms.groupId = e[0].value

View File

@@ -36,8 +36,8 @@ export default {
component: 'List',
},
{
img: require('./components/img/handle-icon.png'),
activeImg: require('./components/img/handle-icon-active.png'),
img: require('./components/img/history-icon.png'),
activeImg: require('./components/img/history-icon-active.png'),
text: '历史',
component: 'List',
},

View File

@@ -7,6 +7,7 @@
<div class="names">{{ data.name }}的上报</div>
<div class="times">{{ data.createTime }}</div>
<span class="edit-btn" @click="toEdit()" v-if="data.eventStatus != 2 && data.eventStatus != 3">编辑</span>
</div>
</div>
@@ -222,6 +223,9 @@ export default {
current: img
})
},
toEdit() {
uni.navigateTo({url: `./Add?id=${this.id}&eventSource=${this.data.eventSource}`})
},
formatName(name) {
if (name == undefined) {
return
@@ -271,6 +275,17 @@ uni-page-body {
font-size: 28px;
color: #999999;
}
.edit-btn {
position: absolute;
color: #197df0;
top: 32px;
right: 32px;
width: 150px;
height: 44px;
line-height: 44px;
text-align: right;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB