From 90dd02e591779ead7a79421b610542f00c3a9227 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期一, 03 四月 2023 09:21:13 +0800 Subject: [PATCH] 后台app推送 --- zhengcaioa/zhengcaioa/Views/CooperatecustomCustomer/Edit.cshtml | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/zhengcaioa/zhengcaioa/Views/CooperatecustomCustomer/Edit.cshtml b/zhengcaioa/zhengcaioa/Views/CooperatecustomCustomer/Edit.cshtml index 69b2c08..d66ec5a 100644 --- a/zhengcaioa/zhengcaioa/Views/CooperatecustomCustomer/Edit.cshtml +++ b/zhengcaioa/zhengcaioa/Views/CooperatecustomCustomer/Edit.cshtml @@ -1084,6 +1084,34 @@ } }); + + $("#Name").change(function () { + + var Name = $("#Name").val(); + $.ajax({ + type: "GET", + url: "/IntentionCustomer/getTitle?Name=" + Name + "&Id=" + $("#Id").val(), + dataType: "json", + global: false, + data: "", + success: function (data) { + + if (!data.Result) { + toastr.warning(data.Message); + } + + + + + + }, + error: function () { + + + parent.layer.msg('澶辫触', { icon: 5 }); + } + }); + }); </script> </body> </html> \ No newline at end of file -- Gitblit v1.9.1