From 6ab83bd7f47a78aa3c4c6c8d035ae08efadb9ec0 Mon Sep 17 00:00:00 2001 From: "wu.jian2" Date: Mon, 17 Jul 2023 09:38:11 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E6=89=93?= =?UTF-8?q?=E5=8C=85=E8=BE=93=E5=87=BA=E6=96=87=E4=BB=B6=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data-room-ui/packages/BigScreenList/CatalogEditForm.vue | 2 +- data-room-ui/vue.config.example.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data-room-ui/packages/BigScreenList/CatalogEditForm.vue b/data-room-ui/packages/BigScreenList/CatalogEditForm.vue index 3c7437df..67edf95a 100644 --- a/data-room-ui/packages/BigScreenList/CatalogEditForm.vue +++ b/data-room-ui/packages/BigScreenList/CatalogEditForm.vue @@ -208,7 +208,7 @@ export default { }).catch(() => { }) } else { - this.$dataRoomAxios('/bigScreen/type/update', { ...this.currentCatalog, type: this.type || 'bigScreenCatalog' }).then(data => { + this.$dataRoomAxios.post('/bigScreen/type/update', { ...this.currentCatalog, type: this.type || 'bigScreenCatalog' }).then(data => { this.catalogVisible = false this.getCatalogList() }).catch(() => { diff --git a/data-room-ui/vue.config.example.js b/data-room-ui/vue.config.example.js index 9095a9b0..0170dc2e 100644 --- a/data-room-ui/vue.config.example.js +++ b/data-room-ui/vue.config.example.js @@ -42,7 +42,7 @@ module.exports = { }, publicPath: process.env.VUE_APP_HISTORY === 'y' ? process.env.VUE_APP_BASE : './', - outputDir: 'bigScreen', + outputDir: 'dataRoomUi', assetsDir: 'static', lintOnSave: false, productionSourceMap: false,