|
@@ -0,0 +1,543 @@
|
|
|
+var Host = "/";
|
|
|
+var u = navigator.userAgent, app = navigator.appVersion;
|
|
|
+var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1;
|
|
|
+var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
|
|
|
+var isWeChat = true;
|
|
|
+if (u.toLowerCase().match(/MicroMessenger/i) == 'micromessenger') {
|
|
|
+ isWeChat = true;
|
|
|
+}
|
|
|
+
|
|
|
+function Replaceto(Url) {
|
|
|
+ window.location.replace("/Web/WeChat?Url=" + Url.replace("#", "_"));
|
|
|
+}
|
|
|
+
|
|
|
+function Goto(Url, Jump) {
|
|
|
+ var pageId = '0';
|
|
|
+ if (Url.indexOf("?") > -1) {
|
|
|
+ var data = Url.split("?");
|
|
|
+ pageId = data[0];
|
|
|
+ var params = data[1].split("&");
|
|
|
+ for (var i = 0; i < params.length; i++) {
|
|
|
+ var param = params[i].split("=");
|
|
|
+ var key = param[0];
|
|
|
+ var val = param[1];
|
|
|
+ putCookieInfo(key, val);
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ pageId=Url;
|
|
|
+ }
|
|
|
+ if (isWeChat) {
|
|
|
+ window.location.href = "/Web/WeChat?Url=" + pageId;
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.GotoUrl(pageId, Jump);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Url\":\"" + pageId + "\",";
|
|
|
+ row += "\"Jump\":\"" + Jump + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.GotoUrl.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function GotoUrlByBrowse(Url) {
|
|
|
+ if (isWeChat) {
|
|
|
+ window.location.href = "/Web/WeChat?Url=" + Url.replace("#", "_");
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.GotoUrlByBrowse(Url);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Url\":\"" + Url + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.GotoUrlByBrowse.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function SetStatusBarStyle(StatusBarStyle) {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.SetStatusBarStyle(StatusBarStyle);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"StatusBarStyle\":\"" + StatusBarStyle + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.SetStatusBarStyle.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function GoBack(Level) {
|
|
|
+ if (isWeChat) {
|
|
|
+ window.history.go(-Number(Level));
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.GoBack("GoBack#{\"Level\":\"" + Level + "\"}");
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Level\":\"" + Level + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.GoBack.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function ShareImage(PicturePath) {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ShareImage(PicturePath);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"PicturePath\":\"" + PicturePath + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.ShareImage.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function WeChatLogin() {
|
|
|
+ if (isAndroid) {
|
|
|
+ Func.WeChatLoginBack();
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {};
|
|
|
+ window.webkit.messageHandlers.WeChatLoginBack.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function ScanQRCode() {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ScanQRCode();
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {};
|
|
|
+ window.webkit.messageHandlers.ScanQRCode.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+var dbproindex;
|
|
|
+function ShowLoading() {
|
|
|
+ if (isWeChat) {
|
|
|
+ dbproindex = layer.open({
|
|
|
+ type: 2
|
|
|
+ , content: '加载中'
|
|
|
+ });
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ShowLoading();
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {};
|
|
|
+ window.webkit.messageHandlers.ShowLoading.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function HideLoading() {
|
|
|
+ if (isWeChat) {
|
|
|
+ layer.close(dbproindex);
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.HideLoading();
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {};
|
|
|
+ window.webkit.messageHandlers.HideLoading.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function ShowMsg(Title, Message) {
|
|
|
+ if (isWeChat) {
|
|
|
+ layer.open({
|
|
|
+ content: Message
|
|
|
+ , skin: 'msg'
|
|
|
+ , time: 2
|
|
|
+ });
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ShowMsg(Title, Message);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Title\":\"" + Title + "\",";
|
|
|
+ row += "\"Message\":\"" + Message + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.ShowMsg.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function ShowDialog(Title, Message, ConfirmText, CancelText, ConfirmAction) {
|
|
|
+ if (isWeChat) {
|
|
|
+ layer.open({
|
|
|
+ title: Title
|
|
|
+ , content: Message
|
|
|
+ , btn: [ConfirmText, CancelText]
|
|
|
+ , yes: function (index) {
|
|
|
+ layer.close(index);
|
|
|
+ eval(ConfirmAction);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ShowDialog(Title, Message, ConfirmText, CancelText, ConfirmAction);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {
|
|
|
+ Title: Title,
|
|
|
+ Message: Message,
|
|
|
+ ConfirmText: ConfirmText,
|
|
|
+ CancelText: CancelText,
|
|
|
+ ConfirmAction: ConfirmAction
|
|
|
+ };
|
|
|
+ window.webkit.messageHandlers.ShowDialog.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function putCookieInfo(Key, Value) {
|
|
|
+ if (isWeChat) {
|
|
|
+ Cookies.set(Key, Value);
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.putCookieInfo(Key, Value);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Key\":\"" + Key + "\",";
|
|
|
+ row += "\"Value\":\"" + Value + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.putCookieInfo.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function getCookieInfo(Key) {
|
|
|
+ var result = "";
|
|
|
+ if (isWeChat) {
|
|
|
+ result = Cookies.get(Key);
|
|
|
+ } else if (isAndroid) {
|
|
|
+ result = Func.getCookieInfo(Key);
|
|
|
+ } else if (isIOS) {
|
|
|
+ result = window.prompt('getCookieInfo', Key);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+}
|
|
|
+
|
|
|
+function RequestAlipay(OrderInfo) {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.Alipay(OrderInfo);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"OrderInfo\":\"" + OrderInfo + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.Alipay.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function RequestWechatPay(data) {
|
|
|
+ if (isWeChat) {
|
|
|
+ var wechat = JSON.parse(data);
|
|
|
+ WeChatPay(wechat, "29");
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.WechatPay(data);
|
|
|
+ } else if (isIOS) {
|
|
|
+ window.webkit.messageHandlers.WechatPay.postMessage(JSON.parse(data));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function PhoneCall(Phone) {
|
|
|
+ if (isWeChat) {
|
|
|
+ window.location.href = "tel:" + Phone;
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.PhoneCall(Phone);
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = "{";
|
|
|
+ row += "\"Phone\":\"" + Phone + "\"";
|
|
|
+ row += "}";
|
|
|
+ window.webkit.messageHandlers.PhoneCall.postMessage(JSON.parse(row));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function UploadPhoto(PhotoCount, Width, Height, Quality) {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.UploadPhoto("UploadPhoto#{\"PhotoCount\":\"" + PhotoCount + "\",\"Width\":\"" + Width + "\",\"Height\":\"" + Height + "\",\"Quality\":\"" + Quality + "\"}");
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {
|
|
|
+ PhotoCount: PhotoCount,
|
|
|
+ Width: Width,
|
|
|
+ Height: Height,
|
|
|
+ Quality: Quality
|
|
|
+ };
|
|
|
+ window.webkit.messageHandlers.UploadPhoto.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function LibraryPhoto(PhotoCount, Width, Height, Quality) {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.LibraryPhoto("{\"PhotoCount\":\"" + PhotoCount + "\",\"Width\":\"" + Width + "\",\"Height\":\"" + Height + "\",\"Quality\":\"" + Quality + "\"}");
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {
|
|
|
+ PhotoCount: PhotoCount,
|
|
|
+ Width: Width,
|
|
|
+ Height: Height,
|
|
|
+ Quality: Quality
|
|
|
+ };
|
|
|
+ window.webkit.messageHandlers.LibraryPhoto.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function ShowMQ() {
|
|
|
+ if (isWeChat) {
|
|
|
+ } else if (isAndroid) {
|
|
|
+ Func.ShowMQ();
|
|
|
+ } else if (isIOS) {
|
|
|
+ var row = {};
|
|
|
+ window.webkit.messageHandlers.ShowMQ.postMessage(row);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+function lazys() {
|
|
|
+
|
|
|
+}
|
|
|
+var HtmlUtil = {
|
|
|
+ htmlEncode: function (html) {
|
|
|
+ var temp = document.createElement("div");
|
|
|
+ (temp.textContent != undefined) ? (temp.textContent = html) : (temp.innerText = html);
|
|
|
+ var output = temp.innerHTML;
|
|
|
+ temp = null;
|
|
|
+ return output;
|
|
|
+ },
|
|
|
+ htmlDecode: function (text) {
|
|
|
+ var temp = document.createElement("div");
|
|
|
+ temp.innerHTML = text;
|
|
|
+ var output = temp.innerText || temp.textContent;
|
|
|
+ temp = null;
|
|
|
+ return output;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+function WeChatShare(appid, url, title, content, img, timestampS, nonceStrS, signatureS) {
|
|
|
+ var lineLink = url;
|
|
|
+ var descContent = content;
|
|
|
+ var shareTitle = title;
|
|
|
+ wx.config({
|
|
|
+ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
+ appId: appid, // 必填,公众号的唯一标识
|
|
|
+ timestamp: timestampS, // 必填,生成签名的时间戳
|
|
|
+ nonceStr: nonceStrS, // 必填,生成签名的随机串
|
|
|
+ signature: signatureS,// 必填,签名,见附录1
|
|
|
+ jsApiList: [
|
|
|
+ "onMenuShareTimeline",
|
|
|
+ "onMenuShareAppMessage",
|
|
|
+ "onMenuShareQQ",
|
|
|
+ "onMenuShareWeibo",
|
|
|
+ "onMenuShareQZone",
|
|
|
+ "scanQRCode"
|
|
|
+ ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
|
|
|
+ });
|
|
|
+
|
|
|
+ wx.ready(function () {
|
|
|
+ wx.onMenuShareTimeline({
|
|
|
+ title: shareTitle, // 分享标题
|
|
|
+ link: lineLink, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
|
|
|
+ imgUrl: img, // 分享图标
|
|
|
+ success: function () {
|
|
|
+ // 用户确认分享后执行的回调函数
|
|
|
+ },
|
|
|
+ cancel: function () {
|
|
|
+ // 用户取消分享后执行的回调函数
|
|
|
+ }
|
|
|
+ });
|
|
|
+ wx.onMenuShareAppMessage({
|
|
|
+ title: shareTitle, // 分享标题
|
|
|
+ desc: descContent, // 分享描述
|
|
|
+ link: lineLink, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
|
|
|
+ imgUrl: img, // 分享图标
|
|
|
+ type: 'link', // 分享类型,music、video或link,不填默认为link
|
|
|
+ dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
|
|
|
+ success: function () {
|
|
|
+ // 用户确认分享后执行的回调函数
|
|
|
+ },
|
|
|
+ cancel: function () {
|
|
|
+ // 用户取消分享后执行的回调函数
|
|
|
+ }
|
|
|
+ });
|
|
|
+ wx.onMenuShareQQ({
|
|
|
+ title: shareTitle, // 分享标题
|
|
|
+ desc: descContent, // 分享描述
|
|
|
+ link: lineLink, // 分享链接
|
|
|
+ imgUrl: img, // 分享图标
|
|
|
+ success: function () {
|
|
|
+ // 用户确认分享后执行的回调函数
|
|
|
+ },
|
|
|
+ cancel: function () {
|
|
|
+ // 用户取消分享后执行的回调函数
|
|
|
+ }
|
|
|
+ });
|
|
|
+ wx.onMenuShareWeibo({
|
|
|
+ title: shareTitle, // 分享标题
|
|
|
+ desc: descContent, // 分享描述
|
|
|
+ link: lineLink, // 分享链接
|
|
|
+ imgUrl: img, // 分享图标
|
|
|
+ success: function () {
|
|
|
+ // 用户确认分享后执行的回调函数
|
|
|
+ },
|
|
|
+ cancel: function () {
|
|
|
+ // 用户取消分享后执行的回调函数
|
|
|
+ }
|
|
|
+ });
|
|
|
+ wx.onMenuShareQZone({
|
|
|
+ title: shareTitle, // 分享标题
|
|
|
+ desc: descContent, // 分享描述
|
|
|
+ link: lineLink, // 分享链接
|
|
|
+ imgUrl: img, // 分享图标
|
|
|
+ success: function () {
|
|
|
+ // 用户确认分享后执行的回调函数
|
|
|
+ },
|
|
|
+ cancel: function () {
|
|
|
+ // 用户取消分享后执行的回调函数
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ wx.error(function (res) {
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+function BindUpload(tagname, funcQueued, funcSuccess){
|
|
|
+ weui.uploader('#'+tagname, {
|
|
|
+ url: '/Api/APPSetInfo/WeuiUpload',
|
|
|
+ auto: false,
|
|
|
+ compress: {
|
|
|
+ width: 1600,
|
|
|
+ height: 1600,
|
|
|
+ quality: .8
|
|
|
+ },
|
|
|
+ onBeforeQueued: function(files) {
|
|
|
+ if(["image/jpg", "image/jpeg", "image/png", "image/gif"].indexOf(this.type) < 0){
|
|
|
+ weui.alert('请上传图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if(this.size > 5 * 1024 * 1024){
|
|
|
+ weui.alert('请上传不超过5M的图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (files.length > 2) {
|
|
|
+ weui.alert('最多只能上传2张图片,请重新选择');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ var uploadCount = document.querySelector('#'+tagname+'Files').children.length;
|
|
|
+ if (uploadCount + 1 > 2) {
|
|
|
+ weui.alert('最多只能上传2张图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onQueued: function () {
|
|
|
+ funcQueued(this);
|
|
|
+ },
|
|
|
+ onSuccess: function (ret) {
|
|
|
+ funcSuccess(ret);
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ document.querySelector('#'+tagname+'Files').addEventListener('click', function (e) {
|
|
|
+ var target = e.target;
|
|
|
+
|
|
|
+ while (!target.classList.contains('weui-uploader__file') && target) {
|
|
|
+ target = target.parentNode;
|
|
|
+ }
|
|
|
+ if (!target) return;
|
|
|
+
|
|
|
+ var url = target.getAttribute('style') || '';
|
|
|
+ var id = target.getAttribute('data-id');
|
|
|
+
|
|
|
+ if (url) {
|
|
|
+ url = url.match(/url\((.*?)\)/)[1].replace(/"/g, '');
|
|
|
+ }
|
|
|
+ var gallery = weui.gallery(url, {
|
|
|
+ onDelete: function () {
|
|
|
+ weui.confirm('确定删除该图片?', function () {
|
|
|
+ var index;
|
|
|
+ for (var i = 0, len = eval(tagname+"FileList").length; i < len; ++i) {
|
|
|
+ var file = eval(tagname+"FileList")[i];
|
|
|
+ if (file.id == id) {
|
|
|
+ index = i;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (index !== undefined) eval(tagname+"FileList").splice(index, 1);
|
|
|
+
|
|
|
+ target.remove();
|
|
|
+ gallery.hide();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+function BindUpload2(tagname, index, counts, funcQueued, funcSuccess, funcDelete){
|
|
|
+ weui.uploader('#'+tagname+index, {
|
|
|
+ url: '/Api/APPSetInfo/WeuiUpload',
|
|
|
+ auto: false,
|
|
|
+ compress: {
|
|
|
+ width: 1600,
|
|
|
+ height: 1600,
|
|
|
+ quality: .8
|
|
|
+ },
|
|
|
+ onBeforeQueued: function(files) {
|
|
|
+ if(["image/jpg", "image/jpeg", "image/png", "image/gif"].indexOf(this.type) < 0){
|
|
|
+ weui.alert('请上传图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if(this.size > 5 * 1024 * 1024){
|
|
|
+ weui.alert('请上传不超过5M的图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (files.length > counts) {
|
|
|
+ weui.alert('最多只能上传'+counts+'张图片,请重新选择');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ var uploadCount = document.querySelector('#'+tagname+index+'Files').children.length;
|
|
|
+ if (uploadCount + 1 > counts) {
|
|
|
+ weui.alert('最多只能上传'+counts+'张图片');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onQueued: function () {
|
|
|
+ funcQueued(this,index);
|
|
|
+ },
|
|
|
+ onSuccess: function (ret) {
|
|
|
+ funcSuccess(ret,index);
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ document.querySelector('#'+tagname+index+'Files').addEventListener('click', function (e) {
|
|
|
+ var target = e.target;
|
|
|
+
|
|
|
+ while (!target.classList.contains('weui-uploader__file') && target) {
|
|
|
+ target = target.parentNode;
|
|
|
+ }
|
|
|
+ if (!target) return;
|
|
|
+
|
|
|
+ var url = target.getAttribute('style') || '';
|
|
|
+ var id = target.getAttribute('data-id');
|
|
|
+
|
|
|
+ if (url) {
|
|
|
+ url = url.match(/url\((.*?)\)/)[1].replace(/"/g, '');
|
|
|
+ }
|
|
|
+ var gallery = weui.gallery(url, {
|
|
|
+ onDelete: function () {
|
|
|
+ weui.confirm('确定删除该图片?', function () {
|
|
|
+ var subindex;
|
|
|
+ for (var i = 0, len = eval(tagname+"FileList").length; i < len; ++i) {
|
|
|
+ var file = eval(tagname+"FileList")[i].obj;
|
|
|
+ if (file.id == id) {
|
|
|
+ subindex = i;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (subindex !== undefined) eval(tagname+"FileList").splice(subindex, 1);
|
|
|
+
|
|
|
+ gallery.hide();
|
|
|
+ if(id.indexOf('_')>-1){
|
|
|
+ funcDelete(target, index);
|
|
|
+ } else {
|
|
|
+ target.remove();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+}
|