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
| // pages/notice/notice.js
| Page({
|
| /**
| * 页面的初始数据
| */
| data: {
| currentTab: 0,
| tabList: [{
| "name": "工作通知"
| },
| {
| "name": "预警警示"
| },
| {
| "name": "系统通知"
| }
| ],
| pageList: [
| {
| url: "/res/icons/notice_3.png"
| },
| {
| url: "/res/icons/notice_1.png"
| },
| {
| url: "/res/icons/notice_2.png"
| },
|
| ]
| },
|
| //计算swiper高度方法(在切换的时候调用)
| tabsHeight(element) {
| let that = this;
| let query = wx.createSelectorQuery(); //必须要先创建一个查询
| query.select(element).boundingClientRect(function (rect) {
| that.setData({
| pageheight: rect.height + 'px'
| });
| }).exec();
| },
| swichNav: function (e) {
| var that = this;
| if (this.data.currentTab === e.target.dataset.current) {
| return false;
| } else {
| that.setData({
| currentTab: e.target.dataset.current,
| navScrollLeft: e.target.dataset.current >= 4 ? ((e.target.dataset.current) * 60) : 0 //判断当前选中的个数是否是第5个
| })
| that.tabsHeight('.page'+e.target.dataset.current); //查询哪一个元素
| }
| },
| bindChange: function (e) {
| var that = this;
| that.setData({
| currentTab: e.detail.current,
| navScrollLeft: e.detail.current >= 4 ? ((e.detail.current) * 60) : 0 //判断当前选中的个数是否是第5个
| });
| // that.tabsHeight('.page'+e.target.dataset.current); //查询哪一个元素
| },
|
| /**
| * 生命周期函数--监听页面加载
| */
| onLoad: function (options) {
| this.tabsHeight('.page0');
| },
| })
|
|