From 38b9f8f3c8a3217ff3135cf31ec28dcd4fffaf29 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 17 Mar 2022 11:03:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=9C=B0=E5=8C=BA=E7=BB=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AiAreaPicker/AiAreaPicker.vue | 6 ++- src/mods/AppVideoSurve/AppVideoSurve.vue | 51 +++++++++++--------- 2 files changed, 32 insertions(+), 25 deletions(-) diff --git a/src/components/AiAreaPicker/AiAreaPicker.vue b/src/components/AiAreaPicker/AiAreaPicker.vue index 9b38ef9..f7a31b8 100644 --- a/src/components/AiAreaPicker/AiAreaPicker.vue +++ b/src/components/AiAreaPicker/AiAreaPicker.vue @@ -131,12 +131,12 @@ export default { obj.select('#areaSelector').boundingClientRect() obj.exec(rect => { if (rect.length) { - this.height = `calc(100% - ${rect[0].height}px)` + this.height = `calc(100% - ${rect[0]?.height}px)` } }) }, getFullArea(areaId) { - return areaId && this.$http.post('/admin/area/getAllParentAreaId', null, { + return areaId && this.$instance.post('/admin/area/getAllParentAreaId', null, { withoutToken: true, params: {areaId}, }).then((res) => { @@ -327,6 +327,8 @@ export default { } ::v-deep .pendingList { + height: 500px; + overflow-y: auto; padding: 0 32px 120px; box-sizing: border-box; diff --git a/src/mods/AppVideoSurve/AppVideoSurve.vue b/src/mods/AppVideoSurve/AppVideoSurve.vue index fea5d9a..a8eec1d 100644 --- a/src/mods/AppVideoSurve/AppVideoSurve.vue +++ b/src/mods/AppVideoSurve/AppVideoSurve.vue @@ -1,11 +1,9 @@