diff --git a/src/project/weiyang/AppPhotoReport/PhotoForm.vue b/src/project/weiyang/AppPhotoReport/PhotoForm.vue index 448ccde..2d535e7 100644 --- a/src/project/weiyang/AppPhotoReport/PhotoForm.vue +++ b/src/project/weiyang/AppPhotoReport/PhotoForm.vue @@ -244,10 +244,12 @@ export default { this.form.girdName = v.girdName }, getUser() { - this.getUserInfo().then(() => { + this.getUserInfo('qujing').then(() => { this.getDict() this.form.phone = this.user.phone this.form.name = this.user.realName || '' + this.form.girdName = this.user.girdName || '' + this.form.girdId = this.user.girdId || '' }).catch(() => { this.$refs.login.show() }) diff --git a/src/project/weiyang/AppWorkOrder/Add.vue b/src/project/weiyang/AppWorkOrder/Add.vue index 977874b..1a3c005 100644 --- a/src/project/weiyang/AppWorkOrder/Add.vue +++ b/src/project/weiyang/AppWorkOrder/Add.vue @@ -149,7 +149,7 @@ export default { }) }, getDetail() { - this.$http.post(`/app/apppatrolreportinfov2/queryDetailById?id=${this.id}`).then((res) => { + this.$instance.post(`/app/apppatrolreportinfov2/queryDetailById?id=${this.id}`).then((res) => { if (res?.data) { this.forms = res.data this.forms.mapInfo = { diff --git a/src/project/weiyang/AppWorkOrder/Detail.vue b/src/project/weiyang/AppWorkOrder/Detail.vue index 2c9bc05..f5d9c41 100644 --- a/src/project/weiyang/AppWorkOrder/Detail.vue +++ b/src/project/weiyang/AppWorkOrder/Detail.vue @@ -411,8 +411,8 @@ uni-page-body { } img { - width: 220px; - height: 220px; + width: 202px; + height: 202px; margin: 0 8px 8px 0; }