liaoxujun@qq.com
2024-02-18 b73ffe97fc885b652b20328c1c3d079a9124fb89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@model WalkingTec.Mvvm.Mvc.Admin.ViewModels.ActionLogVMs.ActionLogListVM
@inject IStringLocalizer<Program> Localizer;
 
<wt:searchpanel vm="@Model" reset-btn="true">
  <wt:row items-per-row=" ItemsPerRowEnum.Three">
    <wt:combobox field="Searcher.LogType" empty-text="@Localizer["Sys.All"]" />
    <wt:textbox field="Searcher.ITCode" />
    <wt:textbox field="Searcher.ActionUrl" />
  </wt:row>
  <wt:row items-per-row=" ItemsPerRowEnum.Three">
    <wt:datetime field="Searcher.ActionTime" type="DateTime" range="true" />
    <wt:textbox field="Searcher.IP" />
    <wt:textbox field="Searcher.Duration" />
  </wt:row>
</wt:searchpanel>
 
<wt:grid vm="@Model" url="/_Admin/ActionLog/Search" />
 
<!-- WTM默认页面 Wtm buidin page-->