“dzb”
2022-09-20 0c966cb74acac1a1cc3bcaaa579019f1177d3e36
解决dialog数据不销毁
3个文件已修改
12 ■■■■ 已修改文件
src/views/systemSetting/baseSetting/authority/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/systemSetting/baseSetting/department/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/systemSetting/baseSetting/role/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/systemSetting/baseSetting/authority/index.vue
@@ -11,7 +11,7 @@
                </div>
                <div class="addUser">
                    <el-button class="addBtn" type="primary" @click="dialogCreate = true">添加用户</el-button>
                    <el-dialog :visible.sync="dialogCreate" width="45%">
                    <el-dialog :visible.sync="dialogCreate" width="45%" v-if="dialogCreate">
                        <createUser :refresh="getUserList" />
                    </el-dialog>
                </div>
@@ -63,7 +63,7 @@
                    </el-table-column>
                </el-table>
                <!-- 查看修改页面 -->
                <el-dialog :visible.sync="dialogUpdate" width="45%">
                <el-dialog :visible.sync="dialogUpdate" width="45%" v-if="dialogUpdate">
                    <updateUser :updateFlag="updateFlag" :userInfo=userInfo />
                </el-dialog>
                <!-- 分页 -->
src/views/systemSetting/baseSetting/department/index.vue
@@ -11,7 +11,7 @@
                </div>
                <div class="addUser">
                    <el-button class="addBtn" type="primary" @click="dialogCreate = true">新增部门</el-button>
                    <el-dialog :visible.sync="dialogCreate" width="45%">
                    <el-dialog :visible.sync="dialogCreate" width="45%" v-if="dialogCreate">
                        <createUser :refresh="getUserList" />
                    </el-dialog>
                </div>
@@ -57,7 +57,7 @@
                    </el-table-column>
                </el-table>
                <!-- 查看修改页面 -->
                <el-dialog :visible.sync="dialogUpdate" width="45%">
                <el-dialog :visible.sync="dialogUpdate" width="45%" v-if="dialogUpdate">
                    <updateUser :updateFlag="updateFlag" :userInfo=userInfo />
                </el-dialog>
                <!-- 分页 -->
src/views/systemSetting/baseSetting/role/index.vue
@@ -11,7 +11,7 @@
                </div>
                <div class="addUser">
                    <el-button class="addBtn" type="primary" @click="dialogCreate = true">新建角色</el-button>
                    <el-dialog :visible.sync="dialogCreate" width="45%">
                    <el-dialog :visible.sync="dialogCreate" width="45%" v-if="dialogCreate">
                        <createUser :refresh="getUserList" />
                    </el-dialog>
                </div>
@@ -57,7 +57,7 @@
                    </el-table-column>
                </el-table>
                <!-- 查看修改页面 -->
                <el-dialog :visible.sync="dialogUpdate" width="45%">
                <el-dialog :visible.sync="dialogUpdate" width="45%" v-if="dialogUpdate">
                    <updateUser :updateFlag="updateFlag" :userInfo=userInfo />
                </el-dialog>
                <!-- 分页 -->