Blame view

src/views/standard/setUp/conglomerate.vue 17.9 KB
4c4f7640   梁保满   路由表,路由前端文件
1
  <template>
aed43d3a   阿宝   即时测修改答案
2
3
4
5
6
7
    <div>
      <back-box>
        <template slot="title">
          <span>学校管理</span>
        </template>
      </back-box>
e823fb79   阿宝   集团管理员
8
      <div class="page-content">
e5ff81a1   阿宝   集团管理员接口
9
        <div class="content-box" v-loading="loading">
e823fb79   阿宝   集团管理员
10
11
          <div class="left-box">
            <p class="h-title">
e5ff81a1   阿宝   集团管理员接口
12
              <span class="tog-type">集团列表</span>
e823fb79   阿宝   集团管理员
13
14
15
16
17
              <i class="icon el-icon-circle-plus-outline" @click="edit"></i>
            </p>
            <ul class="school-ul">
              <li
                class="school-item"
e5ff81a1   阿宝   集团管理员接口
18
19
20
21
22
23
24
                :class="showId == '' ? 'active' : ''"
                @click="(showId = ''), showSchool(false)"
              >
                全部({{ schoolTotal }})
              </li>
              <li
                class="school-item"
e823fb79   阿宝   集团管理员
25
26
27
                v-for="item in tableList"
                :key="item.id"
                :class="showId == item.id ? 'active' : ''"
e5ff81a1   阿宝   集团管理员接口
28
                @click="(showId = item.id), showSchool()"
e823fb79   阿宝   集团管理员
29
              >
e5ff81a1   阿宝   集团管理员接口
30
31
                {{ item.regionName }}({{ item.schoolCount }})
                <i class="el-icon-edit-outline" @click.stop="setRegion(item)"></i>
e823fb79   阿宝   集团管理员
32
33
34
35
36
              </li>
            </ul>
          </div>
          <div class="content-detail">
            <div class="title-box">
225a00b6   梁保满   飞书问题解决
37
              <span>管辖的学校({{ schoolData.num }})</span>
e823fb79   阿宝   集团管理员
38
39
              <i class="icon el-icon-circle-plus-outline" @click="addSchool"></i>
            </div>
e5ff81a1   阿宝   集团管理员接口
40
41
42
43
44
45
            <el-empty
              :image-size="100"
              v-if="!schoolData.list.length && loading == false"
              description="没有更多数据"
            ></el-empty>
            <ul v-else class="detail-list">
e823fb79   阿宝   集团管理员
46
47
48
49
50
51
              <li
                class="detail-item"
                v-for="item in schoolData.list"
                :key="item.id"
              >
                <p class="item-tit">
e5ff81a1   阿宝   集团管理员接口
52
53
                  <span class="name active" @click="setSchool(item)">{{
                    item.schoolName
e823fb79   阿宝   集团管理员
54
                  }}</span>
e5ff81a1   阿宝   集团管理员接口
55
                  <i @click="addAdmin(item)" class="icon el-icon-user-solid"></i>
e823fb79   阿宝   集团管理员
56
57
58
59
                </p>
                <div class="info">
                  <p class="info-item">
                    <span class="txt">基站</span>
77ebf04d   梁保满   个人版
60
                    <img class="pic" src="../../../assets/images/jizhan.png" />
e5ff81a1   阿宝   集团管理员接口
61
                    <span>{{ item.stationCount }}</span>
e823fb79   阿宝   集团管理员
62
63
64
                  </p>
                  <p class="info-item">
                    <span class="txt">键盘</span>
77ebf04d   梁保满   个人版
65
                    <img class="pic" src="../../../assets/images/jianpan.png" />
e5ff81a1   阿宝   集团管理员接口
66
                    <span>{{ item.keyboardCount }}</span>
e823fb79   阿宝   集团管理员
67
68
69
                  </p>
                  <p class="info-item">
                    <span class="txt">班级</span>
77ebf04d   梁保满   个人版
70
                    <img class="pic" src="../../../assets/images/banji.png" />
e5ff81a1   阿宝   集团管理员接口
71
                    <span>{{ item.classCount }}</span>
e823fb79   阿宝   集团管理员
72
73
74
                  </p>
                  <p class="info-item">
                    <span class="txt">学生</span>
77ebf04d   梁保满   个人版
75
                    <img class="pic" src="../../../assets/images/xuesheng.png" />
e5ff81a1   阿宝   集团管理员接口
76
                    <span>{{ item.studentCount }}</span>
e823fb79   阿宝   集团管理员
77
78
79
                  </p>
                  <p class="info-item">
                    <span class="txt">老师</span>
77ebf04d   梁保满   个人版
80
                    <img class="pic" src="../../../assets/images/laoshi.png" />
e5ff81a1   阿宝   集团管理员接口
81
                    <span>{{ item.teacherCount }}</span>
e823fb79   阿宝   集团管理员
82
83
84
85
86
87
88
                  </p>
                </div>
              </li>
            </ul>
          </div>
        </div>
      </div>
e5ff81a1   阿宝   集团管理员接口
89
90
91
92
93
      <el-dialog
        :title="isAdd ? '添加区域/集团' : '修改区域/集团'"
        :visible.sync="diaCL"
        width="400"
      >
e823fb79   阿宝   集团管理员
94
95
96
97
98
99
100
        <el-form
          class="form-box"
          ref="formCL"
          :model="formCL"
          :rules="rulesCL"
          label-width="160px"
        >
e5ff81a1   阿宝   集团管理员接口
101
          <el-form-item label="区域/集团名称:" prop="regionName">
e823fb79   阿宝   集团管理员
102
103
104
            <el-col :span="10">
              <el-input
                maxlength="30"
e5ff81a1   阿宝   集团管理员接口
105
                v-model.trim="formCL.regionName"
e823fb79   阿宝   集团管理员
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
                placeholder="请输入区域/集团名称"
              />
            </el-col>
          </el-form-item>
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button type="primary" round @click="saveFormCL">确 定</el-button>
          <el-button round @click="diaCL = false">取 消</el-button>
        </div>
      </el-dialog>
      <el-dialog title="添加管理员" :visible.sync="diaAdmin" width="400">
        <el-form
          class="form-box"
          ref="formAdmin"
          :model="formAdmin"
          :rules="rulesAdmin"
          label-width="160px"
        >
          <el-form-item label="学校名称:">
e5ff81a1   阿宝   集团管理员接口
125
            <span>{{ formAdmin.schoolName }}</span>
e823fb79   阿宝   集团管理员
126
127
128
129
130
131
132
133
134
135
136
137
138
139
          </el-form-item>
          <el-form-item label="手机号码:" prop="phone">
            <el-col :span="10">
              <el-input
                maxlength="11"
                v-model.trim="formAdmin.phone"
                placeholder="请输入手机号码"
              />
            </el-col>
          </el-form-item>
          <el-form-item label="密码:" prop="password">
            <el-col :span="10">
              <el-input
                maxlength="18"
e5ff81a1   阿宝   集团管理员接口
140
141
                v-model.trim="formAdmin.password"
                show-password
e823fb79   阿宝   集团管理员
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
                placeholder="请输入密码"
              />
            </el-col>
          </el-form-item>
          <el-form-item label="姓名:" prop="realName">
            <el-col :span="10">
              <el-input
                maxlength="30"
                v-model.trim="formAdmin.realName"
                placeholder="请输入姓名"
              />
            </el-col>
          </el-form-item>
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button type="primary" round @click="saveFormAdmin">确 定</el-button>
          <el-button round @click="diaAdmin = false">取 消</el-button>
        </div>
      </el-dialog>
      <el-dialog title="添加学校" :visible.sync="diaSchool" width="400">
        <el-form
          class="form-box"
          ref="formSchool"
          :model="formSchool"
          :rules="rulesSchool"
          label-width="160px"
        >
e5ff81a1   阿宝   集团管理员接口
169
          <el-form-item label="学校名称:" prop="schoolName">
e823fb79   阿宝   集团管理员
170
171
            <el-col :span="10">
              <el-input
e5ff81a1   阿宝   集团管理员接口
172
173
                maxlength="30"
                v-model.trim="formSchool.schoolName"
e823fb79   阿宝   集团管理员
174
175
176
177
178
179
180
                placeholder="请输入学校名称"
              />
            </el-col>
          </el-form-item>
          <el-form-item label="所属区域/集团:">
            <el-select
              class="sel"
e5ff81a1   阿宝   集团管理员接口
181
              v-model="formSchool.regionId"
e823fb79   阿宝   集团管理员
182
183
184
185
186
              placeholder="选择所属区域/集团"
            >
              <el-option
                v-for="item in tableList"
                :key="item.id"
e5ff81a1   阿宝   集团管理员接口
187
                :label="item.regionName"
e823fb79   阿宝   集团管理员
188
189
190
191
192
                :value="item.id"
              >
              </el-option>
            </el-select>
          </el-form-item>
6d7bd862   梁保满   飞书bug
193
          <el-form-item label="学段:" prop="sections">
e5ff81a1   阿宝   集团管理员接口
194
            <el-checkbox-group v-model="formSchool.sections">
9c17317a   梁保满   集团管理添加学校学段请求接口
195
196
197
198
199
200
              <el-checkbox
                v-for="item in sectionsList"
                :label="item.code"
                :key="item.code"
                >{{ item.name }}</el-checkbox
              >
e823fb79   阿宝   集团管理员
201
202
203
204
205
206
207
208
209
210
            </el-checkbox-group>
          </el-form-item>
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button type="primary" round @click="saveFormSchool"
            >确 定</el-button
          >
          <el-button round @click="diaSchool = false">取 消</el-button>
        </div>
      </el-dialog>
e5ff81a1   阿宝   集团管理员接口
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
      <el-dialog title="学校信息修改" :visible.sync="diaSchool2" width="400">
        <el-form
          class="form-box"
          ref="formSchool2"
          :model="setFormSchool"
          :rules="rulesSchool"
          label-width="160px"
        >
          <el-form-item label="学校名称:" prop="schoolName">
            <el-col :span="10">
              <el-input
                maxlength="30"
                v-model.trim="setFormSchool.schoolName"
                placeholder="请输入学校名称"
              />
            </el-col>
          </el-form-item>
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button type="primary" round @click="saveSetFormSchool"
            >确 定</el-button
          >
          <el-button round @click="diaSchool2 = false">取 消</el-button>
9c17317a   梁保满   集团管理添加学校学段请求接口
234
235
236
          <el-button round v-if="showDelSclBtn" @click="removeSchool"
            >删除学校</el-button
          >
e5ff81a1   阿宝   集团管理员接口
237
238
        </div>
      </el-dialog>
aed43d3a   阿宝   即时测修改答案
239
    </div>
4c4f7640   梁保满   路由表,路由前端文件
240
241
242
  </template>
  
  <script>
e5ff81a1   阿宝   集团管理员接口
243
  import { encryptLoginPassword } from "@/utils";
e823fb79   阿宝   集团管理员
244
245
246
  export default {
    data() {
      return {
e5ff81a1   阿宝   集团管理员接口
247
        isAdd: true,
e823fb79   阿宝   集团管理员
248
249
250
        diaCL: false,
        diaAdmin: false,
        diaSchool: false,
e5ff81a1   阿宝   集团管理员接口
251
        diaSchool2: false,
e823fb79   阿宝   集团管理员
252
        loading: false,
e5ff81a1   阿宝   集团管理员接口
253
254
        showId: "", //显示学校Id
        schoolTotal: 0,
9c17317a   梁保满   集团管理添加学校学段请求接口
255
        sectionsList: [],
e823fb79   阿宝   集团管理员
256
257
258
259
        tableList: [
          // 集团列表/区域列表
          {
            id: 1,
e5ff81a1   阿宝   集团管理员接口
260
261
            regionName: "云南衡水实验中学",
            schoolCount: 5,
e823fb79   阿宝   集团管理员
262
263
264
265
          },
        ],
        schoolData: {
          //学校信息
e5ff81a1   阿宝   集团管理员接口
266
267
          num: 0,
          list: [{ id: 1, schoolName: "曲靖校区" }],
e823fb79   阿宝   集团管理员
268
269
        },
        formCL: {
e5ff81a1   阿宝   集团管理员接口
270
271
          regionId: "",
          regionName: "",
e823fb79   阿宝   集团管理员
272
273
        },
        rulesCL: {
e5ff81a1   阿宝   集团管理员接口
274
          regionName: [
e823fb79   阿宝   集团管理员
275
276
277
278
            { required: true, message: "请输入区域/集团名称", trigger: "blur" },
          ],
        },
        formAdmin: {
e5ff81a1   阿宝   集团管理员接口
279
280
          schoolId: "",
          schoolName: "",
e823fb79   阿宝   集团管理员
281
282
283
284
285
286
287
288
289
290
          phone: "",
          password: "",
          realName: "",
        },
        rulesAdmin: {
          phone: [{ required: true, message: "请输入手机号码", trigger: "blur" }],
          password: [{ required: true, message: "请输入密码", trigger: "blur" }],
          realName: [{ required: true, message: "请输入姓名", trigger: "blur" }],
        },
        formSchool: {
e5ff81a1   阿宝   集团管理员接口
291
292
293
          schoolName: "",
          regionId: "",
          sections: [],
e823fb79   阿宝   集团管理员
294
295
        },
        rulesSchool: {
e5ff81a1   阿宝   集团管理员接口
296
297
298
          schoolName: [
            { required: true, message: "请输入学校名称", trigger: "blur" },
          ],
225a00b6   梁保满   飞书问题解决
299
          sections: [{ required: true, message: "请选择学段", trigger: "blur" }],
e5ff81a1   阿宝   集团管理员接口
300
301
302
303
        },
        setFormSchool: {
          schoolId: "",
          schoolName: "",
e823fb79   阿宝   集团管理员
304
        },
225a00b6   梁保满   飞书问题解决
305
        showDelSclBtn: false,
e823fb79   阿宝   集团管理员
306
307
      };
    },
e5ff81a1   阿宝   集团管理员接口
308
309
310
    created() {
      this._QueryData();
      this.showSchool();
9c17317a   梁保满   集团管理添加学校学段请求接口
311
      this._QuerySectionList();
e5ff81a1   阿宝   集团管理员接口
312
    },
e823fb79   阿宝   集团管理员
313
314
315
    methods: {
      edit() {
        //添加区域/集团
e5ff81a1   阿宝   集团管理员接口
316
317
318
        this.isAdd = true;
        this.formCL.regionId = "";
        this.formCL.regionName = "";
e823fb79   阿宝   集团管理员
319
320
321
322
        this.diaCL = true;
      },
      addAdmin(obj) {
        //添加管理员
e5ff81a1   阿宝   集团管理员接口
323
324
325
326
327
328
        this.formAdmin.schoolId = obj.id;
        this.formAdmin.schoolName = obj.schoolName;
        this.formAdmin.phone = "";
        this.formAdmin.password = "";
        this.formAdmin.realName = "";
  
e823fb79   阿宝   集团管理员
329
330
        this.diaAdmin = true;
      },
e5ff81a1   阿宝   集团管理员接口
331
      addSchool() {
e823fb79   阿宝   集团管理员
332
        //添加学校
296f7c47   梁保满   集团管理员接口调整
333
334
335
        this.formSchool.schoolName = "";
        this.formSchool.sections = [];
        this.formSchool.regionId = "";
e823fb79   阿宝   集团管理员
336
337
        this.diaSchool = true;
      },
e5ff81a1   阿宝   集团管理员接口
338
339
340
341
342
      setRegion(obj) {
        this.isAdd = false;
        this.formCL.regionId = obj.id;
        this.formCL.regionName = obj.regionName;
        this.diaCL = true;
e823fb79   阿宝   集团管理员
343
      },
e5ff81a1   阿宝   集团管理员接口
344
345
346
      setSchool(obj) {
        this.setFormSchool.schoolId = obj.id;
        this.setFormSchool.schoolName = obj.schoolName;
225a00b6   梁保满   飞书问题解决
347
348
349
350
351
352
353
        let num =
          obj.stationCount +
          obj.keyboardCount +
          obj.classCount +
          obj.studentCount +
          obj.teacherCount;
        this.showDelSclBtn = num == 0 ? true : false;
e5ff81a1   阿宝   集团管理员接口
354
        this.diaSchool2 = true;
e823fb79   阿宝   集团管理员
355
      },
9c17317a   梁保满   集团管理添加学校学段请求接口
356
357
358
359
360
361
362
363
364
365
      async _QuerySectionList() {
        //学校学段
        const { data, status, info } = await this.$request.sectionList();
        console.log(status);
        if (status === 0) {
          this.sectionsList = data?.list || [];
        } else {
          this.$message.error(info);
        }
      },
e5ff81a1   阿宝   集团管理员接口
366
367
368
369
370
      async removeSchool() {
        const { data, status, info } = await this.$request.removeSchool({
          schoolId: this.setFormSchool.schoolId,
        });
        if (status === 0) {
225a00b6   梁保满   飞书问题解决
371
372
          this._QueryData();
          this.showSchool();
e5ff81a1   阿宝   集团管理员接口
373
          this.$message.success(info);
225a00b6   梁保满   飞书问题解决
374
          this.diaSchool2 = false;
e5ff81a1   阿宝   集团管理员接口
375
376
377
        } else {
          this.$message.error(info);
        }
e823fb79   阿宝   集团管理员
378
379
380
      },
      saveFormCL() {
        //保存添加区域/集团
e5ff81a1   阿宝   集团管理员接口
381
382
383
384
385
386
387
388
        this.$refs["formCL"].validate(async (valid) => {
          // 验证通过:保存
          if (valid) {
            const { data, status, info } = await this.$request.saveRegion({
              regionId: this.formCL.regionId,
              regionName: this.formCL.regionName,
            });
            if (status === 0) {
225a00b6   梁保满   飞书问题解决
389
              this._QueryData();
e5ff81a1   阿宝   集团管理员接口
390
391
392
393
394
395
396
397
398
399
              this.$message.success(info);
              this.diaCL = false;
            } else {
              this.$message.error(info);
            }
          } else {
            this.$message.error("区域/集团名称数据有误,请检查!");
            return false;
          }
        });
e823fb79   阿宝   集团管理员
400
401
402
      },
      saveFormAdmin() {
        //保存管理员
e5ff81a1   阿宝   集团管理员接口
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
        this.$refs["formAdmin"].validate(async (valid) => {
          // 验证通过:保存
          if (valid) {
            let params = { ...this.formAdmin };
            params.password = encryptLoginPassword(this.formAdmin.password);
            delete params.schoolName;
            const { data, status, info } = await this.$request.addSchoolManager({
              ...params,
            });
            if (status === 0) {
              this.$message.success(info);
              this.diaAdmin = false;
            } else {
              this.$message.error(info);
            }
          } else {
            this.$message.error("数据有误,请检查!");
            return false;
          }
        });
e823fb79   阿宝   集团管理员
423
424
425
      },
      saveFormSchool() {
        //保存学校
e5ff81a1   阿宝   集团管理员接口
426
427
428
        this.$refs["formSchool"].validate(async (valid) => {
          // 验证通过:保存
          if (valid) {
225a00b6   梁保满   飞书问题解决
429
430
            let query = { ...this.formSchool };
            query.sections = query.sections.join(",");
e5ff81a1   阿宝   集团管理员接口
431
            const { data, status, info } = await this.$request.saveSchool({
296f7c47   梁保满   集团管理员接口调整
432
              ...query,
e5ff81a1   阿宝   集团管理员接口
433
434
435
436
437
438
439
440
441
442
443
444
445
446
            });
            if (status === 0) {
              this.$message.success(info);
              this.diaSchool = false;
              this._QueryData();
              this.showSchool();
            } else {
              this.$message.error(info);
            }
          } else {
            this.$message.error("学校名称数据有误,请检查!");
            return false;
          }
        });
e823fb79   阿宝   集团管理员
447
      },
e5ff81a1   阿宝   集团管理员接口
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
      saveSetFormSchool() {
        //保存学校
        this.$refs["formSchool2"].validate(async (valid) => {
          // 验证通过:保存
          if (valid) {
            const { data, status, info } = await this.$request.saveSchool({
              ...this.setFormSchool,
            });
            if (status === 0) {
              this.$message.success(info);
              this.diaSchool2 = false;
              this.showSchool();
            } else {
              this.$message.error(info);
            }
          } else {
6d7bd862   梁保满   飞书bug
464
            this.$message.error("数据有误,请检查!");
e5ff81a1   阿宝   集团管理员接口
465
466
467
468
469
            return false;
          }
        });
      },
      async showSchool() {
225a00b6   梁保满   飞书问题解决
470
        this.loading = true;
e5ff81a1   阿宝   集团管理员接口
471
472
473
        const { data, status, info } = await this.$request.schoolList({
          regionId: this.showId,
        });
225a00b6   梁保满   飞书问题解决
474
        this.loading = false;
e5ff81a1   阿宝   集团管理员接口
475
476
477
478
479
480
        if (status === 0) {
          this.schoolData.list = [...data.list] || [];
          this.schoolData.num = data.count;
        } else {
          this.$message.error(info);
        }
e823fb79   阿宝   集团管理员
481
482
      },
      async _QueryData() {
e5ff81a1   阿宝   集团管理员接口
483
484
485
486
487
488
489
        const { data, status, info } = await this.$request.regionList();
        if (status === 0) {
          this.tableList = [...data.list] || [];
          this.schoolTotal = data.schoolCount;
        } else {
          this.$message.error(info);
        }
e823fb79   阿宝   集团管理员
490
491
492
      },
    },
  };
4c4f7640   梁保满   路由表,路由前端文件
493
494
  </script>
  
e823fb79   阿宝   集团管理员
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
528
529
530
531
532
533
534
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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
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
643
  <style lang="scss" scoped>
  .page-content {
    padding: 20px 30px;
  }
  .content-box {
    display: flex;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
  
    .h-title {
      height: 40px;
      line-height: 40px;
      background: #eee;
      border-radius: 10px 10px 0 0;
    }
    .left-box {
      width: 240px;
      .h-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 16px;
        box-sizing: border-box;
        .tog-type {
          cursor: pointer;
        }
        .icon {
          font-size: 20px;
          color: #7f7f7f;
          cursor: pointer;
        }
      }
      .school-ul {
        max-height: 70vh;
        overflow-y: scroll;
      }
      .school-item {
        font-size: 16px;
        color: #7f7f7f;
        line-height: 36px;
        cursor: pointer;
        padding-left: 12px;
        position: relative;
        &:hover {
          background: #eee;
        }
        &.active {
          color: #667ffd;
        }
        .el-icon-edit-outline {
          position: absolute;
          top: 8px;
          right: 12px;
          font-size: 20px;
          display: none;
          &:hover {
            color: #667ffd;
          }
        }
        &:hover {
          background: #eee;
          .el-icon-edit-outline {
            display: block;
          }
        }
      }
    }
    .content-detail {
      flex: 1;
      position: relative;
      border-left: 0.5px solid #eee;
      .title-box {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        .icon {
          font-size: 24px;
          color: #7f7f7f;
          cursor: pointer;
        }
        .el-icon-circle-plus-outline {
          margin-left: 10px;
        }
      }
      .detail-list {
        padding-left: 20px;
        display: flex;
        flex-wrap: wrap;
      }
      .detail-item {
        width: 320px;
        padding: 12px 16px;
        border-radius: 10px;
        box-shadow: 1px 1px 3px #888;
        box-sizing: border-box;
        margin: 0 20px 20px 0;
        .item-tit {
          font-size: 16px;
          position: relative;
          padding-bottom: 10px;
          .name {
            cursor: pointer;
            &.active {
              color: #667ffd;
            }
          }
          &:hover {
            .icon {
              display: block;
            }
          }
          .icon {
            display: none;
            position: absolute;
            right: -5px;
            top: 0;
            color: #7f7f7f;
            cursor: pointer;
            padding: 2px;
            &:hover {
              color: #667ffd;
            }
          }
        }
        .info {
          width: 100%;
          display: flex;
          .info-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
          }
          .txt {
            color: #7f7f7f;
          }
          .pic {
            height: 28px;
            margin: 2px 0 5px;
          }
        }
      }
    }
  }
  .dialog-footer {
    text-align: center;
  }
4c4f7640   梁保满   路由表,路由前端文件
644
  </style>