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
139
140
141
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
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
367
368
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
<template>
<div class="app-page-tag-style2" v-if="navHistory.historyList.length > 0">
<div class="app-page-tag-style2__left__icon" @click="leftMove">
<icon type="ios-arrow-back" />
</div>
<div ref="scrollBody" class="app-page-tag-style2__left">
<div
ref="scrollChild"
class="app-page-tag-style2__tags"
:style="{ left: styleLeft + 'px' }"
>
<transition-group name="tags-transition" class="app-page-tag-style2__tag">
<template v-for="(item, index) of navHistory.historyList">
<Tag
ref="tagElement"
:key="item.tag + index"
:class="{'is-active': isActive(item) }"
:name="index"
closable
@click.native="changePage(item)"
@on-close="onClose(item)"
>
<div
:title="translate(item)"
class="tag__content"
>
<i
v-if="item.meta.iconCls && !Object.is(item.meta.iconCls, '')"
:class="{[item.meta.iconCls]:true,'tag__icon':true}"
></i>
<img v-else :src="item.meta.imgPath" class="tag__image" />
{{ translate(item) }}
</div>
</Tag>
</template>
</transition-group>
</div>
</div>
<div class="app-page-tag-style2__right__icon" @click="rightMove">
<icon type="ios-arrow-forward" />
</div>
<Dropdown
@on-click="doTagAction"
placement="bottom-end"
class="app-page-tag-style2__right"
transfer-class-name="app-page-style2-more"
>
<icon type="ios-more" />
<DropdownMenu slot="list">
<template v-for="(action, index) of actions">
<DropdownItem :key="index" :name="action.value">{{
$t(action.text)
}}</DropdownItem>
</template>
</DropdownMenu>
</Dropdown>
</div>
</template>
<script lang="ts">
import { Vue, Component, Provide, Prop, Watch } from "vue-property-decorator";
import { AppServiceBase } from "ibiz-core";
import { AppNavHistory } from "ibiz-vue";
import { HistoryItem } from "ibiz-vue/src/app-service/common-service/app-nav-history";
@Component({})
export default class TabPageExpStyle2 extends Vue {
@Provide()
public styleLeft: number = 0;
@Provide()
public actions: any[] = [
{ text: "app.tabpage.closeall", value: "closeAll" },
{ text: "app.tabpage.closeother", value: "closeOther" },
];
/**
* 导航服务
*
* @memberof TabPageExpStyle2
*/
protected navHistory: AppNavHistory = AppServiceBase.getInstance().getAppNavDataService();
/**
* 环境对象
*
* @memberof TabPageExpStyle2
*/
protected environment: any = AppServiceBase.getInstance().getAppEnvironment();
/**
* 当前激活菜单项
*
* @type {*}
* @memberof TabPageExpStyle2
*/
@Prop() public activeItem: any;
/**
* 模型服务对象
*
* @memberof AppDefaultFormDetail
*/
@Prop() public modelService?:any;
/**
* 监听激活菜单项变化
*
* @param newVal 当前激活菜单项
* @memberof TabPageExpStyle2
*/
@Watch("activeItem")
public onActiveItemChange(newVal: any) {
if (newVal) {
this.changeTabHistory(newVal);
}
}
@Watch("$route")
public onRouteChange(newVal: any) {
this.moveToView(newVal);
this.$emit("change", newVal);
}
public created() {
Vue.prototype.$tabPageExp = this;
}
/**
* 向左移动
*
* @memberof TabPageExpStyle2
*/
public leftMove() {
const scrollBody: any = this.$refs.scrollBody;
const scrollChild: any = this.$refs.scrollChild;
if (
scrollBody &&
scrollChild &&
scrollChild.offsetWidth > scrollBody.offsetWidth
) {
if (
scrollChild.offsetWidth - scrollBody.offsetWidth + this.styleLeft >
100
) {
this.styleLeft -= 100;
} else {
this.styleLeft = scrollBody.offsetWidth - scrollChild.offsetWidth;
}
}
}
/**
* 向右移动
*
* @memberof TabPageExpStyle2
*/
public rightMove() {
if (this.styleLeft < 0) {
if (this.styleLeft + 100 > 0) {
this.styleLeft = 0;
} else {
this.styleLeft += 100;
}
}
}
/**
* 是否选中
*
* @param {HistoryItem} item
* @returns {boolean}
* @memberof TabPageExpStyle2
*/
public isActive(item: HistoryItem): boolean {
return this.navHistory.isRouteSame(item.to, this.$route);
}
/**
* 关闭
*
* @param {HistoryItem} item
* @memberof TabPageExpStyle2
*/
public onClose(item: HistoryItem) {
// const appview = this.$store.getters['viewaction/getAppView'](item.tag);
const appview: any = {};
if (appview && appview.viewdatachange) {
const title: any = this.$t("app.tabpage.sureclosetip.title");
const content: any = this.$t("app.tabpage.sureclosetip.content");
this.$Modal.confirm({
title: title,
content: content,
onOk: () => {
this.navHistory.remove(item);
if (this.navHistory.historyList.length > 0) {
if (this.navHistory.isRouteSame(item.to, this.$route)) {
this.$router.back();
}
} else {
this.gotoPage();
}
},
});
} else {
this.navHistory.remove(item);
if (this.navHistory.historyList.length > 0) {
if (this.navHistory.isRouteSame(item.to, this.$route)) {
let go: any = this.navHistory.historyList[
this.navHistory.historyList.length - 1
].to;
this.$router.push({
path: go.path,
params: go.params,
query: go.query,
});
}
} else {
this.gotoPage();
}
}
}
/**
* 是否显示关闭
*
* @returns
* @memberof TabPageExpStyle2
*/
public isClose() {
if (this.navHistory.historyList.length > 1) {
return true;
}
return false;
}
/**
* 切换分页
*
* @param {*} item
* @memberof TabPageExpStyle2
*/
public changePage(item: HistoryItem) {
this.gotoPage(item.to);
}
/**
* 跳转页面
*
* @returns
* @memberof TabPageExpStyle2
*/
public gotoPage(page?: any) {
if (page && this.navHistory.historyList.length > 0) {
if (Object.is(page.fullPath, this.$route.fullPath)) {
return;
}
this.updateSortIndex(page);
this.$router.push({
path: page.path,
params: page.params,
query: page.query,
});
} else {
const path: string | null = window.sessionStorage.getItem(
this.environment.AppName
);
if (path) {
this.$router.push({ path: path });
} else {
const name: any = this.$route?.matched[0].name;
const param = this.$route.params[name];
const path = `/${name}${param ? `/${param}` : ""}`;
this.$router.push({ path });
}
}
}
/**
* 更新排序值
*
* @returns
* @memberof TabPageExpStyle2
*/
public updateSortIndex(page: any) {
const pages: any[] = this.navHistory.historyList;
if (pages.length > 0) {
pages.forEach((item: any) => {
if (Object.is(item.to.fullPath, page.fullPath)) {
this.navHistory.updateSortIndex(item);
}
});
}
}
/**
* 激活菜单项变化时更改分页栏路由
*
* @returns
* @memberof TabPageExpStyle2
*/
public changeTabHistory(menu: any) {
let menuTitle: string = "";
if (!menu.hidden && menu.isActivated) {
menuTitle = menu.text ? menu.text : menu.tooltip ? menu.tooltip : "";
}
let pages: any[] = this.navHistory.historyList;
let groups: Array<any> = this.handleTabPagesGroup(pages);
if (groups.length === 0) {
return;
}
groups.forEach((group: any) => {
if (
Object.is(group.caption, menuTitle) &&
group.items &&
group.items.length > 0
) {
let goTab: any = group.items.sort((val1: any, val2: any) => {
return val2.sortIndex - val1.sortIndex;
})[0];
this.$router.push({
path: goTab.to.fullPath,
params: goTab.to.params,
query: goTab.to.query,
});
}
});
}
/**
* 对所有打开的路由记录缓存进行分组
*
* @returns
* @memberof TabPageExpStyle2
*/
public handleTabPagesGroup(pages: any) {
if (pages.length === 0) {
return [];
}
let groups: Array<any> = [];
pages.forEach((item: any) => {
const caption: any = item.caption.split(" - ")[0];
const tempArr: Array<any> = groups.filter((group: any) => {
return Object.is(group.caption, caption);
});
if (tempArr.length === 0) {
groups.push({ caption: caption, items: [item] });
} else {
tempArr[0].items.push(item);
}
});
return groups;
}
/**
* 移动至指定页面标签
*
* @param {*} page
* @memberof TabPageExpStyle2
*/
public moveToView(page: any) {
const pages: any[] = this.navHistory.historyList;
let leftWidth: number = 0;
this.$nextTick(() => {
pages.forEach((_page, index) => {
const tag: any = this.$refs.tagElement;
if (!tag) {
return;
}
const el = tag[index].$el;
if (Object.is(_page.fullPath, page.fullPath)) {
this.setLeft(el, leftWidth);
} else {
leftWidth += el.offsetWidth;
}
});
});
}
/**
* 设置左侧边距
*
* @param {{ offsetWidth: number; }} tag
* @param {number} leftWidth
* @memberof TabPageExpStyle2
*/
public setLeft(tag: { offsetWidth: number }, leftWidth: number) {
if (tag) {
const scrollBody: any = this.$refs.scrollBody;
if (leftWidth < -this.styleLeft) {
this.styleLeft = -leftWidth;
} else if (
leftWidth + tag.offsetWidth >
scrollBody.offsetWidth - this.styleLeft
) {
this.styleLeft -=
leftWidth +
tag.offsetWidth -
(scrollBody.offsetWidth - this.styleLeft);
}
}
}
/**
* 执行行为操作
*
* @param {string} name
* @memberof TabPageExpStyle2
*/
public doTagAction(name: string) {
if (Object.is(name, "closeAll")) {
this.navHistory.reset();
this.gotoPage();
} else if (Object.is(name, "closeOther")) {
this.navHistory.removeOther({ to: this.$route });
this.moveToView(this.$route);
}
}
// 系统中有两个不同的tabPagExp但都注册了$tabPageExp,该方法防止页面调用$tabPageExp功能时报错
public setCurPageCaption(opts: any) {
this.navHistory.setCaption({ tag: opts.viewtag, info: opts.info });
}
/**
* 翻译分页标题
*
* @returns
* @memberof TabPageExpStyle2
*/
public translate(item: any) {
return item.info ? this.$tl(item.meta.captionTag,item.caption) + ' - ' + item.info : this.$tl(item.meta.captionTag,item.caption)
}
}
</script>