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
| /**
| * 智能咨询查询结果列表组件
| */
|
| Component({
| options: {
| addGlobalClass: true,
| },
| /**
| * 组件的属性列表
| */
| properties: {
| //查询结果
| results: {
| type: Array,
| value: []
| },
| scrollable: {
| type: Boolean,
| value: true
| },
| loading: {
| type: Boolean,
| value: false
| },
| needLoadMore: {
| type: Boolean,
| value: false
| },
| },
|
|
| /**
| * 组件的初始数据
| */
| data: {
|
| },
|
| /**
| * 组件的方法列表
| */
| methods: {
| /**
| * 跳转法规文件、条目、案例、问答的详情界面
| */
| gotoDetail(e) {
| const {index, type} = e.currentTarget.dataset
| const id = this.data.results[index].id
| let url = ''
| switch (type) {
| case 1:
| url = '/pages/m_consult/consultdetail/consultdetail'
| break;
| case 2:
| url = '/pages/m_consult/consultdetailitem/consultdetailitem'
| break;
| case 3:
| url = '/pages/m_consult/consultdetailcase/consultdetailcase'
| break;
| case 4:
| url = '/pages/m_consult/consultdetailqa/consultdetailqa'
| break;
| default:
| break;
| }
| if (url != '') {
| wx.navigateTo({
| url: url,
| success: (res) => {
| res.eventChannel.emit('acceptDataFromOpenerPage', {
| id: id
| })
| },
| })
| } else {
| console.log('b_search: gotoDetail, url为空');
| }
| },
|
| gotoMore() {
| this.triggerEvent('gotoMore')
| }
| }
| })
|
|