contact-table.js
5.5 KB
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
272
273
274
275
276
import {
getBindtapData,
checkMobile
} from '../../utils/util';
let app = getApp();
Page({
data: {
authorizeVisible: false,
commonTipsCompVisible: false,
innerTitle: "留言提交成功!",
innerText: "感谢您宝贵的意见\n我们将尽快回电或回复信息",
maxImg: 9, // 上传数量
files: [], // 上传文件列表
name: "",
phone: "",
messageContant: "", // 单词拼写错误
userInfo: {},
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onLoad(options) {
this.initData();
},
initData() {
// this.setData({
// commonTipsCompVisible: false
// })
this.queryMember().then((result) => {
this.setData({
name:result.nickname
})
});
},
/**
* 获取会员信息
*/
queryMember() {
return new Promise((resolve, reject) => {
app.post({
url: app.api.member,
data: {}
}).then((result) => {
this.setData({
userInfo: result
})
resolve(result);
})
});
},
/**
* 提交表单
*/
onSubmitHandler() {
let {
name,
phone,
messageContant,
files
} = this.data;
let pics = [];
files.forEach(element => {
pics.push(element.path)
});
// 校验
if (!name) {
wx.showToast({
title: "请输入用户姓名",
icon: 'none'
})
return;
}
// if (!phone) {
// wx.showToast({
// title: "请输入联系方式",
// icon: 'none'
// })
// return;
// }
if (phone && !checkMobile(phone)) {
wx.showToast({
title: "请输入正确联系方式",
icon: 'none'
})
return;
}
if (!messageContant) {
wx.showToast({
title: "请输入联系方式",
icon: 'none'
})
return;
}
if (pics.length <= 0) {
wx.showToast({
title: "请上传图片",
icon: 'none'
})
return;
}
// 上传图片到服务器
this.uploadToCustomService(pics).then((result) => {
// 提交表单
app.post({
url: app.api.messageSave,
data: {
name: name,
phone: phone,
messageContant: messageContant,
images: result.join(','),
}
}).then((result2) => {
this.setData({
commonTipsCompVisible: true
})
});
})
},
/**
* 上传到自定义服务器
* urlList 需要上传的图片地址
*/
uploadToCustomService(urlList) {
let _this = this;
return new Promise((resolve, reject) => {
// promise列表
let p = [];
// 用promise上传音频
urlList.forEach(element => {
let myPromise = new Promise((resolve2, reject2) => {
_this.uploadfileMultiple(element).then((result2) => {
resolve2(result2)
}).catch((err) => {
// _this.tip("声音上传失败")
reject2();
});
});
p.push(myPromise);
});
Promise.all(p).then(uploadFiles => {
resolve(uploadFiles)
}, reason => {
reject();
});
});
},
/**
* 多文件上传
* @param {*} filePath
*/
uploadfileMultiple(filePath) {
let _this = this;
return new Promise((resolve, reject) => {
wx.uploadFile({
url: app.config.NET_CONFIG.commonApi + app.api.uploadFile,
filePath: filePath,
name: 'file',
// header: {}, // 设置请求的 header
header: {
'content-type': 'multipart/form-data'
},
formData: {
path: '/weapp/zhiliang-light-upload/'
},
// HTTP 请求中其他额外的 form data
success(res) {
let result = JSON.parse(res.data).content;
resolve(result);
},
fail() {
reject()
},
complete: function () {}
})
});
},
/**
* 调起微信图片上传
*/
onUploadHandler() {
let _this = this;
let count = _this.data.maxImg - _this.data.length;
wx.chooseImage({
sizeType: ['original', 'compressed'],
sourceType: ['album'],
count: count,
success(res) {
// tempFilePath可以作为img标签的src属性显示图片
const tempFiles = res.tempFiles
let maxImg = _this.data.maxImg;
let files = _this.data.files;
files = files.concat(tempFiles);
if (files.length > maxImg) {
files.splice(0, maxImg);
}
_this.setData({
files
});
}
})
},
/**
* 删除选中图片
*/
remove(evt) {
let index = getBindtapData(evt, "index");
let files = this.data.files;
files.splice(index, 1);
this.setData({
files
})
},
/**
* 绑定键盘输入
*/
bindNameInput(e) {
this.setData({
name: e.detail.value
});
},
/**
* 绑定键盘输入
*/
bindPhoneInput(e) {
this.setData({
phone: e.detail.value
});
},
/**
* 绑定键盘输入
*/
bindMessageContantInput(e) {
this.setData({
messageContant: e.detail.value
});
},
// 隐藏蒙层
hideMask() {
this.setData({
commonTipsCompVisible: false
})
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
switch (name) {
case "_evt_common_comp_button":
this.hideMask();
wx.navigateBack({
delta: 1
});
break;
default:
break;
}
},
})