From 99574e1e91a6c60eefac712d129c63fa7ae43edf Mon Sep 17 00:00:00 2001 From: wintel Date: Sat, 20 Jul 2024 21:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=AA=E4=BA=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E7=95=8C=E9=9D=A2=E5=8E=BB=E6=8E=89vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenAuth.Mvc/Views/UserManager/Profile.cshtml | 12 +++---- OpenAuth.Mvc/wwwroot/userJs/profile.js | 34 ++++--------------- 2 files changed, 12 insertions(+), 34 deletions(-) diff --git a/OpenAuth.Mvc/Views/UserManager/Profile.cshtml b/OpenAuth.Mvc/Views/UserManager/Profile.cshtml index 6f99c7b4..bba7d803 100644 --- a/OpenAuth.Mvc/Views/UserManager/Profile.cshtml +++ b/OpenAuth.Mvc/Views/UserManager/Profile.cshtml @@ -4,12 +4,12 @@ } -
+
-
@@ -17,15 +17,15 @@
-
- - + +
@@ -64,4 +64,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/OpenAuth.Mvc/wwwroot/userJs/profile.js b/OpenAuth.Mvc/wwwroot/userJs/profile.js index c2770c0e..cdf1b859 100644 --- a/OpenAuth.Mvc/wwwroot/userJs/profile.js +++ b/OpenAuth.Mvc/wwwroot/userJs/profile.js @@ -1,6 +1,6 @@ layui.config({ base: "/js/" -}).use(['form','vue', 'ztree', 'layer', 'jquery', 'table','droptree','openauth','utils','cookie'], function () { +}).use(['form','ztree', 'layer', 'jquery', 'table','droptree','openauth','utils','cookie'], function () { var form = layui.form, layer = layui.layer, $ = layui.jquery; @@ -98,33 +98,11 @@ layui.config({ } }(); - var vm = new Vue({ - el: "#formEdit", - data() { - return { - tmp: { - Account: '', - Name: '', - Sex: '', - } - } - }, - watch:{ - tmp(val){ - this.$nextTick(function () { - form.render(); //刷新select等 - }) - } - }, - mounted() { - var _this = this; - $.get('/UserSession/GetUserProfile', - function (data) { - var obj = JSON.parse(data); - _this.tmp = obj.Result; - }); - } - }); + $.get('/UserSession/GetUserProfile', + function (data) { + var obj = JSON.parse(data); + form.val("formEdit", obj.Result); + }); var url = "/UserManager/ChangeProfile"; //提交数据