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
20
21
22
23
24
25
26
27
28
29
30
31
32
 
@model cy_scdz.ViewModel._Admin.FrameworkUserVMs.FrameworkUserBatchVM
@using WalkingTec.Mvvm.Core.Extensions;
@inject IStringLocalizer<Program> Localizer;
 
<wt:form vm="@Model" url="/_Admin/FrameworkUser/DoBatchEdit?1=1">
  <div style="margin-bottom:10px;"> "@Localizer["Sys.BatchEditConfirm"].Value"</div>
  <wt:row  items-per-row="ItemsPerRowEnum.Two">
    <wt:textbox field="LinkedVM.Email"/>
    <wt:combobox field="LinkedVM.Gender" id="g9c47e0368f524dbe80cdce820f958322"/>
  </wt:row>
  <wt:row  items-per-row="ItemsPerRowEnum.Two">
    <wt:textbox field="LinkedVM.CellPhone"/>
    <wt:textbox field="LinkedVM.HomePhone"/>
  </wt:row>
  <wt:row  items-per-row="ItemsPerRowEnum.Two">
    <wt:textbox field="LinkedVM.Address"/>
    <wt:textbox field="LinkedVM.ZipCode"/>
  </wt:row>
  <wt:row  items-per-row="ItemsPerRowEnum.Two">
    <wt:combobox field="LinkedVM.SelectedFrameworkUserRolesIDs"  item-url="/_Admin/FrameworkUser/GetFrameworkRoles" id="g7049a7dce4584bf89f23938ffa878585" multi-select="true"/>
    <wt:combobox field="LinkedVM.SelectedFrameworkUserGroupsIDs"  item-url="/_Admin/FrameworkUser/GetFrameworkGroups" id="g7f2cf222a5834c4c834f0ec1f3e6265b" multi-select="true"/>
  </wt:row>
 
  <wt:container align="AlignEnum.Right">
    <wt:submitbutton  text="@Localizer["Sys.Submit"].Value"/>
    <wt:closebutton  text="@Localizer["Sys.Close"].Value"/>
  </wt:container>
 
  <wt:hidden field="Ids" />
  <wt:grid vm="ListVM" use-local-data="true" height="300" hidden-checkbox="true" hidden-panel="true" />
</wt:form>