| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" type="text/css" href="./css/newVersionUpdateAdd.css">
- <title>版本更新添加</title>
- </head>
- <body class="gray-bg">
- <div class="clearfix wrapper wrapper-content animated fadeInRight">
- <div class="common">
- <table class="customerService">
- <tbody>
- <tr>
- <th>应用分类:</th>
- <td>
- <div class="form-group">
- <select class="form-control" id="addType">
- <option value="0" selected="selected">Android</option>
- <option value="1">IOS</option>
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <th>版本名称:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addVersionName" />
- </div>
- </td>
- </tr>
- <tr>
- <th>版本号:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addVersionCode" />
- </div>
- </td>
- </tr>
- <tr class="upfile-wrapper">
- <th>上传文件:</th>
- <td>
- <div class="form-group">
- <span class="upfile-text"></span>
- <input id="btndr" type="button" class="btns" value="上传" />
- <input type="file" name="upFile" id="upFile" style="display: none;">
- <!--<input type="text" class="form-control" id="addFiles" />-->
- </div>
- </td>
- </tr>
- <tr class="url-wrapper">
- <th>链接地址:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addUrl" />
- </div>
- </td>
- </tr>
- <tr>
- <th>排序:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addSort" />
- </div>
- </td>
- </tr>
- <tr>
- <th>备注:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addRemarks" />
- </div>
- </td>
- </tr>
- <tr>
- <td colspan="8" style="text-align: center;">
- <button class="btns customerSubmit">确 定</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
-
- <script src="./js/newVersionUpdateModify.js"></script>
- </body>
- </html>
|