28 lines
975 B
Plaintext
28 lines
975 B
Plaintext
@{
|
|
ViewBag.Title = "交易市场";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
}
|
|
@section JS{
|
|
<script src="~/Scripts/app/basic/market.js"></script>
|
|
<script type="text/javascript">
|
|
var ctrl = new marketListCtrl();
|
|
</script>
|
|
}
|
|
|
|
<div class="searchdiv">
|
|
<form id="form1" class="form-inline search-form" autocomplete="off">
|
|
<label>市场名</label>
|
|
<input type="text" name="MarketName" id="MarketName" />
|
|
<label>市场代码</label>
|
|
<input type="text" name="ExchangeNo" id="ExchangeNo" />
|
|
<button class="btn btn-primary"><span class="glyphicon glyphicon-search"></span>查询</button>
|
|
@if (CurUser.基础参数管理.交易市场修改)
|
|
{
|
|
<button class="btn btn-primary " type="button" onclick="ctrl.startAddmarket();">新增</button>
|
|
}
|
|
</form>
|
|
</div>
|
|
|
|
<table id='listGrid' class='table-jqgrid' cellpadding='0' cellspacing='0'></table>
|
|
|
|
<div id='pagerGrid'></div> |