index.vue
13.3 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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<!-- -->
<template>
<div class="userStyle">
<!-- 搜索 -->
<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 label="是否启用">
<el-select v-model="formInline.state" placeholder="请选择">
<el-option label="是" value="1" />
<el-option label="否" value="0" />
</el-select>
</el-form-item>
<el-form-item>
<el-button style="background-color: #3F9B6A;color: #fff;" @click="search">查询</el-button>
<el-button style="background-color: #3F9B6A;color: #fff;" @click="add">新增用户</el-button>
<el-button class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="clear">重置</el-button>
</el-form-item>
</el-form>
</div>
<!-- 表格 -->
<div class="tableBox">
<el-table
ref="multipleTable"
:data="tableData"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
tooltip-effect="dark"
>
<el-table-column label="用户名" width="220">
<template slot-scope="scope">{{ scope.row.username }}</template>
</el-table-column>
<el-table-column prop="name" label="姓名" />
<el-table-column prop="sex" label="性别" />
<el-table-column prop="phone" label="电话" />
<el-table-column prop="email" label="邮箱" />
<el-table-column prop="state" label="是否启用">
<template slot-scope="scope">
<span v-if="scope.row.state == 0">停用</span>
<span v-if="scope.row.state == 1">启用</span>
</template>
</el-table-column>
<el-table-column prop="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>
<!-- *************对话框开始************* -->
<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="username">
<el-input v-model="addForm.username" placeholder="请输入用户名" />
</el-form-item>
<el-form-item label="姓名" prop="name">
<el-input v-model="addForm.name" placeholder="请输入姓名" />
</el-form-item>
<el-form-item label="手机号">
<el-input v-if="phoneShow" :value="hidden(addForm.phone,3,4)" @focus="focusPhoneInput" placeholder="请输入手机号" />
<el-input v-if="!phoneShow" ref="phoneCls" v-model="addForm.phone" @change="changePhoneInput" clearable placeholder="请输入手机号" />
<!-- <div @click="inputPhone" v-else class="newPhone">
<span>{{ hidePhone(addForm.phone) }}</span>
</div> -->
</el-form-item>
<el-form-item label="密码">
<el-input v-model="addForm.password" placeholder="请输入密码" show-password />
</el-form-item>
<el-form-item label="邮箱">
<el-input v-if="emailShow" ref="emailCls" :value="hidden(addForm.email,3,4)" @focus="focusEmailInput" placeholder="请输入邮箱" />
<el-input v-else ref="phoneCls" v-model="addForm.email" @change="changeEmailInput" clearable placeholder="请输入邮箱" />
<!-- <el-input v-model="addForm.email" placeholder="请输入邮箱" /> -->
</el-form-item>
<el-form-item label="性别">
<el-radio-group v-model="addForm.sex">
<el-radio label="男" />
<el-radio label="女" />
</el-radio-group>
</el-form-item>
<el-form-item label="是否启用">
<el-select v-model="addForm.state" placeholder="请选择">
<el-option label="是" :value="1" />
<el-option label="否" :value="0" />
</el-select>
</el-form-item>
<el-form-item label="选择角色">
<el-select
v-model="addForm.roleIds"
multiple
placeholder="请选择"
@remove-tag="removeTag"
@change="tagChange"
>
<el-option
v-for="item in roleList"
:key="item.roleId"
:label="item.roleName"
:value="item.roleId"
/>
</el-select>
</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 style="background-color: #3F9B6A;color: #fff;" @click="addForm_enter('ruleForm')">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
// 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
// 例如:import 《组件名称》 from '《组件路径》';
import {
getList,
userAdd,
roleGetall,
userGetById,
userUpdate,
userDelete
} from '@/api/setup'
const PhoneRule = /^1(3\d|4[5-9]|5[0-35-9]|6[567]|7[0-8]|8\d|9[0-35-9])\d{8}$/
export default {
// import引入的组件需要注入到对象中才能使用
components: {},
data () {
// 这里存放数据
return {
formInline: {
search: '', // 搜索字段
state: '', // 是否启用 1-是 0-否
page: '1', // 当前页
pageSize: '10' // 每页记录数
},
total: 1,
tableData: [],
currentPage: 1,
userState: 1,
addForm: {
name: '', // 昵称
phone: '', // 电话
password: '', // 密码
email: '', // 邮箱
sex: '男', // 性别
state: 1, // 是否启用 1-是 0-否
roleIds: [] // 角色id
},
addFormDialog: false,
userRules: {
username: [
{ required: true, message: '请输入用户名', trigger: 'blur' }
],
name: [{ required: true, message: '请输入姓名', trigger: 'blur' }]
},
roleList: [],
newPhone: '',
showPhone: false,
shopInfo: {},
privacyTime: 0,
phoneShow: true, //显示脱敏手机号
emailShow: true, //显示脱敏邮箱
}
filter()
},
// 监听属性 类似于data概念
computed: {},
// 监控data中的数据变化
watch: {},
// 生命周期 - 创建完成(可以访问当前this实例)
created () {},
// 生命周期 - 挂载完成(可以访问DOM元素)
mounted () {
this.getAll(this.formInline)
this.privacyTime = localStorage.getItem("privacyTime");
},
// 方法集合
methods: {
focusEmailInput(){
this.emailShow = false
this.addForm.email = ''
// 自动获取焦点
this.$nextTick(() => {
this.$refs.emailCls.focus()
})
},
changeEmailInput(){},
focusPhoneInput(){
this.phoneShow = false
this.addForm.phone = ''
// 自动获取焦点
this.$nextTick(() => {
this.$refs.phoneCls.focus()
})
},
changePhoneInput(){
this.checkPhone()
},
// 检查手机号
checkPhone(){
if (this.addForm.phone!='' && !PhoneRule.test(this.addForm.phone)){
return this.$message.warning("请输入正确手机号");
}
},
handleSizeChange (val) {
this.formInline.pageSize = val
this.getAll(this.formInline)
},
handleCurrentChange (val) {
this.formInline.page = val
this.getAll(this.formInline)
},
removeTag (index) {
console.log(index)
},
tagChange (index) {
this.$forceUpdate()
console.log(index)
},
// 查询
search () {
this.total = 1
this.formInline.page = 1
this.getAll(this.formInline)
},
// 清除
clear () {
this.formInline = {
search: '', // 搜索字段
state: '', // 是否启用 1-是 0-否
page: '1', // 当前页
pageSize: '10' // 每页记录数
}
this.getAll(this.formInline)
},
// 新增用户
add () {
this.userState = 1
this.addFormDialog = true
this.showPhone = true
this.addForm = {
name: '', // 昵称
phone: '', // 电话
password: '', // 密码
email: '', // 邮箱
sex: '男', // 性别
state: 1, // 是否启用 1-是 0-否
roleIds: [] // 角色id
}
},
// 确认新增用户
addForm_enter (ruleForm) {
console.log(this.addForm,'this.addForm')
this.$refs[ruleForm].validate(valid => {
if (valid) {
//检查手机号码是否正确
if(this.checkPhone()){
return
}
if (this.userState) {
userAdd(this.addForm).then(res => {
console.log(res)
if (res.code === '') {
this.$message({
message: '新增成功',
type: 'success'
})
}
this.getAll(this.formInline)
this.addFormDialog = false
})
} else {
userUpdate(this.addForm).then(res => {
console.log(res)
if (res.code === '') {
this.$message({
message: '修改成功',
type: 'success'
})
}
this.getAll(this.formInline)
this.addFormDialog = false
})
}
} else {
console.log('error submit!!')
return false
}
})
},
// 编辑用户
edit (row) {
this.userState = 0
this.addFormDialog = true
this.showPhone = false
this.phoneShow = true
this.emailShow = true
console.log(row)
userGetById({ platformUserId: row.platformUserId }).then(res => {
this.addForm = res.data
this.addForm.roleIds = res.data.ids
console.log(this.addForm)
console.log(this.roleList)
// this.addForm.roleIds = [1];
})
},
// 删除用户
async del (row) {
this.$confirm('此操作将永久删除该用户, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
userDelete({ platformUserId: row.platformUserId }).then(res => {
if (res.code === '') {
this.$message({
type: 'success',
message: '删除成功!'
})
}
this.getAll(this.formInline)
})
})
.catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
})
})
},
// 初始化查询所有数据
async getAll (formInline) {
const res = await getList(formInline)
const res2 = await roleGetall({ search: '', page: 1, pageSize: 10 })
this.tableData = res.data.list
this.total = res.data.total
this.roleList = res2.data.list
},
// 隐藏中间号码
hidePhone (phone) {
// const reg = /^(\d{3})\d{4}(\d{4})$/
// phone = phone.replace(reg, '$1****$2')
return phone
},
// 中间部分
hidden(str, frontLen, endLen) {
let endLenData = 0
if (str && str.length !== 2) {
endLenData = endLen
}
const len = str.length - frontLen - endLenData;
let xing = '';
for (let i = 0; i < len; i++) {
xing += '*';
}
return (
str.substring(0, frontLen) + xing + str.substring(str.length - endLenData)
);
},
inputPhone () {
this.showPhone = true
this.newPhone = ''
this.$nextTick(() => {
this.$refs.phoneCls.focus()
})
}
}
}
</script>
<style lang='scss' scoped>
//@import url(); 引入公共css类
@import url("../../../styles/elDialog.scss");
.userStyle {
padding: 20px;
background-color: #Fff;
min-height: calc(100vh - 50px - 20px);
.newPhone {
width: 100%;
height: 40px;
line-height: 40px;
padding: 0 15px;
border-radius: 4px;
border: 1px solid #DCDFE6;
cursor: text;
}
}
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
.greens {
color: #3F9B6A;
}
</style>