...
|
...
|
@@ -291,23 +291,19 @@ |
|
|
<script src="__TMPL__/public/assets/js/uploadfile.js"></script>
|
|
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
|
|
<script>
|
|
|
/* $(function (){
|
|
|
wx.config({
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,测试完成后需要关闭。
|
|
|
appId: "wxdf34ec2179e19b9a", // 必填,公众号的唯一标识
|
|
|
timestamp: "1560818590", // 必填,生成签名的时间戳
|
|
|
nonceStr: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", // 必填,生成签名的随机串
|
|
|
signature: "almGHISt15642",// 必填,签名(加密后,下文有实现)
|
|
|
jsApiList: ['chooseImage', 'uploadImage'] // 必填,需要使用的JS接口列表,开发文档上有所有接口名称,根据需要选用就好。
|
|
|
});
|
|
|
});*/
|
|
|
|
|
|
|
|
|
function openCamera(){
|
|
|
|
|
|
$.post("{:url('Salesmangoods/getSignPackage')}",{},function (data) {
|
|
|
data = JSON.parse(data);
|
|
|
console.log(data);
|
|
|
wx.config({
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,测试完成后需要关闭。
|
|
|
appId: data.appId, // 必填,公众号的唯一标识
|
|
|
timestamp: data.timestamp, // 必填,生成签名的时间戳
|
|
|
nonceStr: data.nonceStr, // 必填,生成签名的随机串
|
|
|
signature: data.signature,// 必填,签名(加密后,下文有实现)
|
|
|
jsApiList: ['chooseImage', 'uploadImage'] // 必填,需要使用的JS接口列表,开发文档上有所有接口名称,根据需要选用就好。
|
|
|
});
|
|
|
});
|
|
|
|
|
|
wx.chooseImage({
|
...
|
...
|
@@ -322,9 +318,10 @@ |
|
|
success: function (res) {
|
|
|
var mediaId = res.serverId; // 返回图片的服务器端ID,即mediaId
|
|
|
//将获取到的 mediaId 传入后台 方法savePicture
|
|
|
$.post(path+"/getImage/savePicture",{"mediaId":mediaId,"tmp":"填写证件的正反面参数"},function(res){
|
|
|
/*$.post(path+"/getImage/savePicture",{"mediaId":mediaId,"tmp":"填写证件的正反面参数"},function(res){
|
|
|
//填写你自己的业务逻辑
|
|
|
});
|
|
|
});*/
|
|
|
console.log(res);
|
|
|
},
|
|
|
fail: function (res) {
|
|
|
alertModal('图片上传失败,请重试');
|
...
|
...
|
|