From f47dc4957502f7728cfbd425e6a7b4d6163023c9 Mon Sep 17 00:00:00 2001 From: yxq Date: Fri, 22 Dec 2023 09:29:08 +0800 Subject: [PATCH 1/2] =?UTF-8?q?web=20=E6=95=99=E5=B8=88=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EducationalAdministration/Views/EmpInfo/Form.cshtml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpInfo/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpInfo/Form.cshtml index f9fd16bc9..5645fcd23 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpInfo/Form.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpInfo/Form.cshtml @@ -400,16 +400,16 @@
- +
- +
- +
- +
From c3f8bda85062f419a1cc168733405eabef83f0d5 Mon Sep 17 00:00:00 2001 From: suyanyan <1321717064@qq.com> Date: Fri, 29 Dec 2023 10:34:57 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B8=85=E9=99=A4app=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LearunApp-2.2.0/vue.config.js | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Learun.Framework.Ultimate V7/LearunApp-2.2.0/vue.config.js diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/vue.config.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/vue.config.js new file mode 100644 index 000000000..aec61525d --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/vue.config.js @@ -0,0 +1,21 @@ +let filePath = '' +let Timestamp = '' +//编译环境判断,可以根据不同环境来做相应的配置 +if (process.env.UNI_PLATFORM === 'h5') { + filePath = 'static/js/' + Timestamp = '.' + new Date().getTime(); + +} +module.exports = { + lintOnSave: true, + // 配置路径别名 + configureWebpack: { + devServer: { + disableHostCheck: true + }, + output: { // 输出重构 打包编译后的 文件目录 文件名称 【模块名称.时间戳】 + filename: `${filePath}[name]${Timestamp}.js`, + chunkFilename: `${filePath}[name]${Timestamp}.js` + }, + } +}