system-clients 3.2.1-12 → 3.2.1-15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -79,8 +79,8 @@
79
79
  </div>
80
80
 
81
81
  <modal v-if="depPromptShow" :show.sync="depPromptShow" :backdrop="false" v-ref:modal >
82
- <header slot="modal-header" class="modal-header">
83
- <h4 class="modal-title">登录信息</h4>
82
+ <header slot="modal-header" style="height: 8vh" class="modal-header">
83
+ <!--<h4 class="modal-title">登录信息</h4>-->
84
84
  </header>
85
85
  <article slot="modal-body" class="modal-body">
86
86
  <form class="form-horizontal">
@@ -89,13 +89,13 @@
89
89
  <label class="col-sm-5 ">当前登录人:</label>
90
90
  <label style="font-weight:normal">{{$login.f.name}}</label>
91
91
  </div>
92
- <div class="col-sm-12 form-group" v-if="$login.f.number">
93
- <label class="col-sm-5 ">组&nbsp;织&nbsp;编&nbsp;码:</label>
94
- <label style="font-weight:normal">{{$login.f.number}}</label>
92
+ <!--<div class="col-sm-12 form-group" v-if="$login.f.number">-->
93
+ <!--<label class="col-sm-5 ">组&nbsp;织&nbsp;编&nbsp;码:</label>-->
94
+ <!--<label style="font-weight:normal">{{$login.f.number}}</label>-->
95
95
  <!-- <div class="col-sm-7">
96
96
  <span >{{$login.f.number}}</span>
97
97
  </div> -->
98
- </div>
98
+ <!--</div>-->
99
99
  <div class="col-sm-12 form-group">
100
100
  <label class="col-sm-5">所在销售点:</label>
101
101
  <label style="font-weight:normal">{{$login.f.deps}}</label>
@@ -106,7 +106,7 @@
106
106
  </div>
107
107
  </form>
108
108
  </article>
109
- <footer slot="modal-footer" class="modal-footer">
109
+ <footer slot="modal-footer" style="height: 8vh" class="modal-footer">
110
110
  <button class="button_search" @click="depPromptConfirm">确认</button>
111
111
  <button class="button_clear" @click="depPromptCancel">取消</button>
112
112
  </footer>
File without changes
@@ -0,0 +1,111 @@
1
+ <template>
2
+ <div class='over' style="display: inline-block; width: 100%;">
3
+ <tree :model='functions' :flagres="false" :is-click="false" v-ref:tree @toggle="toggled" >
4
+ <span partial class="row" :class="{ 'tree-img': isFolder(row), 'tree-span': !isFolder(row) }">
5
+ <div class="col-sm-2" >
6
+ <img v-if="isFolder(row)" :src="row.data.icon" alt="">
7
+ </div>
8
+ <div class="col-sm-8" style="padding-left:6%;text-align: left">{{row.data.name}}</div>
9
+ </span>
10
+ </tree>
11
+ </div>
12
+ </template>
13
+ <script>
14
+ import Vue from 'vue'
15
+
16
+ export default {
17
+ props: ['functions', 'userid','tabs'],
18
+ title: '左侧树菜单',
19
+ data () {
20
+ return {
21
+ index: -1,
22
+ name: null,
23
+ tbcg:[]
24
+ }
25
+ },
26
+ methods: {
27
+ open (row) {
28
+ if (row.data.name === '资源管理') {
29
+ this.$parent.changeMain(row.data.id)
30
+ return
31
+ }
32
+ console.log(row.data.navigate)
33
+ if (row.data.navigate) {
34
+
35
+ let isExist = false
36
+ this.tbcg.forEach((tab) => {
37
+ if(tab.comp.name == row.data.link) {
38
+ isExist = true
39
+ }
40
+ })
41
+ if (!isExist){
42
+ this.$goto('embbed-page', {domainName: row.data.navigate, title: row.data.name, compName: row.data.link, login: Vue.$login, param: Vue.$appdata}, 'main')
43
+ }else {
44
+ console.log(isExist,'aa')
45
+ this.$emit('isnodo',row.data.link)
46
+ }
47
+ } else if (row.data.link) {
48
+ let isExist = false
49
+ this.tbcg.forEach((tab) => {
50
+ if(tab.comp.name == row.data.link) {
51
+ isExist = true
52
+ }
53
+ })
54
+ if (!isExist){
55
+ this.$goto(row.data.link, {f: this.functions}, 'main')
56
+ }else {
57
+ console.log(isExist,'saaa')
58
+ this.$emit('isnodo',row.data.link)
59
+ }
60
+ }
61
+ },
62
+ changeSelect(name) {
63
+ if (!name) {
64
+ this.$refs.tree.selectStore.select(null)
65
+ return
66
+ }
67
+ this.name = name
68
+ let index = this.selfFindIndex(name)
69
+ this.index = index
70
+ // 当前激活页签有,index为-1,说明菜单收缩
71
+ this.changeSelected(index)
72
+ },
73
+ selfFindIndex (name) {
74
+
75
+ return this.$refs.tree.toNode.findIndex((item) => {
76
+ return item.data.link === name
77
+ })
78
+ },
79
+ changeSelected (index) {
80
+
81
+ if (index === -1) {
82
+ this.$refs.tree.selectStore.select(null)
83
+ }else {
84
+ this.$refs.tree.selectStore.select(this.$refs.tree.toNode[index])
85
+ }
86
+
87
+ },
88
+ toggled () {
89
+
90
+ if (this.name && this.index === -1) {
91
+ let index = this.selfFindIndex(this.name)
92
+ if (index !== -1) {
93
+ this.changeSelected(index)
94
+ }
95
+ }
96
+ }
97
+ },
98
+ events: {
99
+ 'select-changed': function (data) {
100
+
101
+ // 事件回调内的 `this` 自动绑定到注册它的实例上
102
+ this.open(data.val)
103
+ }
104
+ },
105
+ watch:{
106
+ 'tabs'(val){
107
+ this.tbcg = val
108
+ }
109
+ }
110
+ }
111
+ </script>