123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- @extends('admin/master')
- @section('content')
- <body>
- @if(session('info'))
- <div class="Huialert Huialert-info" onclick="$(this).remove()" id="info">
- {{session('info')}}
- </div>
- @endif
- <div class="page-container">
- <div class="cl pd-5 bg-1 bk-gray mt-20"> <span class="l"> <a class="btn btn-primary radius" onclick="admin_add('新增')" href="javascript:;"><i class="Hui-iconfont"></i> 新增规格</a></span> </div>
- <div class="mt-20">
- <table class="table table-border table-bordered table-bg table-hover table-sort">
- <thead>
- <tr class="text-c">
- {{--<th width="25"><input type="checkbox" name="" value=""></th>--}}
- <th width="5%">ID</th>
- <th width="7%">sku编码</th>
- <th width="10%">规格</th>
- <!--th width="7%">价格</th>
- <th width="7%">吊牌价</th>
- <th width="7%">参考成本</th-->
- <th width="7%">是否称重</th>
- <th width="7%">可用库存</th>
- <th width="7%">是否启用</th>
- <th width="10%">创建时间</th>
- <th width="10%">操作</th>
- </tr>
- </thead>
- <tbody>
- @if($result)
- @foreach($result as $a)
- <tr class="text-c">
- {{--<td><input name="" type="checkbox" value=""></td>--}}
- <td class="text-c">{{$a['id']}}</td>
- <td class="text-c">{{$a['code']}}</td>
- <td class="text-c">{{$a['propsName']}}</td>
- <!--td class="text-c">{{$a['price']}}</td>
- <td class="text-c">{{$a['tagPrice']}}</td>
- <td class="text-c">{{$a['referenceCost']}}</td-->
- <td class="text-c">@if($a['is_weigh']==1) 是 @else 否@endif</td>
- <td class="text-c">{{$a['quantity']}}</td>
- <td class="text-c">@if($a['is_del']==1) 已禁用 @else 已启用 @endif</td>
- <td class="text-c">{{$a['createTime']}}</td>
- <td class="f-14 product-brand-manage"><a style="text-decoration:none" onClick='admin_edit("编辑","{{$a['id']}}","{{$a['goodsCode']}}")' href="javascript:;" title="编辑"><span class="btn btn-primary radius">编辑</span></a>
- @if($a['is_del']==0)
- <a style="text-decoration:none" class="ml-5" onClick="admin_del(this, '{{$a['id']}}')" href="javascript:;" title="禁用"><span class="btn btn-danger radius">禁用</span></a>
- @elseif($a['is_del']==1)
- <a style="text-decoration:none" class="ml-5" onClick="admin_up(this, '{{$a['id']}}')" href="javascript:;" title="启用"><span class="btn btn-success radius">启用</span></a>
- @endif
- <a style="text-decoration:none" class="ml-5" onClick="admin_delete(this, '{{$a['id']}}')" href="javascript:;" title="删除"><span class="btn btn-danger radius">删除</span></a>
- </td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- </div>
- </div>
- <!--_footer 作为公共模版分离出去-->
- <script type="text/javascript" src="/admin/lib/jquery/1.9.1/jquery.min.js"></script>
- <script type="text/javascript" src="/admin/lib/layer/2.4/layer.js"></script>
- <script type="text/javascript" src="/admin/static/h-ui/js/H-ui.min.js"></script>
- <script type="text/javascript" src="/admin/static/h-ui.admin/js/H-ui.admin.js"></script>
- <!--/_footer 作为公共模版分离出去-->
- <!--/_footer 作为公共模版分离出去-->
- <script type="text/javascript">
- $(function(){
- setTimeout("$('#info').hide()",3000);
- });
- /*添加*/
- function admin_add(title){
- location.href = '/admin/goods/skucreate?goods_id={{$goods_id}}';
- }
- /*编辑*/
- function admin_edit(title,id,goods_id){
- location.href = "/admin/goods/skuedit/"+id+'?goods_id='+goods_id;
- }
- /*禁用*/
- function admin_del(obj,id){
- layer.confirm('确认要禁用吗?',function(index){
- $.ajax({
- type: 'GET',
- url: '/admin/goods/skudelete/'+id,
- dataType: 'json',
- success: function(data){
- if(data == 1){
- location.reload();
- }
- }
- });
- });
- }
- /*删除*/
- function admin_delete(obj,id){
- layer.confirm('确认要删除吗?',function(index){
- $.ajax({
- type: 'GET',
- url: '/admin/goods/skudelete2/'+id,
- dataType: 'json',
- success: function(data){
- if(data == 1){
- location.reload();
- }
- }
- });
- });
- }
- /*启用*/
- function admin_up(obj,id){
- layer.confirm('确认要启用吗?',function(index){
- $.ajax({
- type: 'GET',
- url: '/admin/goods/skuup/'+id,
- dataType: 'json',
- success: function(data){
- if(data == 1){
- location.reload();
- }
- }
- });
- });
- }
- </script>
- </body>
- @endsection
|