Index.cshtml 1.14 KB
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@section header
{    
    <style type="text/css">


     </style>
}

<div id="listForm" class="layui-tab-item layui-show boardApp">
    <table class="layui-table">
        <colgroup>
            <col width="180">
            <col width="120">
            <col width="300">
        </colgroup>
        <thead>
            <tr>
                <th style="color: red;">工位名称(工位设置=>新增工位属性【工位看板】board)</th>
                <th>线体名称</th>
                <th>ip地址</th>
            </tr>
        </thead>
        <tbody v-for="item in contentList" :key="item.id">
            <tr>
                <td>{{item.workStationName}}</td>
                <td>{{item.lineName}}</td>
                <td>
                    <a href="{{item.monitorIP}}" title="{{item.monitorIP}}" target="view_frame" style="color: blue;">{{item.monitorIP}}</a>
                </td>
            </tr>
        </tbody>
    </table>
</div>
@section Scripts
{
    <script src="~/productjs/board/boardList.js" asp-append-version="true"></script>
}