Inspection.cshtml 1.02 KB
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@section header
{
    <style type="text/css">
        .layui-table-tool {
            display:none
        }
    </style>
}

<div id="listForm" class="layui-tab-item layui-show">
    <div class="layui-col-xs12">
        <table id="mainList" lay-filter="mainList"></table>
    </div>
</div>



<script type="text/html" id="toolbarTable">

</script>

<script type="text/html" id="toolbarTableDesc">

</script>

<script type="text/html" id="progressType">
    {{# if(d.progressType==0){}}
    <label>
        开始
    </label>
    {{# } else { }}
    <label>
        完成
    </label>
    {{# } }}
</script>

<script type="text/html" id="sendStatus">
    {{# if(d.sendStatus==true){}}
    <label>
        已报检
    </label>
    {{# } else { }}
    <label>
        未报检
    </label>
    {{# } }}
</script>
@section Scripts
{
    <script type="text/javascript" src="/productjs/wo/Inspection.js" asp-append-version="true"></script>
}