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
| // pages/organizeDetail/index.js
| const $$ = require('../../utils/util');
|
| function getByIdApi(param) {
| return $$.request({
| url: 'ctUnit/getById',
| type: 'get',
| submitData: param || {},
| service: 'cust'
| })
| }
| Page({
|
| /**
| * 页面的初始数据
| */
| data: {
| data: {},
| },
|
|
| // 获取纠纷案件详情
| async getById(data) {
| $$.showLoading();
| const res = await getByIdApi({
| id: data.id
| });
| $$.hideLoading();
| if (res.type) {
| let data = res.data || {};
| this.setData({
| data
| });
| }
| },
|
| /**
| * 生命周期函数--监听页面加载
| */
| onLoad(options) {
| this.getById(options);
| },
|
| /**
| * 生命周期函数--监听页面初次渲染完成
| */
| onReady() {
|
| },
|
| })
|
|