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 @@