forked from gzzfw/frontEnd/gzDyh

liuwh
2024-09-09 2e4d56e2ed95cb0f336522216fedc37167fb446d
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
// pages/AIAide/index.js
const $$ = require('../../utils/util');
const app = getApp();
 
function getawApi(submitData) {
  return $$.request({
    url: 'case-law/get-law',
    type: 'post',
    ai: true,
    submitData,
    service: 'mediate',
  });
}
// 获取案例
function getCaseApi(submitData) {
  return $$.request({
    url: 'case-law/get-case',
    type: 'post',
    ai: true,
    submitData,
    service: 'mediate',
  });
}
 
Page({
  /**
   * 页面的初始数据
   */
  data: {
    imgUrl: $$.url.img,
    AIData: [], //法条
    caseData: [], //案例
  },
 
  async getaw(data) {
    let newData = {
      caseDes: data.caseDes,
      caseClaim: data.caseClaim,
      caseId: data.caseId,
    }
    $$.showLoading();
    const res = await getawApi(newData);
    $$.hideLoading();
    if (res.type) {
      let nowData = res.data || []
      this.setData({
        AIData: nowData.map(i => ({
          ...i,
          show: false
        }))
      })
    }
  },
 
  // 案例
  async getCase(data) {
    let newData = {
      caseDes: data.caseDes,
      caseClaim: data.caseClaim,
      caseId: data.caseId,
    }
    $$.showLoading();
    const res = await getCaseApi(newData);
    $$.hideLoading();
    if (res.type) {
      this.setData({
        caseData: res.data || []
      })
    }
  },
 
  // 打开折叠法条
  lawClick(e) {
    let item = e.currentTarget.dataset.item;
    let index = e.currentTarget.dataset.index;
    this.setData({
      AIData: this.data.AIData.map((i, idx) => ({
        ...i,
        show: idx === index ? i.show ? false : true : false,
      }))
    })
  },
 
  // 跳转案例详情
  caseClick(e) {
    let url = e.currentTarget.dataset.url;
    let caseId = e.currentTarget.dataset.caseid;
    let caseType = e.currentTarget.dataset.casetype;
 
    wx.navigateTo({
      url: url + '?caseId=' + caseId + '&type=' + caseType,
    });
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    console.log('options', options);
    let {
      caseDes,
      caseClaim,
      caseId,
    } = options;
    this.getaw({
      caseDes,
      caseClaim,
      caseId,
    })
    this.getCase({
      caseDes,
      caseClaim,
      caseId,
    })
  },
})