“dzb”
2022-09-27 7991973cf4c25527e227b80192e0bd087cfcee58
src/views/systemSetting/baseSetting/department/index.vue
@@ -6,13 +6,13 @@
                    <span>筛选条件:</span>
                    <el-input v-model="context" placeholder="请输入内容"></el-input>
                    <div class="findBtn">
                        <el-button type="primary" @click="search()" >查询</el-button>
                        <el-button type="primary" @click="search()">查询</el-button>
                    </div>
                </div>
                <div class="addUser">
                    <el-button class="addBtn" type="primary" @click="dialogCreate = true">新增部门</el-button>
                    <el-dialog :visible.sync="dialogCreate" title="新增部门信息" width="45%" v-if="dialogCreate">
                        <createUser :refresh="getUserList" />
                        <createUser :refresh="context==='' ? getUserList : search " />
                    </el-dialog>
                </div>
            </div>
@@ -25,7 +25,7 @@
                    :data="tableData" style="width: 100%" :row-class-name="tableRowClassName">
                    <el-table-column type="selection" min-width="5">
                    </el-table-column>
                    <el-table-column  prop="id" label="部门ID" min-width="5">
                    <el-table-column prop="id" label="部门ID" min-width="5">
                        <!-- <template slot-scope="scope">{{ scope.row.id }}</template> -->
                    </el-table-column>
                    <el-table-column prop="departName" label="部门名称" min-width="10">
@@ -51,14 +51,18 @@
                                <span class="line">|</span>
                                <!-- <span>修改密码</span> -->
                                <!-- <span>删除</span> -->
                                <span @click="handleUpdate(scope.row)">修改部门</span>
                                <span @click="handleUpdate(scope.row)">修改</span>
                                <span class="line">|</span>
                                <span @click="handleDelete(scope.row)">删除</span>
                            </div>
                        </template>
                    </el-table-column>
                </el-table>
                <!-- 查看修改页面 -->
                <el-dialog :visible.sync="dialogUpdate" width="45%" :title="updateFlag ? '修改部门信息' :'查看部门信息'" v-if="dialogUpdate">
                    <updateUser :updateFlag="updateFlag" :userInfo="userInfo" :getUserList="getUserList"  @changeDialog="changMyDialog"  />
                <el-dialog :visible.sync="dialogUpdate" width="45%" :title="updateFlag ? '修改部门信息' :'查看部门信息'"
                    v-if="dialogUpdate">
                    <updateUser :updateFlag="updateFlag" :userInfo="userInfo" :getUserList="context==='' ? getUserList : search"
                        @changeDialog="changMyDialog" />
                </el-dialog>
                <!-- 分页 -->
                <div class="pagination">
@@ -89,13 +93,35 @@
            totalNum: 200,
            pageSize: 10,
            currentPage: 1,
            context:''
            context: ''
        }
    },
    created() {
        this.getUserList();
    },
    methods: {
        handleDelete({ id }) {
            this.$confirm('确认删除?')
                .then(_ => {
                    this.$axios({
                        method: 'post',
                        url: 'sccg/depart/delete',
                        data: {
                            id
                        }
                    })
                        .then(res => {
                            console.log(res);
                            this.$message({
                                type: res.code===404 ? 'warning':'success',
                                message: res.message
                            })
                            this.getUserList();
                        })
                })
                .catch(_ => {});
        },
        // 修改角色
        handleChangeRole(obj) {
            this.dialogUpdate = true
@@ -107,7 +133,7 @@
            let { id, status } = obj;
            status == true ? status = 1 : status = 0;
            console.log(id, status);
            this.$axios.post(`sccg/depart/status` ,{id:id,status:status}).then(res => {
            this.$axios.post(`sccg/depart/status`, { id: id, status: status }).then(res => {
                console.log(res);
            })
        },
@@ -131,14 +157,14 @@
            const that = this;
            this.dialogCreate = false;
            // 获取所有用户信息
            this.$axios.get('sccg/depart/page',{params:{currentPage:this.currentPage,pageSize:this.pageSize,departName:this.context}}).then(res => {
            this.$axios.get('sccg/depart/page', { params: { currentPage: this.currentPage, pageSize: this.pageSize, departName: this.context } }).then(res => {
                if (res.code === 200) {
                    res.data.records.forEach(item => {
                        item.createTime = helper(item.createTime);
                        item.status == 1 ? item.status = true : item.status = false;
                    })
                    that.totalNum = res.data.records.length;
                    that.tableData = res.data.records.slice((that.currentPage-1)*10,that.currentPage*10)
                    that.tableData = res.data.records.slice((that.currentPage - 1) * this.pageSize, that.currentPage * this.pageSize)
                }
            })
        },
@@ -164,22 +190,22 @@
            this.userInfo = rowData
        },
        // 当前页改变触发事件
        changeCurrentPage(page){
        changeCurrentPage(page) {
            this.currentPage = page;
            this.search();
        },
        // 上一页点击事件
        handlePrev(page){
        handlePrev(page) {
            this.currentPage = page;
            this.search();
        },
        // 下一页点击事件
        handleNext(page){
        handleNext(page) {
            this.currentPage = page;
            this.search();
        },
         // 关闭dialog
         changMyDialog(val){
        // 关闭dialog
        changMyDialog(val) {
            this.dialogUpdate = val.dialogFlag;
        }
    },
@@ -335,22 +361,26 @@
    &::v-deep .el-dialog__body {
        background-color: #06122c;
    }
    &::v-deep .el-dialog__header{
    &::v-deep .el-dialog__header {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 20px;
        line-height: 60px;
    }
    &::v-deep .el-dialog__title{
    &::v-deep .el-dialog__title {
        color: #4b9bb7;
    }
    &::v-deep .el-dialog__close{
    &::v-deep .el-dialog__close {
        width: 20px;
        height: 20px;
        // color: #fff;
    }
    &::v-deep .el-dialog__body{
    &::v-deep .el-dialog__body {
        padding: 0;
    }
}