Blame view

src/views/layout/layout.vue 12.8 KB
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
1
2
3
4
5
6
7
8
9
  <template>
    <el-container class="app-wrapper">
      <!-- 顶部导航 -->
      <el-header height="60px" class="app-header">
        <div class="header-left">
          <div class="logo">HC</div>
          <el-menu mode="horizontal" :default-active="activeMenu" class="header-menu" background-color="#1e2132"
            text-color="#fff" active-text-color="#409EFF">
            <el-menu-item :index="item.caId" v-for="(item, index) in catalogs" :key="index"
dd2c2983   wuxw   优化缴费页面
10
              @click="_changeMenuCatalog(item, true)">{{ item.name }}</el-menu-item>
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
11
12
13
          </el-menu>
        </div>
        <div class="header-right">
0e3df9ef   wuxw   优化物业账号下切换小区功能
14
15
16
17
18
19
          <el-dropdown @command="changeCommunity" v-if="storeInfo.storeTypeCd == '800900000003'" class="margin-right">
            <span class="user-info">
              {{ curCommunityName }}
              <i class="el-icon-arrow-down el-icon--right"></i>
            </span>
            <el-dropdown-menu slot="dropdown">
0f149ba1   wuxw   优化代码
20
21
22
              <el-dropdown-item :command="c" v-for="(c, index) in communitys" :key="index">{{ c.name }}</el-dropdown-item>
              <el-dropdown-item command="moreCommunity" class="moreCommunity">{{ $t('layout.moreCommunity')
              }}</el-dropdown-item>
0e3df9ef   wuxw   优化物业账号下切换小区功能
23
24
            </el-dropdown-menu>
          </el-dropdown>
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
          <el-dropdown @command="handleCommand">
            <span class="user-info">
              {{ username }}
              <i class="el-icon-arrow-down el-icon--right"></i>
            </span>
            <el-dropdown-menu slot="dropdown">
              <el-dropdown-item command="logout">{{ $t('layout.logout') }}</el-dropdown-item>
            </el-dropdown-menu>
          </el-dropdown>
          <span class="margin-left">v1.9</span>
  
        </div>
      </el-header>
  
      <el-container>
        <!-- 左侧菜单 width="64px"-->
        <el-aside class="app-aside" width="80">
          <div class="vc-menu flex justify-start" id="menu-nav">
            <div class="vc-menu-main">
              <ul>
                <template v-for="(menu, index) in menuTree">
                  <li :key="index" v-if="menu.childs && menu.childs.length > 0" :class="{ active: menu.active }"
                    @click="switchMenu(menu)">
                    <i class="fa " v-bind:class="menu.icon"></i><span class="margin-left-xs">{{ menu.name }}</span>
                  </li>
                </template>
              </ul>
            </div>
            <div class="vc-menu-sub" v-if="subMenus && subMenus.length > 0">
              <ul>
                <li class="title">{{ curMenuName }}</li>
                <template v-for="(subMenu, index) in subMenus">
                  <li :key="index" v-if="subMenu.isShow == 'Y'" :class="{ active: subMenu.active }"
                    v-on:click="_gotoPage(subMenu.href, subMenu.name)">
                    {{ subMenu.name }}
                  </li>
                </template>
                <li class="sub-footer" @click="_closeSubMenu()"><i class="fa fa-dedent"></i></li>
              </ul>
            </div>
          </div>
        </el-aside>
  
        <!-- 主要内容区 -->
        <el-main class="app-main">
          <router-view />
        </el-main>
      </el-container>
0f149ba1   wuxw   优化代码
73
      <more-community ref="moreCommunity" />
1db0a60c   wuxw   优化常用菜单 和搜索功能
74
75
      <view-menu-user-list ref="viewMenuUserModel" />
      <search-community-data-list ref="searchCommunityDataModel" />
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
76
77
78
79
    </el-container>
  </template>
  
  <script>
c89819f7   wuxw   支持跳转至物联网和商城
80
  import { _getMenuCatalog, getMenuTree, jumpToMall, jumpToIot } from '@/api/user/menuApi'
0e3df9ef   wuxw   优化物业账号下切换小区功能
81
  import { getStoreInfo } from "@/api/user/indexApi"
0f149ba1   wuxw   优化代码
82
83
  import { deepCopy, setCurrentCommunity } from "@/utils/vc"
  import { getCommunityName, _loadCommunityInfo } from '@/api/community/communityApi'
0e3df9ef   wuxw   优化物业账号下切换小区功能
84
  import moreCommunity from '@/components/community/moreCommunity.vue'
1db0a60c   wuxw   优化常用菜单 和搜索功能
85
86
  import viewMenuUserList from '@/components/system/viewMenuUserList.vue'
  import searchCommunityDataList from '@/components/system/searchCommunityDataList.vue'
0e3df9ef   wuxw   优化物业账号下切换小区功能
87
  
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
88
89
90
91
92
93
94
  export default {
    name: 'Layout',
    data() {
      return {
        catalogs: [],
        menuTree: [],
        subMenus: [],
0e3df9ef   wuxw   优化物业账号下切换小区功能
95
        menuWidth: 80,
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
96
97
98
99
100
101
        menuId: '',
        curMenuName: '',
        activeMenu: '',
        activeSubMenu: 'communityList',
        searchText: '',
        username: '',
0f149ba1   wuxw   优化代码
102
103
        curCommunityName: '',
        communitys: [],
0e3df9ef   wuxw   优化物业账号下切换小区功能
104
105
106
107
        storeInfo: {
          storeTypeCd: '',
          storeId: ''
        },
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
108
109
110
111
112
113
  
      }
    },
    created() {
      let _user = JSON.parse(localStorage.getItem('user'));
      this.username = _user.name
0e3df9ef   wuxw   优化物业账号下切换小区功能
114
      this._loadStoreInfo()
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
115
      this.loadCatalogs()
0e3df9ef   wuxw   优化物业账号下切换小区功能
116
117
118
      this.curCommunityName = getCommunityName()
      this.loadCommunity()
    },
0f149ba1   wuxw   优化代码
119
    components: {
1db0a60c   wuxw   优化常用菜单 和搜索功能
120
121
122
      moreCommunity,
      viewMenuUserList,
      searchCommunityDataList
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
123
124
    },
    methods: {
0f149ba1   wuxw   优化代码
125
126
      async loadCommunity() {
        const { communitys } = await _loadCommunityInfo()
0e3df9ef   wuxw   优化物业账号下切换小区功能
127
128
129
130
131
132
133
134
135
136
137
138
139
140
        this.communitys = communitys
      },
      async _loadStoreInfo() {
        this.loading = true
        try {
          const res = await getStoreInfo()
          deepCopy(res, this.storeInfo);
        } catch (error) {
          console.error('登录失败:', error)
        } finally {
          this.loading = false
        }
  
      },
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
141
142
143
144
145
146
147
148
      async loadCatalogs() {
        this.loading = true
        try {
          const res = await _getMenuCatalog()
          if (res.code != 0) {
            return;
          }
          this.catalogs = res.data;
0e3df9ef   wuxw   优化物业账号下切换小区功能
149
          if (this.catalogs && this.catalogs.length > 0) {
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
150
151
152
153
154
155
156
157
158
            this._changeMenuCatalog(this.catalogs[0])
          }
        } catch (error) {
          console.error('登录失败:', error)
  
        } finally {
          this.loading = false
        }
      },
dd2c2983   wuxw   优化缴费页面
159
      _changeMenuCatalog(_catalog, _isJump) {
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
160
        this.activeMenu = _catalog.caId;
1db0a60c   wuxw   优化常用菜单 和搜索功能
161
162
163
        if (this._showModelDiv(_catalog)) {
          return;
        }
0f149ba1   wuxw   优化代码
164
165
166
167
        if (_catalog.caId === '1') {
          this.$router.push('/#/pages/mall/product');
        }
        if (_catalog.url == 'IOT') {
c89819f7   wuxw   支持跳转至物联网和商城
168
          jumpToIot('/');
0f149ba1   wuxw   优化代码
169
170
171
172
          return;
        }
        if (_catalog.url == 'MALL') {
          //获取用户名
c89819f7   wuxw   支持跳转至物联网和商城
173
          jumpToMall('/');
0f149ba1   wuxw   优化代码
174
175
176
          return;
        }
        console.log(_catalog)
dd2c2983   wuxw   优化缴费页面
177
        if (_catalog.url != '#' && _isJump) {
0f149ba1   wuxw   优化代码
178
179
180
          this._gotoPage(_catalog.url, _catalog.name)
          //return;
        }
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
181
182
        this.loadMenuTree(_catalog)
      },
1db0a60c   wuxw   优化常用菜单 和搜索功能
183
  
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
184
185
186
187
188
189
190
191
192
193
194
195
196
      handleCommand(command) {
        if (command === 'logout') {
          // 处理退出登录
  
          localStorage.removeItem('token')
          localStorage.clear();
          this.$router.push('/login')
        } else if (command === 'zh' || command === 'en') {
          // 切换语言
          this.$i18n.locale = command
          localStorage.setItem('language', command)
        }
      },
0f149ba1   wuxw   优化代码
197
198
      changeCommunity(community) {
        if (community == 'moreCommunity') {
0e3df9ef   wuxw   优化物业账号下切换小区功能
199
200
201
202
203
204
          this.$refs.moreCommunity.open()
          return
        }
        setCurrentCommunity(community);
        this.curCommunityName = getCommunityName()
      },
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
205
206
207
208
209
210
211
      handleMenuSelect(index) {
        // 处理菜单选择
        this.$router.push({ name: index })
      },
      loadMenuTree(_catalog) {
        getMenuTree(_catalog).then(res => {
          let _menus = res.data;
0e3df9ef   wuxw   优化物业账号下切换小区功能
212
213
214
          _menus.sort(function (a, b) {
            return a.seq - b.seq
          });
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
          this.menuTree = _menus;
        })
      },
      switchMenu(_menu) {
        //设置菜单ID
        this.menuId = _menu.id;
        this.menuTree = this.refreshMenuActive(this.menuTree, _menu.id);
        this.subMenus = _menu.childs;
        console.log(this.subMenus)
        this.curMenuName = _menu.name;
  
        if (!_menu.childs || _menu.childs.length < 1) {
          return;
        }
        //选中第一个
        this._gotoPage(_menu.childs[0].href, _menu.childs[0].name);
        //vc._fix_height()
      },
      refreshMenuActive(jsonArray, _id) {
        for (let menuIndex = 0; menuIndex < jsonArray.length; menuIndex++) {
          if (jsonArray[menuIndex].childs) {
            let _childs = jsonArray[menuIndex].childs;
            _childs.sort(function (_child, _newChild) {
              return _child.seq - _newChild.seq
            });
            jsonArray[menuIndex].childs = _childs;
          }
  
          if (_id === jsonArray[menuIndex].id) {
            //如果当前本身是打开状态,说明 需要关闭
            jsonArray[menuIndex].active = true;
            continue;
          }
          jsonArray[menuIndex].active = false;
        }
        return jsonArray;
      },
      _setSelectedMenusChild(_href) {
        for (var menuIndex = 0; menuIndex < this.menuTree.length; menuIndex++) {
          if (this.menuTree[menuIndex].childs) {
            var _childs = this.menuTree[menuIndex].childs;
            for (var childIndex = 0; childIndex < _childs.length; childIndex++) {
              if (_href == _childs[childIndex].href) {
                this.menuTree[menuIndex].childs[childIndex].active = true;
              } else {
                this.menuTree[menuIndex].childs[childIndex].active = false;
              }
            }
          }
        }
        this.$forceUpdate();
      },
      _gotoPage(_href, _tabName) {
c89819f7   wuxw   支持跳转至物联网和商城
268
        console.log(_href, _tabName)
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
269
270
        // 子菜单默认选中
        this._setSelectedMenusChild(_href);
1db0a60c   wuxw   优化常用菜单 和搜索功能
271
        if (_href.indexOf('.html') > -1) {
c89819f7   wuxw   支持跳转至物联网和商城
272
273
274
          window.open(_href, '_blank')
          return
        }
0e3df9ef   wuxw   优化物业账号下切换小区功能
275
276
        if (_href.indexOf('/#/') > -1) {
          _href = _href.replace('/#/', '/')
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
277
        }
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
278
  
1a0bdbe0   wuxw   优化缴费页面
279
280
281
282
283
284
        this.$router.push(_href).catch(err => {
          // 忽略重复导航错误
          if (err.name !== 'NavigationDuplicated') {
            throw err
          }
        })
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
285
      },
1db0a60c   wuxw   优化常用菜单 和搜索功能
286
287
288
289
290
291
292
293
294
295
      _showModelDiv: function (_catalog) {
        console.log(_catalog)
        if (_catalog.url.startsWith('?')) {
          let _modelName = _catalog.url.substring(1, _catalog.url.length);
          this.$refs[_modelName].open()
          return true;
        }
        return false;
      }
  
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
296
297
298
299
300
    }
  }
  </script>
  
  <style lang="scss" scoped>
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
  .app-wrapper {
    height: 100vh;
  }
  
  .app-header {
    background-color: #1e2132;
    color: #fff;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 100px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #409EFF;
  }
  
  .header-menu {
    border: none;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  
  .margin-left {
    margin-left: 15px;
    color: #fff;
  }
  
  .user-info {
    color: #fff;
    cursor: pointer;
  }
  
  .app-aside {
    width: auto;
  }
  
  .menu-wrapper {
    height: 100%;
  }
  
  .el-menu-vertical {
    border: none;
  }
  
  .el-menu-vertical:not(.el-menu--collapse) {
    width: 200px;
  }
  
  .app-main {
    background-color: #f5f7fa;
0f149ba1   wuxw   优化代码
367
    height: calc(100vh - 60px);
737b703c   wuxw   添加房屋页面开发完成
368
    padding: 0px;
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
  }
  
  :deep(.el-menu--horizontal) {
    border-bottom: none;
  }
  
  :deep(.el-menu-item) {
    height: 50px;
    line-height: 50px;
  }
  
  :deep(.el-submenu__title) {
    height: 50px;
    line-height: 50px;
    padding: 0 20px !important;
  }
  
  :deep(.el-menu--collapse) {
    width: 64px;
  }
  
  :deep(.el-menu--collapse .el-submenu__title) {
    padding: 0 !important;
    text-align: center;
  }
  
  :deep(.el-menu--collapse .el-submenu__title i) {
    margin: 0;
    font-size: 20px;
  }
  
  :deep(.el-menu--popup) {
    min-width: 200px;
    background-color: #1e2132 !important;
  }
  
  :deep(.el-menu--popup .el-menu-item) {
    background-color: #1e2132;
    color: #fff;
  }
  
  :deep(.el-menu--popup .el-menu-item:hover) {
    background-color: #2a2f45;
  }
  
  :deep(.el-menu--popup .el-menu-item.is-active) {
    color: #409EFF;
  }
  
  .vc-menu {
    border-right: 1px solid #EFEFF0;
  
    .vc-menu-main {
      background-color: #1F2339;
      color: #838A9B;
      text-align: center;
      width: 80px;
      font-size: 14px;
      height: calc(100vh - 60px);
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-width: none;
  
      .active {
        background-color: #3E77FC;
        color: #FFFFFF;
      }
    }
  
    .vc-menu-main::-webkit-scrollbar {
      display: none;
    }
  
    ul {
      padding-inline-start: 0px;
      margin: 0;
      padding: 0;
    }
  
    li {
      margin: 0;
      padding: 0;
    }
  }
  
0f149ba1   wuxw   优化代码
454
  .moreCommunity {
0e3df9ef   wuxw   优化物业账号下切换小区功能
455
456
457
458
    font-weight: 600;
    color: #212529;
    font-size: 12px;
  }
0f149ba1   wuxw   优化代码
459
  
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
460
461
462
463
464
465
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
528
529
530
531
532
533
534
535
536
537
538
539
540
  .vc-menu-main ul li {
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    list-style-type: none;
  }
  
  .vc-menu-main ul li:hover {
    background-color: #3E77FC;
    color: #FFFFFF;
  }
  
  .vc-menu-main ul li.title {
    color: #FFFFFF;
    height: 60px;
    font-size: 24px;
    line-height: 60px;
  }
  
  .vc-menu-main ul li.title a {
    text-decoration: none;
    cursor: pointer;
    color: #FFFFFF;
  }
  
  .vc-menu-sub {
    background-color: #FFFFFF;
    color: #545761;
    text-align: start;
    width: 110px;
    font-size: 14px;
    height: calc(100vh - 60px);
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
  }
  
  .vc-menu-sub::-webkit-scrollbar {
    display: none;
  }
  
  .vc-menu-sub .active {
    background-color: #EAF0FE;
    color: #3E77FC;
  }
  
  
  
  .vc-menu-sub ul li {
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .vc-menu-sub ul li.title {
    color: #4F525C;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    padding-left: 0px;
    border-bottom: 1px solid #F2F2F3;
    margin-bottom: 10px;
  }
  
  .vc-menu-sub ul li:hover {
    background-color: #EAF0FE;
    color: #3E77FC;
  }
  
  .vc-menu-sub ul li.sub-footer {
    background-color: #F6F6F7;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100px;
  }
0f149ba1   wuxw   优化代码
541
  </style>