123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @{
- Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>AssignDealWithPerson_Window</title>
- <style>
- .textbox-label{width:60px}
- </style>
- </head>
- <body>
- <input id="CLR" name="CLR" panelheight="190px" class="easyui-combobox" data-options="label:'处理人',labelAlign:'right',prompt:'请选择处理人',limitToList:true" style="width:200px;" />
- <div style="position:fixed;bottom:10px;right:10px;">
- <a id="btnUpdate" href="#" class="easyui-linkbutton c1"><i class="fa fa-pencil"></i> 确认</a>
- <a id="btnClose" href="#" class="easyui-linkbutton c5"><i class="fa fa-power-off"></i> 关闭</a>
- </div>
- </body>
- </html>
- <script type="text/javascript">
- $("#btnUpdate").bind("click", function () {
- var CLR = $("#CLR").combobox("getValue");
- $.get("/Problem/SaveAssignDealWithPerson/" + CLR)
- ZLPMS.CloseTopWindow(true)
- })
- $("#btnClose").bind("click", function () {
- ZLPMS.CloseTopWindow()
- })
- $(function () {
- $("#CLR").combobox({
- url: '/Problem/GetAssignPerson',
- valueField: 'ID',
- textField: '姓名'
- })
- })
- </script>
|