dropdown.js
2.58 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
import {
mapState
} from 'vuex'
import api from '@/api/api'
import {
httpPost
} from '@/api/fetch-api.js'
import { gotoVHIS } from '@/utils/biz.js';
export default {
name: "DropDownList",
data() {
return {
activeIndex: 0,
sTitle: this.dataObj && this.dataObj.name || '',
};
},
props: {
type: {
type: String,
default() {
return "nav";
}
},
dataObj: {
type: Object,
default() {
return {};
}
},
dataList: {
type: Array,
default() {
return [];
}
},
labelProperty: {
type: String,
default() {
return "name";
}
}
},
directives: {
dpl: {
bind(el) {
el.style.display = "none";
}
}
},
methods: {
onNavHandler() {
let path = this.dataObj && this.dataObj.path || "";
if (path) {
this.$router.push({
path: path
})
}
},
onOverHandler(event) {
let ul = event.currentTarget.childNodes[1].childNodes[1];
ul.style.display = "block";
},
onOutHandler(event) {
// console.log(event);
let ul = event.currentTarget.childNodes[1].childNodes[1];
ul.style.display = "none";
},
onClickHandler(event, index) {
// 隐藏其他
// let path = event.path || (event.composedPath && event.composedPath()); //兼容火狐和safari
// path[1].style.display = "none";
if (this.$refs.ul) {
this.$refs.ul.style.display = "none";
}
// 选择item
this.activeIndex = index;
let curData = this.dataList[index];
if (this.type == "lang") {
// 如果是语言设置,则设置语言
let lang = curData.value;
this.$i18n.locale = lang;
localStorage.setItem("lang", lang);
this.sTitle = curData.name;
window.location.reload();
} else {
// if (curData.value == "logout") {
// this.loginHandler();
// } else {
// this.$router.push({
// path: curData.path
// })
// }
console.log(curData);
let item = curData;
let path = item && item.path || "";
if (path) {
this.$router.push({
path: path
})
} else {
let value = item && item.value || null;
if (value) {
switch (value) {
case "logout":
this.loginHandler();
break;
case "gotoVHIS":
gotoVHIS(this.locale);
break;
}
}
}
}
},
loginHandler() {
httpPost({
url: api.logout
}).then(() => {
this.$store.commit("SET_USER_INFO", null);
this.showLogoutTip();
});
},
showLogoutTip() {
// 登出后的提示
// alert("登出成功");
}
},
computed: {
dplLable() {
return this.dataList[this.activeIndex][this.labelProperty];
}
},
created() { },
};