Blame view

src/views/user/userlist.vue 22.2 KB
b89c8760   wangming   项目初始化
1
  <template>
1de913cf   ren   sdf
2
    <div class="app-container">
f6d2db76   yangzhi   超哥牛皮皮
3
      <div class="seetingsDiv" style="">
e6276ef2   yangzhi   超哥牛批
4
        <div class="flex" style="width: 75%">
cac28d75   周超   问卷 用户 维度
5
6
          <el-form :inline="true" class="demo-form-inline">
            <el-form-item label="关键字">
e6276ef2   yangzhi   超哥牛批
7
8
9
10
              <el-input
                placeholder="输入关键字搜索"
                v-model="query.keyword"
              ></el-input>
cac28d75   周超   问卷 用户 维度
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
            </el-form-item>
            <el-form-item label="最高学历">
              <el-select v-model="query.xueli" placeholder="最高学历">
                <el-option label="大专" value="shanghai"></el-option>
                <el-option label="本科" value="beijing"></el-option>
              </el-select>
            </el-form-item>
  
            <el-form-item label="性别">
              <el-select v-model="query.sex" placeholder="性别">
                <el-option label="男" value="1"></el-option>
                <el-option label="女" value="0"></el-option>
              </el-select>
            </el-form-item>
  
cac28d75   周超   问卷 用户 维度
26
27
            <el-form-item>
              <el-button type="success" @click="search">搜索</el-button>
f0b7a6c2   周超   志哥王哥牛批
28
              <el-button type="success" @click="resetSearch">重置</el-button>
e6276ef2   yangzhi   超哥牛批
29
30
31
32
33
34
              <el-button
                v-if="selectedList.length"
                type="primary"
                @click="handleInviteInterview"
                >邀请面试</el-button
              >
cac28d75   周超   问卷 用户 维度
35
36
            </el-form-item>
          </el-form>
f6d2db76   yangzhi   超哥牛皮皮
37
        </div>
f0b7a6c2   周超   志哥王哥牛批
38
  
e6276ef2   yangzhi   超哥牛批
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
        <div class="flex aligin-center">
          <el-link :href="BASE_URL+'/temp/用户导入模板.xlsx'" target="_blank" type="primary"
            >下载模板</el-link
          >
          <el-upload
            class="upload-demo"
            action="/api/Account/importUsers?UserClassId=0"
            multiple
            :limit="1"
            :show-file-list="false"
            :on-exceed="handleExceed"
            :on-success="handleSuccess"
            :file-list="fileList"
          >
            <el-button size="small" type="primary">导入用户</el-button>
          </el-upload>
        </div>
f6d2db76   yangzhi   超哥牛皮皮
56
      </div>
e6276ef2   yangzhi   超哥牛批
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
      <el-container style="border: 1px solid #eee">
        <el-aside
          width="255px"
          style="
            width: 255px;
            background-color: #fff;
            padding: 10px;
            border-right: 1px solid #dcdfe6;
          "
        >
          <div style="float: left">所属分类</div>
          <div style="text-align: right">
            <el-button
              size="mini"
              type="primary"
              icon="el-icon-plus"
              circle
              @click="addcat"
            ></el-button>
            <el-button
              size="mini"
              type="warning"
              icon="el-icon-edit"
              circle
              @click="editcat"
            ></el-button>
            <el-button
              size="mini"
              type="danger"
              icon="el-icon-delete"
              @click="delcat"
              circle
            ></el-button>
f0b7a6c2   周超   志哥王哥牛批
90
          </div>
e6276ef2   yangzhi   超哥牛批
91
92
93
94
95
96
          <el-input
            size="small "
            placeholder="分类筛选"
            v-model="filterText"
            style="margin-bottom: 10px; margin-top: 10px"
          >
f0b7a6c2   周超   志哥王哥牛批
97
          </el-input>
e6276ef2   yangzhi   超哥牛批
98
99
100
101
102
103
104
          <el-tree
            :data="data"
            :props="props"
            ref="tree"
            :filter-node-method="filterNode"
            @node-click="handleNodeClick"
          >
f0b7a6c2   周超   志哥王哥牛批
105
          </el-tree>
f0b7a6c2   周超   志哥王哥牛批
106
107
108
        </el-aside>
  
        <el-main>
f0b7a6c2   周超   志哥王哥牛批
109
          <div class="filter-container">
e6276ef2   yangzhi   超哥牛批
110
111
112
113
114
115
116
117
118
119
120
121
122
123
            <el-table
              ref="userList"
              :data="userList"
              id="QuestionTable"
              border
              style="
                width: 100%;
                border-radius: 5px;
                box-shadow: 0 0 10px #efefef;
                margin-top: 10px;
              "
              @selection-change="handleSelectionChange"
              :stripe="true"
            >
f0b7a6c2   周超   志哥王哥牛批
124
              <el-table-column type="selection" width="55"> </el-table-column>
e6276ef2   yangzhi   超哥牛批
125
126
127
128
129
130
              <el-table-column
                type="index"
                prop="date"
                width="50"
                align="center"
              ></el-table-column>
f0b7a6c2   周超   志哥王哥牛批
131
132
133
134
135
136
137
              <el-table-column prop="date" label="姓名">
                <template slot-scope="scope">
                  <span>{{ scope.row.fullName }}</span>
                </template>
              </el-table-column>
              <el-table-column prop="date" label="电话号码">
                <template slot-scope="scope">
e6276ef2   yangzhi   超哥牛批
138
139
140
141
142
143
                  <el-tooltip
                    class="item"
                    effect="dark"
                    :content="scope.row.phone"
                    placement="top-start"
                  >
f0b7a6c2   周超   志哥王哥牛批
144
145
146
147
148
149
                    <span>{{ scope.row.phone1 }}</span>
                  </el-tooltip>
                </template>
              </el-table-column>
  
              <el-table-column prop="date" label="近期测试">
e6276ef2   yangzhi   超哥牛批
150
151
152
153
154
155
156
157
                <template slot-scope="{ row }">
                  <el-button
                    v-if="row.TestPaperTitle || 1 == 1"
                    type="text"
                    icon="el-icon-star-off"
                    @click="handleTestHitory(row)"
                  ></el-button>
                  <span>{{ row.TestPaperTitle || "无" }}</span>
f0b7a6c2   周超   志哥王哥牛批
158
159
160
161
                </template>
              </el-table-column>
              <el-table-column prop="date" label="电话号码">
                <template slot-scope="scope">
e6276ef2   yangzhi   超哥牛批
162
163
164
165
166
167
                  <el-tooltip
                    class="item"
                    effect="dark"
                    :content="scope.row.phone"
                    placement="top-start"
                  >
f0b7a6c2   周超   志哥王哥牛批
168
169
170
171
172
                    <span>{{ scope.row.phone1 }}</span>
                  </el-tooltip>
                </template>
              </el-table-column>
  
e6276ef2   yangzhi   超哥牛批
173
174
175
176
177
178
179
180
181
182
              <el-table-column prop="date" label="性别" sortable>
              </el-table-column>
              <el-table-column prop="date" label="民族" sortable>
              </el-table-column>
              <el-table-column prop="date" label="专业" sortable>
              </el-table-column>
              <el-table-column prop="date" label="毕业院校" sortable>
              </el-table-column>
              <el-table-column prop="date" label="最高学历" sortable>
              </el-table-column>
f0b7a6c2   周超   志哥王哥牛批
183
184
185
186
187
188
189
190
191
  
              <el-table-column prop="addTime" label="录入时间" sortable>
                <template slot-scope="scope">
                  <span>{{ scope.row.addTime.replace("T", " ") }}</span>
                </template>
              </el-table-column>
  
              <el-table-column prop="date" label="操作" width="180">
                <template slot-scope="scope">
e6276ef2   yangzhi   超哥牛批
192
193
194
195
196
197
198
199
200
201
202
203
204
205
                  <el-button
                    type="text"
                    icon="el-icon-edit"
                    @click="handleEdit(scope.row)"
                    circle
                    >编辑</el-button
                  >
                  <el-button
                    type="text"
                    icon="el-icon-delete"
                    circle
                    @click="handleDelete(scope.row, scope.$index)"
                    >删除</el-button
                  >
f0b7a6c2   周超   志哥王哥牛批
206
207
208
                </template>
              </el-table-column>
            </el-table>
e6276ef2   yangzhi   超哥牛批
209
210
211
212
213
214
215
216
217
218
219
220
221
            <el-pagination
              background
              @current-change="currentchange"
              style="
                position: static;
                bottom: 3px;
                text-align: center;
                margin-top: 5px;
              "
              :page-size="this.query.PageSize"
              layout="total,prev, pager, next"
              :total="Count"
            >
f0b7a6c2   周超   志哥王哥牛批
222
223
            </el-pagination>
          </div>
f0b7a6c2   周超   志哥王哥牛批
224
        </el-main>
f0b7a6c2   周超   志哥王哥牛批
225
226
227
228
229
230
231
232
      </el-container>
  
      <el-dialog title="邀请面试-试卷选择" :visible.sync="dialogFormVisible">
        <el-form :model="form">
          <!-- <el-form-item label="活动名称" :label-width="formLabelWidth">
            <el-input v-model="form.name" autocomplete="off"></el-input>
          </el-form-item> -->
          <el-form-item label="试卷">
e6276ef2   yangzhi   超哥牛批
233
234
235
236
237
238
239
240
            <el-select
              v-model="form.TestPaperId"
              placeholder="请选择试卷"
              style="width: 80%"
            >
              <el-option :value="item.id" v-for="item in testpaperlist">{{
                "[" + item.id + "] " + (item.TestPaperTitle || "未命名")
              }}</el-option>
f0b7a6c2   周超   志哥王哥牛批
241
242
            </el-select>
          </el-form-item>
e011bf15   周超   我先走一步
243
          <el-form-item label="允许测评次数">
e6276ef2   yangzhi   超哥牛批
244
245
246
247
248
249
            <el-input
              v-model="form.NumberOfAnswers"
              type="number"
              placeholder="请输入允许测评次数"
              style="width: 30%"
            />
e011bf15   周超   我先走一步
250
          </el-form-item>
f0b7a6c2   周超   志哥王哥牛批
251
252
253
254
255
256
257
        </el-form>
        <div slot="footer" class="dialog-footer">
          <el-button @click="dialogFormVisible = false">取 消</el-button>
          <el-button type="primary" @click="handleShareSend">确认发送</el-button>
        </div>
      </el-dialog>
  
e6276ef2   yangzhi   超哥牛批
258
259
260
261
262
263
264
      <el-dialog
        title="测试历史记录"
        :visible.sync="dialogTableVisible"
        @close="gridData = []"
        height="800"
        width="80%"
      >
f0b7a6c2   周超   志哥王哥牛批
265
        <el-table :data="gridData" height="400">
e6276ef2   yangzhi   超哥牛批
266
267
268
269
270
271
272
273
274
275
276
          <el-table-column
            property="TestPaperTitle"
            label="试卷"
            sortable
          ></el-table-column>
          <el-table-column
            property="AnswerTime"
            label="测试时间"
            width="180"
            sortable
          >
f0b7a6c2   周超   志哥王哥牛批
277
278
279
            <template slot-scope="scope">
              <span>{{ scope.row.AnswerTime.replace("T", " ") }}</span>
            </template>
f0b7a6c2   周超   志哥王哥牛批
280
          </el-table-column>
e6276ef2   yangzhi   超哥牛批
281
282
283
284
285
286
          <el-table-column
            property="StartTime"
            label="开始时间"
            width="180"
            sortable
          >
f0b7a6c2   周超   志哥王哥牛批
287
288
289
290
            <template slot-scope="scope">
              <span>{{ scope.row.StartTime.replace("T", " ") }}</span>
            </template>
          </el-table-column>
e6276ef2   yangzhi   超哥牛批
291
292
293
294
295
296
          <el-table-column
            property="address"
            label="结束时间"
            width="180"
            sortable
          >
f0b7a6c2   周超   志哥王哥牛批
297
298
299
300
            <template slot-scope="scope">
              <span>{{ scope.row.EndTime.replace("T", " ") }}</span>
            </template>
          </el-table-column>
e6276ef2   yangzhi   超哥牛批
301
302
303
304
305
306
          <el-table-column
            property="Achievement"
            label="成绩"
            sortable
          ></el-table-column>
          <el-table-column label="操作">
1096394b   yangzhi   超哥牛批
307
            <template slot-scope="scope">
e6276ef2   yangzhi   超哥牛批
308
309
310
311
312
313
              <el-button type="success" @click="handleWatchLive(scope.row)"
                >观看直播</el-button
              >
              <el-button type="primary" @click="handleAnswerDetail(scope.row)"
                >答题详情</el-button
              >
1096394b   yangzhi   超哥牛批
314
315
            </template>
          </el-table-column>
f0b7a6c2   周超   志哥王哥牛批
316
317
        </el-table>
  
e6276ef2   yangzhi   超哥牛批
318
        <div style="text-align: right; margin-top: 20px">
f0b7a6c2   周超   志哥王哥牛批
319
320
321
322
323
324
          <el-button type="primary" @click="dialogTableVisible = false">
            确定
          </el-button>
        </div>
      </el-dialog>
  
e6276ef2   yangzhi   超哥牛批
325
326
327
328
329
330
331
332
333
334
335
      <el-dialog
        :visible.sync="dialogVisiblecat"
        :title="dialogTypecat === 'update' ? '修改' : '新增'"
        width="455px"
      >
        <el-form
          ref="dataForm"
          :model="temp"
          label-width="120px"
          label-position="right"
        >
f0b7a6c2   周超   志哥王哥牛批
336
337
338
          <el-form-item label="分类名称">
            <el-input v-model="temp.ClassTitle" placeholder="请输入名称" />
          </el-form-item>
f0b7a6c2   周超   志哥王哥牛批
339
        </el-form>
e6276ef2   yangzhi   超哥牛批
340
        <div style="text-align: right">
f0b7a6c2   周超   志哥王哥牛批
341
342
343
          <el-button type="danger" @click="dialogVisiblecat = false">
            取消
          </el-button>
e011bf15   周超   我先走一步
344
          <el-button type="primary" @click="submitcat" :disabled="loading">
f0b7a6c2   周超   志哥王哥牛批
345
346
347
348
349
            确定
          </el-button>
        </div>
      </el-dialog>
  
e6276ef2   yangzhi   超哥牛批
350
351
352
353
354
355
356
357
358
359
360
      <el-dialog
        title="人才用户信息"
        :visible.sync="dialogClassIVIsible"
        width="450"
      >
        <el-form
          ref="adminUserInfo"
          :model="adminUserInfo"
          label-width="90px"
          style="margin-left: 40px"
        >
f0b7a6c2   周超   志哥王哥牛批
361
          <el-form-item label="名称" prop="fullName">
e6276ef2   yangzhi   超哥牛批
362
363
364
365
366
            <el-input
              v-model="adminUserInfo.fullName"
              placeholder="请输入姓名"
              style="width: 40%"
            ></el-input>
f0b7a6c2   周超   志哥王哥牛批
367
368
          </el-form-item>
          <el-form-item label="电话号码">
e6276ef2   yangzhi   超哥牛批
369
370
371
372
373
374
            <el-input
              v-model="adminUserInfo.phone"
              placeholder="请输入电话号码"
              style="width: 40%"
              maxlength="11"
            ></el-input>
f0b7a6c2   周超   志哥王哥牛批
375
376
377
378
379
380
381
382
383
384
          </el-form-item>
          <el-form-item label="最高学历">
            <el-select v-model="adminUserInfo.xueli" placeholder="最高学历">
              <el-option label="大专" value="shanghai"></el-option>
              <el-option label="本科" value="beijing"></el-option>
            </el-select>
          </el-form-item>
  
          <el-form-item label="民族">
            <el-select v-model="adminUserInfo.minzu" placeholder="民族">
e6276ef2   yangzhi   超哥牛批
385
386
387
388
389
              <el-option
                v-for="item in mzlist"
                :label="item"
                :value="item"
              ></el-option>
f0b7a6c2   周超   志哥王哥牛批
390
391
392
393
394
395
396
397
            </el-select>
          </el-form-item>
          <el-form-item label="性别">
            <el-select v-model="adminUserInfo.sex" placeholder="性别">
              <el-option label="男" value="1"></el-option>
              <el-option label="女" value="0"></el-option>
            </el-select>
          </el-form-item>
e6276ef2   yangzhi   超哥牛批
398
399
400
401
402
403
          <el-form-item label="专业" style="margin-top: 40px" prop="username">
            <el-input
              v-model="adminUserInfo.zhuanye"
              placeholder="请输入专业"
              style="width: 40%"
            ></el-input>
f0b7a6c2   周超   志哥王哥牛批
404
          </el-form-item>
e6276ef2   yangzhi   超哥牛批
405
406
407
408
409
410
          <el-form-item label="毕业院校" style="margin-top: 40px" prop="username">
            <el-input
              v-model="adminUserInfo.byyx"
              placeholder="请输入毕业院校"
              style="width: 40%"
            ></el-input>
f0b7a6c2   周超   志哥王哥牛批
411
412
413
414
415
          </el-form-item>
  
          <!-- <el-form-item label="密码" prop="password" >
            <el-input v-model="adminUserInfo.password " placeholder="请输入密码 不填默认不修改" show-password style="width: 40%;"></el-input>
          </el-form-item> -->
e6276ef2   yangzhi   超哥牛批
416
417
418
419
420
          <el-form-item style="text-align: right">
            <el-button @click="dialogClassIVIsible = false">取消</el-button>
            <el-button type="primary" @click="submitForm('adminUserInfo')"
              >提交</el-button
            >
f0b7a6c2   周超   志哥王哥牛批
421
422
423
          </el-form-item>
        </el-form>
  
e6276ef2   yangzhi   超哥牛批
424
        <div style="clear: both"></div>
f0b7a6c2   周超   志哥王哥牛批
425
      </el-dialog>
1de913cf   ren   sdf
426
    </div>
b89c8760   wangming   项目初始化
427
428
429
  </template>
  
  <script>
e6276ef2   yangzhi   超哥牛批
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
  import {
    ImportUserByExcel,
    GetUserList,
    AddInvitationAnswerMultiple,
    UsersDelete,
  } from "@/api/user";
  import {
    GetUserClassList,
    UserClassCreate,
    UserClassUpdate,
    UserClassDelete,
  } from "@/api/userclass";
  import { GetHistoryList } from "@/api/HistoryAnswer";
  
  import { getTestPaperList } from "@/api/TestPaper";
  export default {
    data() {
      return {
        loading: false,
        dialogFormVisible: false,
        dialogTableVisible: false,
        dialogTypecat: "create",
        testpaperlist: [],
        form: {
          NumberOfAnswers: 3,
78156aa6   yangzhi   级联菜单
455
        },
e6276ef2   yangzhi   超哥牛批
456
457
458
459
460
461
462
463
464
        userList: [],
        data: [],
        dialogVisiblecat: false,
        filterText: "",
        gridData: [],
        Count: 0,
        adminUserInfo: {},
        temp: {
          ParentId: 0,
f0b7a6c2   周超   志哥王哥牛批
465
        },
e6276ef2   yangzhi   超哥牛批
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
        mzlist: [
          "汉族",
          "蒙古族 ",
          "羌族 ",
          "僳僳族 ",
          "哈尼族",
          "回族",
          "布朗族",
          "佤族",
          "哈萨克族",
          "藏族",
          "撒拉族",
          "畲族",
          "傣族",
          "维吾尔族",
          "毛南族",
          "高山族",
          "德昂族",
          "苗族",
          "仡佬族",
          "拉祜族",
          "保安族",
          "彝族",
          "锡伯族",
          "水族",
          "裕固族",
          "壮族",
          "阿昌族",
          "东乡族",
          "京族",
          "布依族",
          "普米族",
          "纳西族",
          "独龙族",
          "朝鲜族",
          "塔吉克族",
          "景颇族",
          "鄂伦春族",
          "满族",
          "怒族",
          "柯尔克孜族",
          "赫哲族",
          "侗族",
          "乌孜别克族",
          "土族",
          "门巴族",
          "瑶族",
          "俄罗斯族",
          "达斡尔族",
          "珞巴族",
          "白族",
          "鄂温克族",
          "塔塔尔族",
          "基诺族",
        ],
        type: "1",
        dialogClassIVIsible: false,
        query: {
          UserTypeEnum: 1, //0:管理员,1普通用户
          PageIndex: 1,
          PageSize: 10,
          keyword: "",
f0b7a6c2   周超   志哥王哥牛批
528
        },
e6276ef2   yangzhi   超哥牛批
529
530
531
532
533
        fileList: [],
        selectedList: [],
        props: {
          label: "ClassTitle",
          children: "children",
f0b7a6c2   周超   志哥王哥牛批
534
        },
e6276ef2   yangzhi   超哥牛批
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
      };
    },
    watch: {
      filterText(val) {
        this.$refs.tree.filter(val);
      },
    },
  
    created() {
      this.GetUser();
      this.forceTestPaper();
      this.loadTree();
    },
    methods: {
      handleDelete(item, index) {
        this.userList.splice(index, 1);
        UsersDelete({ ids: item.id });
      },
      handleWatchLive(item) {
        console.log("handleWatchLive", item);
        this.$router.push(`/live?id=${item.StreamName}`);
      },
      handleAnswerDetail(item) {
        window.open(`/#/answerDetail?id=${item.id}`, "_blank");
      },
      submitForm() {
        this.dialogClassIVIsible = false;
      },
      handleEdit(data) {
        this.dialogClassIVIsible = true;
        this.adminUserInfo = data;
      },
      handleTestHitory(row) {
        GetHistoryList({ UserId: row.id }).then((res) => {
          this.gridData = res.data.data;
          this.dialogTableVisible = true;
        });
      },
      handleShareSend() {
        var rows = this.$refs.userList.selection;
        var ids =
          rows.map((o) => {
            return { UserId: o.id };
          }) || [];
        var postData = {
          TestPaperId: this.form.TestPaperId,
          NumberOfAnswers: this.form.NumberOfAnswers || 1,
          Users: ids,
        };
        if (!ids || ids.length < 1) {
          this.$message.warning("请至少选择一个用户进行发送!");
          return;
        }
        if (!this.form.TestPaperId) {
          this.$message.warning("请选择试卷后再发送!");
          return;
        }
        this.$confirm(
          "确认向选择的" + ids.length + "个用户发送试卷连接进行测试吗?",
          "提示消息",
          {
            confirmButtonText: "确认",
            cancelButtonText: "取消",
f0b7a6c2   周超   志哥王哥牛批
598
599
            callback: (action) => {
              if (action == "confirm") {
e6276ef2   yangzhi   超哥牛批
600
                AddInvitationAnswerMultiple(postData).then((res) => {
f0b7a6c2   周超   志哥王哥牛批
601
                  if (res.data.code == 200) {
e6276ef2   yangzhi   超哥牛批
602
                    this.$message.success("发送成功");
f0b7a6c2   周超   志哥王哥牛批
603
604
605
                    this.form = {};
                    this.dialogFormVisible = false;
                    this.GetUser();
e6276ef2   yangzhi   超哥牛批
606
607
                  } else {
                    this.$message.error("发送失败");
f0b7a6c2   周超   志哥王哥牛批
608
609
610
611
                  }
                });
              }
            },
f0b7a6c2   周超   志哥王哥牛批
612
          }
e6276ef2   yangzhi   超哥牛批
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
        );
      },
      forceTestPaper() {
        let parameter = {
          pageIndex: 1,
          pageSize: 10000,
          sort: "id",
          sortOrder: 1,
          keyword: "",
        };
        getTestPaperList(parameter).then((res) => {
          this.testpaperlist = res.data.data;
        });
      },
      search() {
        this.GetUser();
      },
      handleSuccess() {
        this.$message.success("导入完成!");
        this.GetUser();
      },
      handleInviteInterview() {
        this.dialogFormVisible = true;
      },
      handleSelectionChange(val) {
        console.log(val);
        this.selectedList = val;
      },
      handleExceed() {},
      ImportUser() {},
e011bf15   周超   我先走一步
643
  
e6276ef2   yangzhi   超哥牛批
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
      showcontent(c, row) {
        this.showbody = c;
        this.dialogVisible_content = true;
      },
      submitcat() {
        // this.$loading({lock:true,text:'保存中...'});
        if (this.loading) {
          return;
        }
        this.loading = true;
        var postData = this.temp;
        if (this.dialogTypecat == "update") {
          if (postData.AddTime == "0001-01-01T00:00:00")
            postData.AddTime = new Date();
          UserClassUpdate(postData).then((o) => {
f0b7a6c2   周超   志哥王哥牛批
659
            this.$message({
e6276ef2   yangzhi   超哥牛批
660
661
662
663
664
665
666
667
668
669
              message: "提交成功",
              type: "success",
            });
            this.dialogVisiblecat = false;
            setTimeout(() => {
              this.loading = false;
            }, 1000);
          });
        } else {
          UserClassCreate(postData).then((o) => {
f0b7a6c2   周超   志哥王哥牛批
670
            this.$message({
e6276ef2   yangzhi   超哥牛批
671
672
              message: "提交成功",
              type: "success",
f0b7a6c2   周超   志哥王哥牛批
673
674
            });
  
e6276ef2   yangzhi   超哥牛批
675
            this.dialogVisiblecat = false;
f0b7a6c2   周超   志哥王哥牛批
676
  
e6276ef2   yangzhi   超哥牛批
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
            this.loadTree();
            setTimeout(() => {
              this.loading = false;
            }, 1000);
          });
        }
      },
      editclose(data) {
        // this.dialogVisible_step = false;
        this.fetchData();
      },
      loadTree() {
        GetUserClassList({ ParentId: 0 }).then((res) => {
          this.data = res.data.data;
        });
      },
      filterNode(value, data) {
        if (!value) return true;
        return data.ClassTitle.indexOf(value) !== -1;
      },
      addcat() {
        this.temp = { AddTime: new Date() };
        this.dialogVisiblecat = true;
      },
      editcat() {
        this.dialogTypecat = "update";
        if (!this.temp.id) {
          this.$message({
            message: "请选择一个分类进行操作!",
            type: "warning",
          });
          return;
        }
        this.dialogVisiblecat = true;
      },
      delcat() {
        if (!this.temp.id) {
          this.$message({
            message: "请选择一个分类进行操作!",
            type: "warning",
          });
          return;
        }
        this.$confirm("确认删除该分类吗?", "提示", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning",
        }).then(() => {
          UserClassDelete({ ids: this.temp.id }).then((o) => {
            this.loadTree();
            this.$message({
              message: "删除成功",
              type: "success",
f0b7a6c2   周超   志哥王哥牛批
730
            });
f0b7a6c2   周超   志哥王哥牛批
731
          });
e6276ef2   yangzhi   超哥牛批
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
        });
      },
      handleNodeClick(data, checked, indeterminate) {
        this.query.userClassId = data.id;
        this.temp = data;
        this.GetUser();
      },
  
      resetSearch() {
        this.query = {
          UserTypeEnum: 1, //0:管理员,1普通用户
          PageIndex: 1,
          PageSize: 10,
          keyword: "",
        };
        this.GetUser();
      },
      GetUser() {
        GetUserList(this.query).then((res) => {
          this.userList = res.data.data.rows.map((t) => {
            if (t.phone) {
              t.phone1 = t.phone.replace(t.phone.substring(3, 7), "****");
            }
            return t;
          });
          this.Count = res.data.data.total;
        });
      },
      currentchange(page) {
        this.query.PageIndex = page;
        this.GetUser();
f6d2db76   yangzhi   超哥牛皮皮
763
      },
e6276ef2   yangzhi   超哥牛批
764
765
    },
  };
b89c8760   wangming   项目初始化
766
767
  </script>
  
f6d2db76   yangzhi   超哥牛皮皮
768
  <style lang="scss" scoped>
e6276ef2   yangzhi   超哥牛批
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
  .seetingsDiv {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    /* height: 60px; */
    background: #efefef;
    /* line-height: 60px; */
    border-radius: 5px;
    box-shadow: 0 0 5px #cdcdcd;
    justify-content: space-between;
  }
  
  .seetingsDiv button {
    height: 40px;
    background-color: #304156;
    border: 0px;
    margin-left: 10px;
    box-shadow: 0 0 5px #cdcdcd;
    float: none;
    margin-right: 10px;
  }
f0b7a6c2   周超   志哥王哥牛批
792
  </style>