| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作"> |
| | | |
| | | <template slot-scope="{row}"> |
| | | <div class="operationClass"> |
| | | <el-button v-if="row.isVisible===0" type="text" @click="delSetting(row)">删除</el-button> |
| | |
| | | <el-button v-if="row.isVisible===1" type="text" @click="formSettingCancel(row)">取消</el-button> |
| | | </div> |
| | | </template> |
| | | <!-- <template v-for="item in RoleTypeCodeArr" slot-scope="{row}">--> |
| | | <!-- <div :key="item.roletype_code" class="operationClass">--> |
| | | <!-- <el-button v-if="item.isVisible" type="text" @click="formSettingSave(row)">保存</el-button>--> |
| | | <!-- <el-button v-if="item.isVisible" type="text" @click="formSettingCancel(row)">取消</el-button>--> |
| | | <!-- </div>--> |
| | | <!-- </template>--> |
| | | </el-table-column> |
| | | </el-table> |
| | | <!--分页--> |
| | |
| | | } |
| | | const res = await RoleTypeAdd([data]) |
| | | if (res.code === '200') { |
| | | this.$message.success('添加成功!') |
| | | this.$message.success('保存成功!') |
| | | await this.getRoleTypeSearch() |
| | | } |
| | | }, |