admin
2020-12-08 7f2d1daf6af6ecebad84d80de46a0e5024bbf5da
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
Page({
  data: {
    showLoading: true,
    msgList: [{
      contentList: [{
        title: "开奖期数", content: [{
          name: 'div',
          children: [{
            type: 'text',
            text: 'Hello World!Hello World!Hello World!Hello World!Hello World!',
          },
          {
            name: 'img',
            attrs: {
              src: 'https://gw.alicdn.com/tps/i3/TB1yeWeIFXXXXX5XFXXuAZJYXXX-210-210.png_160x160.jpg',
              style: 'border-radius:50%;width:30rpx;margin-left:5rpx;'
            }
          },
          {
            name: 'a',
            attrs: {
              href: 'https://www.baidu.com',
              style: 'color:#0080FF;'
            },
            children: [{
              type: 'text',
              text: '查看详情'
            }]
          }
          ],
        }],
      }, {}, {}, {}]
    }, {}, {}]
  },
  onLoad() {
    my.setNavigationBar({
      title: "消息记录",
      backgroundColor: "#0080FF",
      borderBottomColor: "#0080FF"
    });
  },
});