DesignerBillLog.aspx 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/View.master" AutoEventWireup="true" CodeFile="DesignerBillLog.aspx.cs" Inherits="EFinance_DesignerBillLog" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
  3. <script type="text/javascript">
  4. var logData = null;
  5. var curLog = 0;
  6. $(function () {
  7. if (logData != null && logData.length > 0) {
  8. curLog = 0;
  9. var ahtml = "";
  10. for (var item of logData) {
  11. ahtml += ("<div style=\"font-size:16px;color:#3C3C3C; margin-top:15px;line-height:25px; display:flex;flex-direction:column; \"> <div> <span style='color:darkblue;font-size:16px;'>❥" + formatCommonDate(item.create_time) + "</span>-<span style='color:green;'>" + item.userName + "</span></div><div style='margin-left:12px;'>" + item.cont + "</div></div>")
  12. }
  13. $("#billLogContent").html(ahtml);
  14. }
  15. });
  16. </script>
  17. <style type="text/css">
  18. .win_tb {
  19. width: 96%;
  20. margin-left: auto;
  21. margin-right: auto;
  22. margin-top: 10px;
  23. background-color: #dedede;
  24. }
  25. .win_tb td {
  26. height: 36px;
  27. background-color: #fff;
  28. font-size: 14px;
  29. padding: 5px;
  30. }
  31. .win_tb input[type=text] {
  32. width: 90%;
  33. height: 24px;
  34. font-size: 14px;
  35. }
  36. .win_tb input[type=checkbox] {
  37. width: 18px;
  38. height: 18px;
  39. }
  40. .win_tb select {
  41. font-size: 14px;
  42. height: 30px;
  43. padding: 0px 5px;
  44. }
  45. .win_tb .td1 {
  46. color: #666;
  47. background-color: #F8F8F8;
  48. text-align: center;
  49. }
  50. .win_tb .td2 {
  51. }
  52. .word_tui {
  53. border-radius: 50%;
  54. background-color: red;
  55. color: white;
  56. font-size: 14px;
  57. text-align: center;
  58. padding: 3px;
  59. margin-left: 5px;
  60. }
  61. .word_shou {
  62. background-color: saddlebrown;
  63. }
  64. .word_green {
  65. background-color: forestgreen;
  66. }
  67. .state_word{
  68. width:50px;
  69. display:flex;
  70. flex-direction:row;
  71. padding:3px 6px 3px 6px;
  72. text-align:center;
  73. font-weight:bold;
  74. color:white;
  75. background-color:forestgreen;
  76. }
  77. .mini-grid-cell-nowrap {
  78. overflow: hidden;
  79. /* white-space: nowrap;
  80. text-overflow: ellipsis; */
  81. word-break: keep-all;
  82. word-wrap: break-word;
  83. white-space: normal;
  84. }
  85. /*.win_tb input{height:20px;}
  86. .win_tb .td1{height:35px;width:120px;font-size:12px;text-align:center;}
  87. .win_tb .td2{height:35px;width:280px;font-size:12pt;padding-left:5px;text-align:left;}*/
  88. </style>
  89. </asp:Content>
  90. <asp:Content ID="Content2" ContentPlaceHolderID="btn" runat="Server">
  91. <div style="width: 600px; height: 600px; overflow: auto; float: left; margin-left: 3px;" id="billLogContent">
  92. </div>
  93. </asp:Content>