@using System.Linq; @using Abp.Extensions @using WePlatform.Helpers @using WePlatform.Views.Shared.Modals @using WePlatform.Views.Shared.Query @model QueryViewModel @{ string modalId = Model.ModalId ?? ""; string submit = Model.SubmitEventName ?? ""; //string click = Model.ItemClickEventName ?? ""; string dbClick = Model.ItemDbClickEventName ?? ""; string width = Model.ModalWidth > 0 ? "min-width:" + Model.ModalWidth + "px" : ""; QueryTreeSearch treeSearch = Model.QueryTreeSearch; string tField = "", selectUrl = "", tSelectFiledName = ""; int tFType = 0; int tExpType = 0; if (treeSearch != null) { tField = treeSearch.Field; tFType = treeSearch.FType; tExpType = treeSearch.EType; selectUrl = treeSearch.SelectUrl; tSelectFiledName = treeSearch.SelectFieldName; } string searBindFunc = Model.SearchBindFunc; string isAddBind = "false"; if (!searBindFunc.IsNullOrEmpty()) { isAddBind = "true"; } }
@using (Html.BeginScripts()) { }