Ver Fonte

refactor: 修改打包输出文件名

wu.jian2 há 1 ano atrás
pai
commit
6ab83bd7f4

+ 1 - 1
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(() => {

+ 1 - 1
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,