|
|
|
@ -10,9 +10,16 @@
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
height="100%"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column prop="id" label="Id" width="80"> </el-table-column>
|
|
|
|
|
<el-table-column type="index" width="50" label="序号">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!-- <el-table-column prop="id" label="Id" width="80"> </el-table-column> -->
|
|
|
|
|
<el-table-column prop="line_name" label="线路"> </el-table-column>
|
|
|
|
|
<el-table-column prop="cmdid" label="装置编号"> </el-table-column>
|
|
|
|
|
<el-table-column label="规约" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ protocolMap[scope.row.protocol] }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="file_name" label="文件名">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<a :href="'/dl/?id=' + scope.row.id" class="buttonText">{{
|
|
|
|
@ -39,6 +46,17 @@ export default {
|
|
|
|
|
return {
|
|
|
|
|
tableData: [],
|
|
|
|
|
logLoading: false,
|
|
|
|
|
protocolMap: {
|
|
|
|
|
65280: "国网I1",
|
|
|
|
|
65296: "陕西",
|
|
|
|
|
65281: "安徽",
|
|
|
|
|
65282: "江苏",
|
|
|
|
|
65283: "湖南",
|
|
|
|
|
65284: "浙江",
|
|
|
|
|
65285: "河南全景",
|
|
|
|
|
65286: "河南郑州",
|
|
|
|
|
65290: "河南统一视频v2020",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
@ -83,6 +101,9 @@ export default {
|
|
|
|
|
.boxLogTable {
|
|
|
|
|
height: calc(100% - 36px);
|
|
|
|
|
background: #fcc;
|
|
|
|
|
.el-table__cell {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.el-table thead {
|
|
|
|
|
th.el-table__cell {
|
|
|
|
|
background: #fafafa;
|
|
|
|
|