forked from nsjcy/frontEnd/nsjcy

liuwh
2020-05-09 6ee2429b63ff94f80a5c3e5db963ef77745b0094
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
//index.js
//获取应用实例
const 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',
    evalList: [{
      tempFilePaths: [],
      imgList: []
    },
    ],
    addList: [{
      tempFilePaths: [],
      imgList: []
    }]
  },
  //事件处理函数
  //添加图片
  suggestInfo: function() {
    wx.navigateTo({
      url: '../suggestInfo/suggestInfo',
    })
  },
 
  submit: function () {
    wx.showToast({
      title: '提交成功!',
      icon: 'success',
      duration: 2000
    }, wx.navigateTo({
      url: '../index/index',
    }))
  },
  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);
          }
        }
      }
    })
  },
 
  joinPicture1: function (e) {
    var index = e.currentTarget.dataset.index;
    var addList = this.data.addList;
    var that = this;
    var imgNumber = addList[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.chooseWxImage1("album", imgNumber);
          } else if (res.tapIndex == 1) {
            that.chooseWxImage1("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);
      },
    })
  },
 
  chooseWxImage1: function (type, list) {
    var img = list;
    var len = img.length;
    var that = this;
    var addList = this.data.addList;
    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({
          addList: addList
        })
        that.upLoadImg1(img);
      },
    })
  },
 
  upLoadImg: function(list) {
    var that = this;
    this.upload(that, list);
  },
 
  upLoadImg1: function (list) {
    var that = this;
    this.upload1(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
          }
        })
    }
  },
 
  upload1: 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 addList = that.data.addList;
            addList[0].imgList = curImgList;
            that.setData({
              addList: addList
            })
            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);
  },
 
  //删除图片
  clearImg1: function (e) {
    var index = e.currentTarget.dataset.index;
    var addList = this.data.addList;
    var img = addList[0].tempFilePaths;
    img.splice(index, 1);
    this.setData({
      addList: addList
    })
    this.upLoadImg(img);
  },
 
})