Commit 06a24caa by liuxin

mgrtsk表格数据

parent 6cd7061e
...@@ -251,18 +251,8 @@ ...@@ -251,18 +251,8 @@
</c-button> </c-button>
</c-col> --> </c-col> -->
<c-col :span="22" :offset="1"> <c-col :span="22" :offset="1">
<c-table :border="true" :list="data" style="width:80%,text-align:center"> <c-istream-table :list="stmData.data" :columns="stmData.columns">
<el-table-column label="Entity" width="auto"></el-table-column> </c-istream-table>
<el-table-column
label="Object Identification"
width="auto"
></el-table-column>
<el-table-column label="Ident" width="auto"></el-table-column>
<el-table-column label="Service" width="auto"></el-table-column>
<el-table-column label="Status" width="auto"></el-table-column>
<el-table-column label="Retries" width="auto"></el-table-column>
<el-table-column label="Target" width="auto"></el-table-column>
</c-table>
</c-col> </c-col>
</div> </div>
</template> </template>
...@@ -278,7 +268,19 @@ export default { ...@@ -278,7 +268,19 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {
data:[], stmData: {
columns: [
"8 1 \"Entity\" 100 1 0",
"7 2 \"Object Identification\" 390 1 0",
"6 3 \"Ident\" 100 1 0",
"1 4 \"Service\" 100 1 0 3 SRVTXT",
"2 5 \"Status\" 100 1 0 2 WFE:STA",
"3 6 \"Retries\" 100 2 20:1 1 FormatRTR",
"4 7 \"Target\" auto 20 30 1"
],
data: [
]
},
}; };
}, },
methods: { ...Event }, methods: { ...Event },
......
...@@ -146,7 +146,7 @@ export default { ...@@ -146,7 +146,7 @@ export default {
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
this.updateModel(rtnmsg.data)
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment