1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/3/6
- * Time: 下午2:30
- */
- use backend\assets\AppAsset;
- //AppAsset::addScript($this,Yii::$app->request->baseUrl."/company/ceshi.js");
- AppAsset::addScript($this,Yii::$app->request->baseUrl."/js/dictionarya/price.js");
- ?>
- <style>
- body {
- padding: 15px;
- }
- .layui-elem-quote {
- margin-bottom: 0;
- border-left: none;
- padding: 10px;
- }
- .layui-table-page .layui-laypage {float:right;margin-right:1%;}
- </style>
- <blockquote class="layui-elem-quote quoteBox demoTable">
- <div class="layui-btn-group demoTable" >
- <button class="layui-btn" data-type="addData">新增</button>
- <!-- <button class="layui-btn" data-type="getCheckLength">获取选中数目</button>-->
- <!-- <button class="layui-btn" data-type="isAll">验证是否全选</button>-->
- </div>
- </blockquote>
- <table id="pricelist" lay-filter="pricelist"></table>
- <script type="text/html" id="operate">
- <a class="layui-btn layui-btn-xs" lay-event="edit">编辑</a>
- <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>
- </script>
- <!-- 排序 -->
- <script type="text/html" id="sortBox">
- {{# if(d.sort){ }}
- <div style="border:1px solid #E6E6E6;height:27px;line-height:27px;box-shadow:1px 1px 1px 1px rgba(224, 224, 224, 0.76);">{{ d.sort }}</div>
- {{# } }}
- </script>
|