新手操作指南Demo - 使用双汇UI代码

newVersionUpdateAdd.html 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <script src="../Script/Common/huayi.load.js"></script>
  7. <script src="../Script/Common/huayi.config.js"></script>
  8. <link rel="stylesheet" href="../css/init.css" />
  9. <link rel="stylesheet" type="text/css" href="./css/newVersionUpdateAdd.css">
  10. <title>版本更新添加</title>
  11. </head>
  12. <body class="gray-bg">
  13. <div class="clearfix wrapper wrapper-content animated fadeInRight">
  14. <div class="common">
  15. <table class="customerService">
  16. <tbody>
  17. <tr>
  18. <th>应用分类:</th>
  19. <td>
  20. <div class="form-group">
  21. <select class="form-control" id="addType">
  22. <option value="0" selected="selected">Android</option>
  23. <option value="1">IOS</option>
  24. </select>
  25. </div>
  26. </td>
  27. </tr>
  28. <tr>
  29. <th>版本名称:</th>
  30. <td>
  31. <div class="form-group">
  32. <input type="text" class="form-control" id="addVersionName" />
  33. </div>
  34. </td>
  35. </tr>
  36. <tr>
  37. <th>版本号:</th>
  38. <td>
  39. <div class="form-group">
  40. <input type="text" class="form-control" id="addVersionCode" />
  41. </div>
  42. </td>
  43. </tr>
  44. <tr class="upfile-wrapper">
  45. <th>上传附件:</th>
  46. <td>
  47. <div class="form-group">
  48. <span class="upfile-text"></span>
  49. <input id="btndr" type="button" class="btns" value="上传" />
  50. <input type="file" name="upFile" id="upFile" style="display: none;">
  51. </div>
  52. </td>
  53. </tr>
  54. <tr class="url-wrapper">
  55. <th>链接地址:</th>
  56. <td>
  57. <div class="form-group">
  58. <input type="text" class="form-control" id="addUrl" />
  59. </div>
  60. </td>
  61. </tr>
  62. <tr>
  63. <th>排序:</th>
  64. <td>
  65. <div class="form-group">
  66. <input type="text" class="form-control" id="addSort" />
  67. </div>
  68. </td>
  69. </tr>
  70. <tr>
  71. <th>备注:</th>
  72. <td>
  73. <div class="form-group">
  74. <input type="text" class="form-control" id="addRemarks" />
  75. </div>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td colspan="8" style="text-align: center;">
  80. <button class="btns customerSubmit">确&nbsp;定</button>
  81. </td>
  82. </tr>
  83. </tbody>
  84. </table>
  85. </div>
  86. </div>
  87. <script src="./js/newVersionUpdateAdd.js"></script>
  88. </body>
  89. </html>