1
lzhe
2024-12-25 fe120db2304897c6670fa9b4ac36a36006313ece
1
已修改1个文件
8 ■■■■■ 文件已修改
src/views/console/authority/datascope.vue 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/console/authority/datascope.vue
@@ -1,8 +1,8 @@
<!--
 * @Author: lzhe lzhe@example.com
 * @Date: 2024-03-26 10:28:33
 * @LastEditors: gaoshp
 * @LastEditTime: 2024-10-05 21:26:31
 * @LastEditors: lzhe lzhe@example.com
 * @LastEditTime: 2024-12-25 15:56:41
 * @FilePath: /cps-web/src/views/console/authority/datascope.vue
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
@@ -58,7 +58,7 @@
                </el-table>
            </div>
        </div>
        <el-drawer title="[控制中心]数据权限配置" v-model="drawer" :direction="direction" :before-close="handleClose" size="920"
        <el-drawer :title="drawerTitle" v-model="drawer" :direction="direction" :before-close="handleClose" size="920"
            class="drawerStyle">
            <el-form :inline="true" :model="drawerSearchData" label-width="120px">
                <el-form-item label="菜单名称">
@@ -118,6 +118,7 @@
    name: "datascope",
    data() {
        return {
            drawerTitle: "[控制中心]数据权限配置",
            scopeTypeNameList: [],
            dialog: {
                save: false
@@ -260,6 +261,7 @@
        showDrawer(row) {
            this.rowId = row.id;
            this.tableRow = row;  //后面组件会用到
            this.drawerTitle = `[${row.name}]数据权限配置`;
            this.drawerSearchclick();
            this.drawer = true;
        },