1d133fd8 by yangjianbin

init

1 parent b58c9413
...@@ -2,6 +2,33 @@ ...@@ -2,6 +2,33 @@
2 2
3 <body> 3 <body>
4 <div class="page-container"> 4 <div class="page-container">
5 <form class="" onreset="resetHandler()">
6 <div class="row cl mb-20">
7 <div class="col-xs-2">
8 <span class="select-box">
9 <select class="select table_search" name="departmentId" size="1" column="6">
10 <option value="" selected>还款方式</option>
11 <?php foreach ($this->session->repayments as $k => $v): ?>
12 <option value="<?= $k ?>"><?= $v ?></option>
13 <?php endforeach; ?>
14 </select>
15 </span>
16 </div>
17 <div class="col-xs-2">
18 <span class="select-box">
19 <select class="select table_search" name="productId" size="1" column="7">
20 <option value="" selected>产品名称</option>
21 <?php foreach ($this->session->products as $k => $v): ?>
22 <option value="<?= $v->id ?>"><?= $v->productName ?></option>
23 <?php endforeach; ?>
24 </select>
25 </span>
26 </div>
27 <div>
28 <input class="btn btn-warning radius" type="reset" value="重置">
29 </div>
30 </form>
31
5 <div> 32 <div>
6 <button class="btn btn-primary radius" onclick="layer_show('添加', '<?= site_url('/config/add') ?>')">添加</button> 33 <button class="btn btn-primary radius" onclick="layer_show('添加', '<?= site_url('/config/add') ?>')">添加</button>
7 </div> 34 </div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!