| ... | ... | @@ -69,6 +69,8 @@ | 
|  |  | <el-table-column label="队列名称" prop="queueName" align="center" width="220"></el-table-column> | 
|  |  | <el-table-column label="路由键名称" prop="routingKeyName" align="center" | 
|  |  | width="220"></el-table-column> | 
|  |  | <el-table-column label="相关描述" prop="description" align="center" | 
|  |  | width="220"></el-table-column> | 
|  |  | <el-table-column label="操作" width="245px" align="center" fixed="right"> | 
|  |  | <template slot-scope="scope"> | 
|  |  | <!-- 编辑按钮--> | 
| ... | ... | @@ -117,10 +119,10 @@ | 
|  |  | <div> | 
|  |  | <el-dialog title="添加配置信息" | 
|  |  | :visible.sync="umb_dialog.addDialog" | 
|  |  | style="margin-top: -50px" text-align="center" width="50%" | 
|  |  | style="margin-top: -50px" text-align="center" width="58%" | 
|  |  | @close="umb_addDialogClosed"> | 
|  |  |  | 
|  |  | <el-form :inline="true" label-width="120px" status-icon style="margin-top: -10px" align="center" | 
|  |  | <el-form :inline="true" label-width="120px" status-icon style="margin-top: 0px" align="center" | 
|  |  | :model="umb_addForm" :rules="umb_addFormRules" ref="umb_addFormRef"> | 
|  |  | <el-form-item label="用户名称:" prop="username"> | 
|  |  | <el-input v-model="umb_addForm.username" style="width:240px" size="small" clearable | 
| ... | ... | @@ -203,8 +205,13 @@ | 
|  |  | </el-option> | 
|  |  | </el-select> | 
|  |  | </el-form-item> | 
|  |  | <el-form-item label="相关描述:" prop="description"> | 
|  |  | <el-input v-model="umb_addForm.description" style="width:240px" size="small" clearable | 
|  |  | placeholder="请输入相关描述"> | 
|  |  | </el-input> | 
|  |  | </el-form-item> | 
|  |  | </el-form> | 
|  |  | <div slot="footer" class="dialog-footer" style="text-align: center;margin-top: -20px"> | 
|  |  | <div slot="footer" class="dialog-footer" style="text-align: center;margin-top: 0px"> | 
|  |  | <el-button type="info" @click="umb_dialog.addDialog = false" size="medium" | 
|  |  | style="width: 100px">取消 | 
|  |  | </el-button> | 
| ... | ... | @@ -218,9 +225,9 @@ | 
|  |  | <div> | 
|  |  | <el-dialog title="编辑配置信息" | 
|  |  | :visible.sync="umb_dialog.editDialog" | 
|  |  | style="margin-top: -50px" text-align="center" width="50%" | 
|  |  | style="margin-top: -50px" text-align="center" width="58%" | 
|  |  | @close="umb_editDialogClosed"> | 
|  |  | <el-form :inline="true" label-width="120px" status-icon style="margin-top: -10px" align="center" | 
|  |  | <el-form :inline="true" label-width="120px" status-icon style="margin-top: 0px" align="center" | 
|  |  | :model="umb_editForm" :rules="umb_editFormRules" ref="umb_editFormRef"> | 
|  |  | <el-form-item label="用户名称:" prop="username"> | 
|  |  | <el-input v-model="umb_editForm.username" style="width:240px" size="small" clearable | 
| ... | ... | @@ -304,6 +311,11 @@ | 
|  |  | </el-option> | 
|  |  | </el-select> | 
|  |  | </el-form-item> | 
|  |  | <el-form-item label="相关描述:" prop="description"> | 
|  |  | <el-input v-model="umb_editForm.description" style="width:240px" size="small" clearable | 
|  |  | placeholder="请输入相关描述"> | 
|  |  | </el-input> | 
|  |  | </el-form-item> | 
|  |  | </el-form> | 
|  |  | <div slot="footer" class="dialog-footer" style="text-align: center"> | 
|  |  | <el-button type="info" @click="umb_dialog.editDialog = false" size="medium" | 
... | ... |  |