From 239f0863b0de5bbad3174ecbbffe3c53d9c459ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=BF=94=E5=AE=87-=E6=97=85=E7=AE=A1=E5=AE=B6?= <153298343@qq.com> Date: Thu, 26 May 2022 17:12:47 +0800 Subject: [PATCH] up --- .env.production | 2 +- src/views/general/index.vue | 8 + src/views/supervise/daily.vue | 338 ++++++++++++++++++++++++++++++++ src/views/supervise/examine.vue | 9 + vue.config.js | 4 +- 5 files changed, 358 insertions(+), 3 deletions(-) create mode 100644 src/views/general/index.vue create mode 100644 src/views/supervise/daily.vue create mode 100644 src/views/supervise/examine.vue diff --git a/.env.production b/.env.production index 80c8103..8994f69 100644 --- a/.env.production +++ b/.env.production @@ -2,5 +2,5 @@ ENV = 'production' # base api -VUE_APP_BASE_API = '/prod-api' +VUE_APP_BASE_API = '' diff --git a/src/views/general/index.vue b/src/views/general/index.vue new file mode 100644 index 0000000..02409e3 --- /dev/null +++ b/src/views/general/index.vue @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/src/views/supervise/daily.vue b/src/views/supervise/daily.vue new file mode 100644 index 0000000..edc0813 --- /dev/null +++ b/src/views/supervise/daily.vue @@ -0,0 +1,338 @@ + + + + + diff --git a/src/views/supervise/examine.vue b/src/views/supervise/examine.vue new file mode 100644 index 0000000..84f6207 --- /dev/null +++ b/src/views/supervise/examine.vue @@ -0,0 +1,9 @@ + + + + + + diff --git a/vue.config.js b/vue.config.js index 2c03a8b..89252fa 100644 --- a/vue.config.js +++ b/vue.config.js @@ -24,8 +24,8 @@ module.exports = { * In most cases please use '/' !!! * Detail: https://cli.vuejs.org/config/#publicpath */ - publicPath: '/', - outputDir: 'dist', + publicPath: '/admin/', + outputDir: '/Users/liuxiangyu/Work/szhedao/app/patrol-maintain/patrol-manage-service/public/admin', assetsDir: 'static', lintOnSave: process.env.NODE_ENV === 'development', productionSourceMap: false,