正在显示
1 个修改的文件
包含
47 行增加
和
0 行删除
@@ -615,6 +615,7 @@ | @@ -615,6 +615,7 @@ | ||
615 | }) | 615 | }) |
616 | 616 | ||
617 | //上传图片 | 617 | //上传图片 |
618 | + //上传图片 | ||
618 | $(function () { | 619 | $(function () { |
619 | var tmpl = '<li class="weui-uploader__file" style="background-image:url(#url#)"></li>', | 620 | var tmpl = '<li class="weui-uploader__file" style="background-image:url(#url#)"></li>', |
620 | $gallery = $("#gallery"), $galleryImg = $("#galleryImg"), | 621 | $gallery = $("#gallery"), $galleryImg = $("#galleryImg"), |
@@ -643,6 +644,52 @@ | @@ -643,6 +644,52 @@ | ||
643 | }); | 644 | }); |
644 | }); | 645 | }); |
645 | 646 | ||
647 | + //上传图片 | ||
648 | + $('.addpic').on('click', function (res) { | ||
649 | + console.log(11111); | ||
650 | + var length = $('.length').length; | ||
651 | + if (length >= 9) { | ||
652 | + alert('不能上传了') | ||
653 | + $('#addpic').hide(); | ||
654 | + return false; | ||
655 | + } | ||
656 | + wx.chooseImage({ | ||
657 | + count: 9 - length, // 默认9 | ||
658 | + sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 | ||
659 | + sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 | ||
660 | + success: function (res) { | ||
661 | + console.log(res.localIds); | ||
662 | + console.log(1111111111); | ||
663 | + for (var i = 0; i < res.localIds.length; i++) { | ||
664 | + // $('.addpic').before('<img style="width:100px;height:100px;" class="length" src="'+res.localIds[i]+'"/>') | ||
665 | + $('.addpic').before('<li class="weui-uploader__file length" src="' + res.localIds[i] + '" style="background-image:url(' + res.localIds[i] + ')"></li>') | ||
666 | + } | ||
667 | + uploadImages(res.localIds)// 返回选定照片的本地ID列表,localId可以作为img标签的src属性显示图片 | ||
668 | + } | ||
669 | + }); | ||
670 | + }) | ||
671 | + | ||
672 | + | ||
673 | + function uploadImages(localIds) { | ||
674 | + var localId = localIds.pop(); | ||
675 | + wx.uploadImage({ | ||
676 | + localId: localId, | ||
677 | + isShowProgressTips: 1, | ||
678 | + success: function (res) { | ||
679 | + var serverId = res.serverId; // 返回图片的服务器端ID | ||
680 | + console.log(serverId); | ||
681 | + serverIds += serverId + ','; | ||
682 | + if (localIds.length > 0) { | ||
683 | + uploadImages(localIds); | ||
684 | + } | ||
685 | + }, | ||
686 | + fail: function (res) { | ||
687 | + $modal.toast(JSON.stringify(res)); | ||
688 | + } | ||
689 | + }); | ||
690 | + } | ||
691 | + | ||
692 | + | ||
646 | //提交按钮 | 693 | //提交按钮 |
647 | $('.submit').click(function () { | 694 | $('.submit').click(function () { |
648 | /*获取疾病分类*/ | 695 | /*获取疾病分类*/ |
-
请 注册 或 登录 后发表评论