Setting.razor 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @page "/system/setting"
  2. @attribute [ReuseTabsPage(Title = "系统设置")]
  3. <Spin Spinning="Loading">
  4. <Form @ref="Form" Model="@DataSource" LabelColSpan="6" WrapperColSpan="12">
  5. <FormItem Label="公司名称">
  6. <Input @bind-Value="@context.CompanyName" />
  7. </FormItem>
  8. <FormItem Label="社会统一信用代码">
  9. <Input @bind-Value="@context.CompanyNo" />
  10. </FormItem>
  11. <FormItem Label="CopyRight">
  12. <Input @bind-Value="@context.CopyRight" />
  13. </FormItem>
  14. <FormItem Label="注册日期">
  15. <DatePicker @bind-Value="@context.RegisterDate" Picker="DatePickerType.Date" />
  16. </FormItem>
  17. <FormItem Label="联系电话">
  18. <Input @bind-Value="@context.ContactPhone" />
  19. </FormItem>
  20. <FormItem Label="联系邮箱">
  21. <Input @bind-Value="@context.ContactEmail" />
  22. </FormItem>
  23. <FormItem Label="网站URL">
  24. <Input @bind-Value="@context.WebsiteUrl" />
  25. </FormItem>
  26. <FormItem Label="地区">
  27. <Cascader Options="@Areas" @bind-Value="@context.LastAreadId" SelectedNodesChanged="OnChange" />
  28. </FormItem>
  29. <FormItem Label="地址">
  30. <Input @bind-Value="@context.Address" />
  31. </FormItem>
  32. <FormItem WrapperColOffset="8" WrapperColSpan="12">
  33. <Button Type="ButtonType.Primary" Color="Color.Blue6" OnClick="Update">更新</Button>
  34. </FormItem>
  35. </Form>
  36. </Spin>
  37. @inject ModalService ModalService;
  38. @inject ConfirmService ComfirmService;