...
|
...
|
@@ -661,31 +661,28 @@ |
|
|
console.log(res);
|
|
|
console.log(localIda.toString());
|
|
|
alert(localIda);
|
|
|
wx.previewImage({
|
|
|
current: '', // 当前显示图片的http链接
|
|
|
urls: [] // 需要预览的图片http链接列表
|
|
|
});
|
|
|
|
|
|
// 上传图片接口
|
|
|
// wx.uploadImage({
|
|
|
// localId: localIda.toString(), // 需要上传的图片的本地ID,由chooseImage接口获得
|
|
|
// isShowProgressTips: 1, // 默认为1,显示进度提示
|
|
|
// success: function (res2) {
|
|
|
// var serverId = res2.serverId;
|
|
|
// console.log('1111111');
|
|
|
// console.log(res2);
|
|
|
// $.ajax({
|
|
|
// url: "{:url('Member/upload_wx_pic')}",
|
|
|
// type: "POST",
|
|
|
// data: {media: serverId},
|
|
|
// success: function (data) {
|
|
|
// alert(data.data.httpimgurls)
|
|
|
//
|
|
|
// }
|
|
|
// });
|
|
|
// // var serverId1 = res.serverId; // 返回图片的服务器端ID
|
|
|
// // alert(serverId1);
|
|
|
// },
|
|
|
// });
|
|
|
wx.uploadImage({
|
|
|
localId: localIda.toString(), // 需要上传的图片的本地ID,由chooseImage接口获得
|
|
|
isShowProgressTips: 1, // 默认为1,显示进度提示
|
|
|
success: function (res2) {
|
|
|
var serverId = res2.serverId;
|
|
|
console.log('1111111');
|
|
|
console.log(res2);
|
|
|
$.ajax({
|
|
|
url: "{:url('Member/upload_wx_pic')}",
|
|
|
type: "POST",
|
|
|
data: {media: serverId},
|
|
|
success: function (data) {
|
|
|
alert(data.data.httpimgurls)
|
|
|
|
|
|
}
|
|
|
});
|
|
|
// var serverId1 = res.serverId; // 返回图片的服务器端ID
|
|
|
// alert(serverId1);
|
|
|
},
|
|
|
});
|
|
|
|
|
|
}
|
|
|
});
|
...
|
...
|
|