admin
2020-04-01 cd5052611c032c75e866e959247c9eb4715b3bed
AppInside/orderDetail/js/app20200227.js
copy from AppInside/app20191220.js copy to AppInside/orderDetail/js/app20200227.js
File was copied from AppInside/app20191220.js
@@ -319,6 +319,27 @@
      }, 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);
      });
   }