copy from AppInside/app20191220.js
copy to AppInside/orderDetail/js/app20200227.js
File was copied from AppInside/app20191220.js |
| | |
| | | }, function() { |
| | | yesApp.postApi('savePicture', url); |
| | | }); |
| | | }, |
| | | //分享文本 |
| | | shareText: function(type, text) { |
| | | var params = { |
| | | type: type, |
| | | text: text |
| | | }; |
| | | yesApp.api(function() { |
| | | yestv.shareText(type, text); |
| | | }, function() { |
| | | params.type = type; |
| | | yesApp.postApi('shareText', params); |
| | | }); |
| | | }, |
| | | //清除粘贴板 |
| | | clearClipboard: function() { |
| | | yesApp.api(function() { |
| | | yestv.clearClipboard(); |
| | | }, function() { |
| | | yesApp.postApi('clearClipboard', null); |
| | | }); |
| | | } |
| | | |
| | | |