...
|
...
|
@@ -35,54 +35,62 @@ |
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-table
|
|
|
:data="umb_queryData.tableData"
|
|
|
border size="small"
|
|
|
:header-cell-style="{background:'#6F8294',color:'#FFFFFF'}"
|
|
|
style="border-radius: 10px 10px 0px 0px;line-height: 25px;">
|
|
|
<el-table-column
|
|
|
prop="sndr"
|
|
|
label="帐户名称"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="btype"
|
|
|
label="消息大类"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="stype"
|
|
|
label="消息子类"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="rcvr_topic"
|
|
|
label="订阅主题"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-for="reciver in scope.row.rcvrList">
|
|
|
{{reciver.rcvrTopic}}<!--,{{reciver.filterList.filter}}-->
|
|
|
<!-- <div v-for="filters in reciver.filterList">{{filters.filter}}</div>-->
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="filter"
|
|
|
label="过滤规则"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-for="reciver in scope.row.rcvrList">
|
|
|
<!-- {{reciver.rcvrTopic}},{{reciver.filterList.filter}}-->
|
|
|
<div v-for="filters in reciver.filterList">{{reciver.rcvrTopic}}:[{{filters.filter}}]</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="145px" align="center" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-col :span="24">
|
|
|
<el-table
|
|
|
:data="umb_queryData.tableData"
|
|
|
border size="small"
|
|
|
:header-cell-style="{background:'#6F8294',color:'#FFFFFF'}"
|
|
|
style="border-radius: 10px 10px 0px 0px;line-height: 25px;">
|
|
|
<el-table-column
|
|
|
prop="sndr"
|
|
|
label="帐户名称"
|
|
|
width="200"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="btype"
|
|
|
label="消息大类"
|
|
|
width="100"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="stype"
|
|
|
label="消息子类"
|
|
|
width="100"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="rcvr_topic"
|
|
|
label="订阅主题"
|
|
|
width="150"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-for="reciver in scope.row.rcvrList">
|
|
|
{{reciver.rcvrTopic}}<!--,{{reciver.filterList.filter}}-->
|
|
|
<!-- <div v-for="filters in reciver.filterList">{{filters.filter}}</div>-->
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="filter"
|
|
|
label="过滤规则"
|
|
|
width="350"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-for="reciver in scope.row.rcvrList">
|
|
|
<!-- {{reciver.rcvrTopic}},{{reciver.filterList.filter}}-->
|
|
|
<div v-for="filters in reciver.filterList">[{{reciver.rcvrTopic}}]:{{filters.filter}}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="150" align="center" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="danger" size="mini" @click="delRouter(scope.$index,scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<div class="block">
|
...
|
...
|
|