Index.cshtml
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@{ 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>
}