forked from nsjcy/frontEnd/nsjcy

liyj
2020-02-11 e60e253cb3ce0597ded89b56a414c731e28c4ff1
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
var app = getApp()
Page({
  data: {
    src: app.globalData.imgUrl +'/image/bg.jpg',
    itemIcon: app.globalData.imgUrl +'/image/ceshi.jpg',
    icon: app.globalData.imgUrl +'/image/fzl.svg',
    user: app.globalData.imgUrl +'/image/user.svg',
    yes: app.globalData.imgUrl +'/image/yes.svg',
    add: app.globalData.imgUrl +'/image/add.svg',
    del: app.globalData.imgUrl +'/image/del.svg',
    reason: '',
    path: '',
    _lawyerinfo: false,
    _caseinfo: false,
    evalList: [{ tempFilePaths: [], imgList: [] }]
  },
 
  // 页面跳转
  requestInfo: function () {
    wx.navigateTo({
      url: '../informInfo/informInfo',
    })
  },
  agentInfo: function () {
    wx.navigateTo({
      url: '../informBeInfo/informBeInfo',
    })
  },
 
  //申诉理由
  reason: function (e) {
    this.setData({
      reason: e.detail.value,
    })
    app.globalData.pageData.reason = e.detail.value;
    console.log('申诉理由', app.globalData.pageData)
  },
 
  //获取代理人及申请人信息
  onShow: function () {
    const options = getApp().globalData.pageData;
    if (options.userName) {
      console.log('setting...');
      this.setData({
        _lawyerinfo: true,
      });
    }
    if (options.informBeInfoName) {
      console.log('setting...');
      this.setData({
        _caseinfo: true,
      });
    }
  },
 
  submit: function () {
    var openId = wx.getStorageSync("openId");
    // var id = this.data['id'];
    var formData = app.globalData.pageData;
    formData.id = id;
    formData.applyUser = openId;
    console.log(formData);
    // wx.request({
    //   url: app.globalData.url + '/api/v1/paperApply/save',
    //   data: formData,
    //   method: 'POST',
    //   header: {
    //     "Content-Type": "application/json"
    //   },
    //   success: function (res) {
    //     if (res.data.code == 0) {
    //       wx.showToast({
    //         title: '提交成功!',
    //         icon: 'success',
    //         duration: 2000
    //       }, wx.navigateTo({
    //         url: '../index/index',
    //       })
    //       )
 
    //     } else {
    //       wx.showModal({
    //         title: '提示',
    //         content: "提交失败!"
    //       })
    //     }
    //   }
    // })
  },
 
 
  upload: function () {
    var that = this
    wx.chooseImage({
      count: 1,
      sizeType: ['original', 'compressed'],
      sourceType: ['album', 'camera'],
      success: function (res) {
        var tempFilePaths = res.tempFilePaths
        console.log(tempFilePaths)
        wx.uploadFile({
          url: 'http://example.weixin.qq.com/upload',
          filePath: tempFilePaths[0],
          name: 'file',
          formData: {
            'user': 'test'
          },
          success: function (res) {
            var data = res.data
            wx.showModal({
              title: '上传文件返回状态',
              content: '成功',
              success: function (res) {
                if (res.confirm) {
                  console.log('用户点击确定')
                }
              }
            })                          //do something
          },
          fail: function (res) {
            console.log(res)
          }
        })
        that.setData({
          path: tempFilePaths
        })
      }
    })
  },
 
 
  //添加图片
  joinPicture: function (e) {
    var index = e.currentTarget.dataset.index;
    var evalList = this.data.evalList;
    var that = this;
    var imgNumber = evalList[index].tempFilePaths;
    if (imgNumber.length >= 3) {
      wx.showModal({
        title: '',
        content: '最多上传三张图片',
        showCancel: false,
      })
      return;
    }
    wx.showActionSheet({
      itemList: ["从相册中选择", "拍照"],
      itemColor: "#f7982a",
      success: function (res) {
        if (!res.cancel) {
          if (res.tapIndex == 0) {
            that.chooseWxImage("album", imgNumber);
          } else if (res.tapIndex == 1) {
            that.chooseWxImage("camera", imgNumber);
          }
        }
      }
    })
  },
  chooseWxImage: function (type, list) {
    var img = list;
    var len = img.length;
    var that = this;
    var evalList = this.data.evalList;
    wx.chooseImage({
      count: 3,
      sizeType: ["original", "compressed"],
      sourceType: [type],
      success: function (res) {
        var addImg = res.tempFilePaths;
        var addLen = addImg.length;
        if ((len + addLen) > 3) {
          for (var i = 0; i < (addLen - len); i++) {
            var str = {};
            str.pic = addImg[i];
            img.push(str);
          }
        } else {
          for (var j = 0; j < addLen; j++) {
            var str = {};
            str.pic = addImg[j];
            img.push(str);
          }
        }
        that.setData({
          evalList: evalList
        })
        that.upLoadImg(img);
      },
    })
  },
  upLoadImg: function (list) {
    var that = this;
    this.upload(that, list);
  },
  //多张图片上传
  upload: function (page, path) {
    var that = this;
    var curImgList = [];
    for (var i = 0; i < path.length; i++) {
      wx.showToast({
        icon: "loading",
        title: "正在上传"
      }),
        wx.uploadFile({
          url: app.globalData.subDomain + '/API/AppletApi.aspx',//接口处理在下面有写
          filePath: path[i].pic,
          name: 'file',
          header: { "Content-Type": "multipart/form-data" },
          formData: {
            douploadpic: '1'
          },
          success: function (res) {
            curImgList.push(res.data);
            var evalList = that.data.evalList;
            evalList[0].imgList = curImgList;
            that.setData({
              evalList: evalList
            })
            var data = res.data
            page.setData({  //上传成功修改显示头像
              src: path[0]
            })
          },
          complete: function () {
            wx.hideToast();  //隐藏Toast
          }
        })
    }
  },
  //删除图片
  clearImg: function (e) {
    var index = e.currentTarget.dataset.index;
    var evalList = this.data.evalList;
    var img = evalList[0].tempFilePaths;
    img.splice(index, 1);
    this.setData({
      evalList: evalList
    })
    this.upLoadImg(img);
  },
 
})