MyFistPage.razor 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @page "/MyFirstList"
  2. <PageContainer>
  3. <Breadcrumb>
  4. <Breadcrumb>
  5. <BreadcrumbItem>
  6. <a href="/Home"><Icon Type="home"></Icon></a>
  7. </BreadcrumbItem>
  8. <BreadcrumbItem>
  9. <Icon Type="setting"></Icon><span>我的绩效清单</span>
  10. </BreadcrumbItem>
  11. </Breadcrumb>
  12. </Breadcrumb>
  13. <Content>
  14. @*<Button Type="primary" Icon="plus" OnClick="AddNew" Style="float:right">添加</Button>*@
  15. </Content>
  16. <ChildContent>
  17. <div style="width:1300px; overflow:auto;">
  18. @if (_Datas == null)
  19. {
  20. <Spin />
  21. }
  22. else
  23. {
  24. <table border="1" style="min-width:100%">
  25. <tr>
  26. <th>我方文号</th>
  27. <th>案件类型</th>
  28. <th>案件系数</th>
  29. <th>处理事项</th>
  30. <th>处理事项系数</th>
  31. <th>处理人</th>
  32. <th>核稿人</th>
  33. <th>基础点数</th>
  34. <th>完成时间</th>
  35. <th>返稿日</th>
  36. <th>客户期限</th>
  37. <th>初稿日</th>
  38. <th>内部期限</th>
  39. <th>案件阶段</th>
  40. <th>案件名称</th>
  41. <th>案件状态</th>
  42. <th>申请人</th>
  43. <th>备注</th>
  44. </tr>
  45. @foreach (var item in _Datas)
  46. {
  47. <tr>
  48. <td>@item.CaseNo</td>
  49. <td>@item.ApplicationType</td>
  50. <td>@item.CaseCoefficient</td>
  51. <td>@item.DoItem</td>
  52. <td>@item.DoItemCoefficient</td>
  53. <td>
  54. @if (item.ItemStaffs != null)
  55. {
  56. foreach (ItemStaff itemStaff in item.ItemStaffs)
  57. {
  58. <span>@(itemStaff.DoPerson.Name)&nbsp;</span>
  59. }
  60. }
  61. </td>
  62. <td>@(item.Reviewer ==null?"": item.Reviewer.Name)</td>
  63. <td>@(item.BasePoint ==null?"": item.BasePoint)</td>
  64. <td>@(item.FinishedDate.HasValue? item.FinishedDate.Value.ToString("yyyy-MM-dd"):"")</td>
  65. <td>@(item.ReturnDate.HasValue? item.ReturnDate.Value.ToString("yyyy-MM-dd"):"")</td>
  66. <td>@(item.CustomerLimitDate.HasValue? item.CustomerLimitDate.Value.ToString("yyyy-MM-dd"):"")</td>
  67. <td>@(item.FirstDraftDate.HasValue? item.FirstDraftDate.Value.ToString("yyyy-MM-dd"):"")</td>
  68. <td>@(item.InternalDate.HasValue? item.InternalDate.Value.ToString("yyyy-MM-dd"):"")</td>
  69. <td>@item.CaseStage</td>
  70. <td>@item.CaseState</td>
  71. <td>@item.CaseMemo</td>
  72. </tr>
  73. }
  74. </table>
  75. }
  76. </div>
  77. </ChildContent>
  78. </PageContainer>
  79. <style>
  80. div table td{
  81. min-width:50px;
  82. }
  83. </style>