Your Name
2022-06-27 0a3027eccd3b0bb6542e5fc831f7e02740dcfc95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<template>
    <div class="system-edit-dept-container">
        <el-dialog title="修改部门" v-model="isShowDialog" width="769px">
            <el-form :model="ruleForm" size="default" label-width="90px">
                <el-row :gutter="35">
                    <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
                        <el-form-item label="上级部门">
                            <el-cascader
                                :options="deptData"
                                :props="{ checkStrictly: true, value: 'deptName', label: 'deptName' }"
                                placeholder="请选择部门"
                                clearable
                                class="w100"
                                v-model="ruleForm.deptLevel"
                            >
                                <template #default="{ node, data }">
                                    <span>{{ data.deptName }}</span>
                                    <span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
                                </template>
                            </el-cascader>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="部门名称">
                            <el-input v-model="ruleForm.deptName" placeholder="请输入部门名称" clearable></el-input>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="负责人">
                            <el-input v-model="ruleForm.person" placeholder="请输入负责人" clearable></el-input>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="手机号">
                            <el-input v-model="ruleForm.phone" placeholder="请输入手机号" clearable></el-input>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="邮箱">
                            <el-input v-model="ruleForm.email" placeholder="请输入" clearable></el-input>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="排序">
                            <el-input-number v-model="ruleForm.sort" :min="0" :max="999" controls-position="right" placeholder="请输入排序" class="w100" />
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
                        <el-form-item label="部门状态">
                            <el-switch v-model="ruleForm.status" inline-prompt active-text="启" inactive-text="禁"></el-switch>
                        </el-form-item>
                    </el-col>
                    <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
                        <el-form-item label="部门描述">
                            <el-input v-model="ruleForm.describe" type="textarea" placeholder="请输入部门描述" maxlength="150"></el-input>
                        </el-form-item>
                    </el-col>
                </el-row>
            </el-form>
            <template #footer>
                <span class="dialog-footer">
                    <el-button @click="onCancel" size="default">取 消</el-button>
                    <el-button type="primary" @click="onSubmit" size="default">修 改</el-button>
                </span>
            </template>
        </el-dialog>
    </div>
</template>
 
<script lang="ts">
import { reactive, toRefs, onMounted, defineComponent } from 'vue';
 
// 定义接口来定义对象的类型
interface TableDataRow {
    deptName: string;
    createTime: string;
    status: boolean;
    sort: number;
    describe: string;
    id: number;
    children?: TableDataRow[];
}
interface RuleFormState {
    deptLevel: Array<string>;
    deptName: string;
    person: string;
    phone: string | number;
    email: string;
    sort: number;
    status: boolean;
    describe: string;
}
interface DeptSate {
    isShowDialog: boolean;
    ruleForm: RuleFormState;
    deptData: Array<TableDataRow>;
}
 
export default defineComponent({
    name: 'systemEditDept',
    setup() {
        const state = reactive<DeptSate>({
            isShowDialog: false,
            ruleForm: {
                deptLevel: [], // 上级部门
                deptName: '', // 部门名称
                person: '', // 负责人
                phone: '', // 手机号
                email: '', // 邮箱
                sort: 0, // 排序
                status: true, // 部门状态
                describe: '', // 部门描述
            },
            deptData: [], // 部门数据
        });
        // 打开弹窗
        const openDialog = (row: RuleFormState) => {
            row.deptLevel = ['vueNextAdmin'];
            row.person = 'lyt';
            row.phone = '12345678910';
            row.email = 'vueNextAdmin@123.com';
            state.ruleForm = row;
            state.isShowDialog = true;
        };
        // 关闭弹窗
        const closeDialog = () => {
            state.isShowDialog = false;
        };
        // 取消
        const onCancel = () => {
            closeDialog();
        };
        // 新增
        const onSubmit = () => {
            closeDialog();
        };
        // 初始化部门数据
        const initTableData = () => {
            state.deptData.push({
                deptName: 'vueNextAdmin',
                createTime: new Date().toLocaleString(),
                status: true,
                sort: Math.random(),
                describe: '顶级部门',
                id: Math.random(),
                children: [
                    {
                        deptName: 'IT外包服务',
                        createTime: new Date().toLocaleString(),
                        status: true,
                        sort: Math.random(),
                        describe: '总部',
                        id: Math.random(),
                    },
                    {
                        deptName: '资本控股',
                        createTime: new Date().toLocaleString(),
                        status: true,
                        sort: Math.random(),
                        describe: '分部',
                        id: Math.random(),
                    },
                ],
            });
        };
        // 页面加载时
        onMounted(() => {
            initTableData();
        });
        return {
            openDialog,
            closeDialog,
            onCancel,
            onSubmit,
            ...toRefs(state),
        };
    },
});
</script>