index.vue
11.2 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<!-- -->
<template>
<div class="dictStyle">
<!-- 左侧列表 -->
<div class="leftTable">
<el-card class="box-card">
<div class="cardItem">
<!-- 顶部搜索框 -->
<div class="formSearch">
<el-form :inline="true" :model="formInline">
<el-form-item label="字典名称">
<el-input v-model="formInline.search" placeholder="请输入字典名称" />
</el-form-item>
<el-form-item>
<el-button style="background-color: #3F9B6A;color: #fff;" @click="search">查询</el-button>
<el-button class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="clear">重置</el-button>
<el-button style="background-color: #3F9B6A;color: #fff;" @click="add">新建</el-button>
</el-form-item>
</el-form>
</div>
<!-- 表格 -->
<div class="tableBox">
<el-table
ref="singleTable"
:data="tableData"
highlight-current-row
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
@current-change="tableChange"
>
<el-table-column type="index" width="50" />
<el-table-column property="dictName" label="字典名称" width="220" />
<el-table-column property="dictDescribe" label="字典描述" width="120" />
<el-table-column property="createTime" label="创建时间" />
<el-table-column label="操作" show-overflow-tooltip>
<template slot-scope="scope">
<div class="btnList">
<div class="tableBtn greens" @click="edit(scope.row)">编辑</div>
<div class="tableBtn greens" @click="del(scope.row)">删除</div>
</div>
</template>
</el-table-column>
</el-table>
<div class="fenye">
<el-pagination
:current-page="currentPage"
:page-sizes="[10, 20, 50, 100]"
:page-size="10"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</div>
</div>
</el-card>
</div>
<!-- 右侧列表 -->
<div class="rightTable">
<el-card class="box-card">
<span class="cardSpan">字典详情</span>
<el-button style="background-color: #3F9B6A;color: #fff;float: right; padding: 3px 0" @click="addNewDict">新增</el-button>
<div class="cardItem">
<!-- 表格 -->
<div class="tableBox">
<el-table ref="singleTable" :data="anothTable" style="width: 100%">
<el-table-column type="index" width="50" />
<el-table-column property="dictName" label="字典名称" width="120" />
<el-table-column property="dictDescribe" label="字典描述" width="120" />
<el-table-column property="createTime" label="创建时间" />
<el-table-column label="操作" show-overflow-tooltip>
<template slot-scope="scope">
<div class="btnList">
<div class="tableBtn greens" @click="edit(scope.row)">编辑</div>
<div class="tableBtn greens" @click="del(scope.row)">删除</div>
</div>
</template>
</el-table-column>
</el-table>
<div class="fenye">
<el-pagination
:current-page="currentPage"
:page-sizes="[10, 20, 50, 100]"
:page-size="10"
layout="total, sizes, prev, pager, next, jumper"
:total="antotal"
@size-change="handleSizeChanges"
@current-change="handleCurrentChanges"
/>
</div>
</div>
</div>
</el-card>
</div>
<!-- *************对话框开始************* -->
<el-dialog
:title="userState ? '新增字典' : '修改字典'"
:visible.sync="addFormDialog"
width="30%"
center
:close-on-click-modal="false"
>
<!-- 新增角色 -->
<div>
<el-form ref="ruleForm" :model="addForm" label-width="80px" :rules="userRules">
<el-form-item label="字典名称" prop="dictName">
<el-input v-model="addForm.dictName" placeholder="请输入字典名称" />
</el-form-item>
<el-form-item label="字典描述">
<el-input v-model="addForm.dictDescribe" placeholder="请输入字典描述" />
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="addFormDialog = false" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取 消</el-button>
<el-button type="primary" @click="addForm_enter('ruleForm')">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
// 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
// 例如:import 《组件名称》 from '《组件路径》';
import {
dictGetAll,
dictAdd,
dictGetById,
dictUpdate,
dictGetChilds,
dictDelete
} from '@/api/setup'
export default {
// import引入的组件需要注入到对象中才能使用
components: {},
data() {
// 这里存放数据
return {
formInline: {
search: '',
page: 1,
pageSize: 10
},
sonInline: {
dictPid: '',
page: 1,
pageSize: 10
},
total: 1,
antotal: 1,
tableData: [],
anothTable: [],
currentPage: 1,
addFormDialog: false,
addForm: {
dictId: '', // 字典id
dictPid: '', // 字典父id
dictName: '', // 字典名称
dictDescribe: '', // 字典描述
createTime: '' // 创建时间
},
userState: 1,
userRules: {
dictName: [
{ required: true, message: '请输入字典名称', trigger: 'blur' }
]
}
}
},
// 监听属性 类似于data概念
computed: {},
// 监控data中的数据变化
watch: {},
// 生命周期 - 创建完成(可以访问当前this实例)
created() {},
// 生命周期 - 挂载完成(可以访问DOM元素)
mounted() {
this.getAll(this.formInline)
},
activated() {},
// 方法集合
methods: {
handleSizeChange(val) {
this.formInline.pageSize = val
this.getAll(this.formInline)
},
handleCurrentChange(val) {
this.formInline.page = val
this.getAll(this.formInline)
},
handleSizeChanges(val) {
this.sonInline.pageSize = val
this.getAllR(this.sonInline)
},
handleCurrentChanges(val) {
this.sonInline.page = val
this.getAllR(this.sonInline)
},
tableChange(val) {
console.log(val)
this.sonInline.dictPid = val.dictId
dictGetChilds(this.sonInline).then(res => {
console.log(res)
this.anothTable = res.data.list
this.antotal = res.data.total
})
},
// 初始化查询所有数据
async getAllR(formInline) {
const res = await dictGetChilds(formInline)
this.anothTable = res.data.list
this.antotal = res.data.total
},
// 查询
search() {
this.total = 1
this.formInline.page = 1
this.getAll(this.formInline)
},
// 新增
add() {
this.userState = 1
this.addFormDialog = true
this.addForm = {
dictId: '', // 字典id
dictPid: '', // 字典父id
dictName: '', // 字典名称
dictDescribe: '', // 字典描述
createTime: '' // 创建时间
}
},
// 新增子字典
addNewDict() {
this.userState = 1
this.addFormDialog = true
this.addForm = {
dictId: '', // 字典id
dictPid: '', // 字典父id
dictName: '', // 字典名称
dictDescribe: '', // 字典描述
createTime: '' // 创建时间
}
this.addForm.dictPid = this.sonInline.dictPid
console.log(this.addForm)
},
// 编辑
edit(row) {
this.userState = 0
this.addFormDialog = true
console.log(row)
dictGetById({ dictId: row.dictId }).then(res => {
this.addForm = res.data
console.log(this.addForm)
// this.addForm.roleIds = [1];
})
},
// 删除角色
async del(row) {
const res = await dictDelete({ dictId: row.dictId })
if (res.code === '') {
this.$message({
message: '删除成功',
type: 'success'
})
this.getAll(this.formInline)
this.tableChange({
dictId: this.sonInline.dictPid
})
}
},
// 确认新增字典
addForm_enter(ruleForm) {
this.$refs[ruleForm].validate(valid => {
if (valid) {
if (this.userState) {
dictAdd(this.addForm).then(res => {
console.log(res)
if (res.code === '') {
this.$message({
message: '新增成功',
type: 'success'
})
}
this.getAll(this.formInline)
this.tableChange({
dictId: this.sonInline.dictPid
})
this.addFormDialog = false
})
} else {
console.log(this.addForm)
dictUpdate(this.addForm).then(res => {
console.log(res)
if (res.code === '') {
this.$message({
message: '修改成功',
type: 'success'
})
}
this.getAll(this.formInline)
this.tableChange({
dictId: this.sonInline.dictPid
})
this.addFormDialog = false
})
}
} else {
console.log('error submit!!')
return false
}
})
},
clear() {
this.formInline = {
search: '', // 搜索字段
page: '1', // 当前页
pageSize: '10' // 每页记录数
}
this.getAll(this.formInline)
},
// 初始化查询所有数据
async getAll(formInline) {
const res = await dictGetAll(formInline)
this.tableData = res.data.list
this.total = res.data.total
}
} // 如果页面有keep-alive缓存功能,这个函数会触发
}
</script>
<style lang='scss' scoped>
//@import url(); 引入公共css类
@import url("../../../styles/elDialog.scss");
.dictStyle {
display: flex;
padding: 20px;
justify-content: space-between;
align-items: flex-start;
}
.leftTable {
width: 49%;
}
.rightTable {
width: 49%;
}
.cardSpan {
font-size: 15px;
color: #606266;
font-weight: bold;
}
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
.greens {
color: #3F9B6A;
}
</style>