You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application/third_party/trainsystem/views/presale_edit.php

31 lines
1.5 KiB
PHP

<div style="width:90%;margin:30px auto;">
<div class="panel panel-primary" style="width:60%;margin:0 auto;">
<div class="panel-heading">
<h3 class="panel-title">预售时间修改(车站名尽量不要修改)</h3>
</div>
<div class="panel-body">
<form action="/info.php/apps/trainsystem/pages/presale_editsave" name="saletimeform" method="POST">
<table class="table table-condensed table-bordered">
<tr>
<td style="text-align:center;">车站名</td>
<td><input type="text" name="TST_station_cn" value="<?php echo($info->TST_station_cn) ?>" /></td>
</tr>
<tr>
<td style="text-align:center;">预售时间</td>
<td><input type="text" name="TST_saletime" value="<?php echo($info->TST_saletime) ?>" /></td>
</tr>
<tr>
<td style="text-align:center;">车站编码</td>
<td><input type="text" name="TST_station_code" value="<?php echo($info->TST_station_code) ?>" /></td>
</tr>
<tr>
<td colspan="2" style="text-align:center;">
<input type="submit" class="btn btn-warning btn-sm" value="更 新" style="width:120px;" />
<input type="hidden" name="TST_id" value="<?php echo($info->TST_id) ?>"" />
</td>
</tr>
</table>
</form>
</div>
</div>
</div>