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 @@
-
+
-
+
-
+
-
+
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`
+ },
+ }
+}