提交 91bc2c73 authored 作者: 杨斌基's avatar 杨斌基

feat(上报内容): 举报人信息初次上报时需要填写,下次进来时自动获取(允许修改)

上级 d09c4a5f
...@@ -536,6 +536,7 @@ export default { ...@@ -536,6 +536,7 @@ export default {
console.log(query); console.log(query);
this.query = query; this.query = query;
this.fetchPhotoTaskTypeData(); this.fetchPhotoTaskTypeData();
this.fetchUserInfo()
}, },
methods: { methods: {
...@@ -546,6 +547,24 @@ export default { ...@@ -546,6 +547,24 @@ export default {
this.id = +this.query.detail_id; this.id = +this.query.detail_id;
}, },
async fetchUserInfo() {
const {
detail: {
name,
phone,
certificates: certificateType,
ID_number: certificateText
}
} = await uni.$u.http.get('/api/user_center/detail')
this.realForm = {
name,
phone,
certificateType,
certificateText
}
},
async choice() { async choice() {
this.show = !this.show; this.show = !this.show;
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论