app.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  1. let log = console.log; // 如果在项目的APP.vue文件中的onlaunch中设置 console.log = ()=> {} 则在此也不会有打印信息
  2. log = ()=>{}; // 打开注释则该插件不会打印任何信息
  3. let _app = {
  4. lineFeedTags: ['<br />', '<br/>', '\r\n', '\n\t', '\r', '\n'], //换行符识别列表
  5. tagetLineFeedTag: `❤`, //将lineFeedTags列表中的字符串替换为该字符, 代表换行符, 只要找一个特殊符号就行,必须是单字符单字符单字符!
  6. //交互控制
  7. log(t) {
  8. // log(t);
  9. }, // 打印控制,
  10. showLoading(msg, ifmask) {
  11. uni.showLoading({
  12. title: msg,
  13. mask: ifmask || false
  14. })
  15. },
  16. hideLoading() {
  17. uni.hideLoading();
  18. },
  19. showToast(msg, icon) {
  20. uni.showToast({
  21. title: msg,
  22. icon: icon || 'none'
  23. })
  24. },
  25. getPosterUrl(objs) { // 后端获取背景图的url路径方法
  26. let {
  27. backgroundImage,
  28. type,
  29. formData
  30. } = objs;
  31. return new Promise((rs, rj) => {
  32. let image;
  33. if (backgroundImage) {
  34. image = backgroundImage;
  35. } else {
  36. switch (type) { //根据type获取背景图, 一般要改成request获取
  37. case 1:
  38. image = '';
  39. break;
  40. default:
  41. image = '';
  42. break;
  43. }
  44. }
  45. if (image) {
  46. rs(image); // resolve图片的路径
  47. } else {
  48. rj('背景图片路径不存在');
  49. }
  50. })
  51. },
  52. //下面一般不用动他
  53. shareTypeListSheetArray: {
  54. array: [0, 1, 2, 3, 4, 5]
  55. }, // 分享类型 0-图文链接 1-纯文字 2-纯图片 3-音乐 4-视频 5-小程序
  56. isArray(arg) {
  57. return Object.prototype.toString.call(arg) === '[object Array]';
  58. },
  59. isObject(arg) {
  60. return Object.prototype.toString.call(arg) === '[object Object]';
  61. },
  62. isPromise(obj) {
  63. return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
  64. },
  65. isNull(arg) {
  66. return arg === null;
  67. },
  68. isUndefined(arg) {
  69. return arg === undefined;
  70. },
  71. isUndef(arg) {
  72. return arg === undefined;
  73. },
  74. isNotNull_string(arg) {
  75. return arg !== null && arg !== undefined && arg !== '';
  76. },
  77. isFn(fn) {
  78. return fn && typeof fn === 'function';
  79. },
  80. getStorage(key, scb, fcb) {
  81. uni.getStorage({
  82. key,
  83. success: function(res) {
  84. if (res.data && res.data != "") {
  85. if (scb) scb(res.data);
  86. } else {
  87. if (fcb) fcb();
  88. }
  89. },
  90. fail: function() {
  91. if (fcb) fcb();
  92. }
  93. })
  94. },
  95. setStorage(key, data) {
  96. log('设置缓存')
  97. log('key:' + key)
  98. log('data:' + JSON.stringify(data));
  99. uni.setStorage({
  100. key,
  101. data
  102. })
  103. },
  104. setStorageSync(key, data) {
  105. uni.setStorageSync(key, data);
  106. },
  107. getStorageSync(key) {
  108. return uni.getStorageSync(key);
  109. },
  110. clearStorageSync() {
  111. uni.clearStorageSync();
  112. },
  113. removeStorageSync(key) {
  114. uni.removeStorageSync(key);
  115. },
  116. getImageInfo(url, cb, fcb) {
  117. url = checkMPUrl(url);
  118. uni.getImageInfo({
  119. src: url,
  120. success(res) {
  121. if (cb && typeof(cb) == 'function') cb(res);
  122. },
  123. fail(err) {
  124. if (fcb && typeof(fcb) == 'function') fcb(err);
  125. }
  126. })
  127. },
  128. downloadFile(url, cb) {
  129. url = checkMPUrl(url);
  130. uni.downloadFile({
  131. url,
  132. success(res) {
  133. if (cb && typeof(cb) == 'function') cb(res);
  134. }
  135. })
  136. },
  137. downloadFile_PromiseFc(url) {
  138. return new Promise((rs, rj) => {
  139. if (url.substring(0, 4) !== 'http') {
  140. rs(url);
  141. } else {
  142. url = checkMPUrl(url);
  143. log('url:' + url);
  144. uni.downloadFile({
  145. url,
  146. success(res) {
  147. if (res && res.tempFilePath)
  148. rs(res.tempFilePath);
  149. else
  150. rj('not find tempFilePath');
  151. },
  152. fail(err) {
  153. rj(err);
  154. }
  155. })
  156. }
  157. });
  158. },
  159. saveFile(url) {
  160. uni.saveFile({
  161. tempFilePath: url,
  162. success(res) {
  163. log('保存成功:' + JSON.stringify(res))
  164. }
  165. })
  166. },
  167. downLoadAndSaveFile_PromiseFc(url) {
  168. return new Promise((rs, rj) => {
  169. log('准备下载并保存图片:' + url);
  170. if (url.substring(0, 4) === 'http') {
  171. url = checkMPUrl(url);
  172. uni.downloadFile({
  173. url,
  174. success(d_res) {
  175. log('下载背景图成功:' + JSON.stringify(d_res));
  176. if (d_res && d_res.tempFilePath) {
  177. // #ifdef H5
  178. rs(d_res.tempFilePath);
  179. // #endif
  180. // #ifndef H5
  181. uni.saveFile({
  182. tempFilePath: d_res.tempFilePath,
  183. success(s_res) {
  184. log('保存背景图成功:' + JSON.stringify(s_res));
  185. if (s_res && s_res.savedFilePath)
  186. rs(s_res.savedFilePath);
  187. else
  188. rs(d_res.tempFilePath);
  189. },
  190. fail(err) {
  191. rs(d_res.tempFilePath);
  192. }
  193. })
  194. // #endif
  195. } else {
  196. rj('not find tempFilePath');
  197. }
  198. },
  199. fail(err) {
  200. rj(err);
  201. }
  202. })
  203. } else {
  204. rs(url);
  205. }
  206. })
  207. },
  208. checkFile_PromiseFc(url) {
  209. return new Promise((rs, rj) => {
  210. uni.getSavedFileList({
  211. success(res) {
  212. let d = res.fileList;
  213. let index = d.findIndex(item => {
  214. return item.filePath === url;
  215. })
  216. rs(index);
  217. },
  218. fail(err) {
  219. rj(err);
  220. }
  221. })
  222. });
  223. },
  224. removeSavedFile(path) {
  225. uni.getSavedFileList({
  226. success(res) {
  227. let d = res.fileList;
  228. let index = d.findIndex(item => {
  229. return item.filePath === path;
  230. });
  231. if (index >= 0)
  232. uni.removeSavedFile({
  233. filePath: path
  234. })
  235. }
  236. })
  237. },
  238. fileNameInPath(path) {
  239. let s = path.split("/");
  240. return s[s.length - 1];
  241. },
  242. getImageInfo_PromiseFc(imgPath) {
  243. return new Promise((rs, rj) => {
  244. log('准备获取图片信息:' + imgPath);
  245. imgPath = checkMPUrl(imgPath);
  246. uni.getImageInfo({
  247. src: imgPath,
  248. success: res => {
  249. log('获取图片信息成功:' + JSON.stringify(res));
  250. rs(res);
  251. },
  252. fail: err => {
  253. log('获取图片信息失败:' + JSON.stringify(err));
  254. rj(err)
  255. }
  256. })
  257. });
  258. },
  259. previewImage(urls) {
  260. if (typeof(urls) == 'string')
  261. urls = [urls];
  262. uni.previewImage({
  263. urls,
  264. })
  265. },
  266. actionSheet(obj, cb) {
  267. let sheetArray = [];
  268. for (let i = 0; i < obj.array.length; i++) {
  269. switch (obj.array[i]) {
  270. case 'sinaweibo':
  271. sheetArray[i] = '新浪微博';
  272. break;
  273. case 'qq':
  274. sheetArray[i] = 'QQ';
  275. break;
  276. case 'weixin':
  277. sheetArray[i] = '微信';
  278. break;
  279. case 'WXSceneSession':
  280. sheetArray[i] = '微信好友';
  281. break;
  282. case 'WXSenceTimeline':
  283. sheetArray[i] = '微信朋友圈';
  284. break;
  285. case 'WXSceneFavorite':
  286. sheetArray[i] = '微信收藏';
  287. break;
  288. case 0:
  289. sheetArray[i] = '图文链接';
  290. break;
  291. case 1:
  292. sheetArray[i] = '纯文字';
  293. break;
  294. case 2:
  295. sheetArray[i] = '纯图片';
  296. break;
  297. case 3:
  298. sheetArray[i] = '音乐';
  299. break;
  300. case 4:
  301. sheetArray[i] = '视频';
  302. break;
  303. case 5:
  304. sheetArray[i] = '小程序';
  305. break;
  306. default:
  307. break;
  308. }
  309. }
  310. this.showActionSheet(sheetArray, cb);
  311. },
  312. showActionSheet(sheetArray, cb) {
  313. uni.showActionSheet({
  314. itemList: sheetArray,
  315. success: (e) => {
  316. if (cb && typeof(cb) == 'function') cb(e.tapIndex);
  317. }
  318. })
  319. },
  320. getProvider(type, cb, sheet) {
  321. let _this = this;
  322. uni.getProvider({
  323. service: type,
  324. success: function(res) {
  325. if (sheet) {
  326. let obj = {};
  327. obj.array = res.provider;
  328. _this.actionSheet(obj, function(index) {
  329. if (cb && typeof(cb) == "function") cb(res.provider[index]);
  330. });
  331. } else {
  332. if (type == 'payment') {
  333. let providers = res.provider;
  334. let payTypeArray = [];
  335. for (let i = 0; i < providers.length; i++) {
  336. if (providers[i] == 'wxpay') {
  337. payTypeArray[i] = {
  338. name: '微信支付',
  339. value: providers[i],
  340. img: '/static/image/wei.png'
  341. };
  342. } else if (providers[i] == 'alipay') {
  343. payTypeArray[i] = {
  344. name: "支付宝支付",
  345. value: providers[i],
  346. img: '/static/image/ali.png'
  347. };
  348. }
  349. }
  350. if (cb && typeof(cb) == "function") cb(payTypeArray);
  351. } else {
  352. if (cb && typeof(cb) == "function") cb(res);
  353. }
  354. }
  355. },
  356. })
  357. },
  358. // #ifdef APP-PLUS
  359. getShare(providerName, WXScene, shareType, title, summary, href, imageUrl, miniProgramObj, mediaUrl, scb,
  360. fcb) { //miniProgram: {path: '', type: 0, webUrl: ''}
  361. let _this = this;
  362. if (typeof(shareType) == 'number' && !isNaN(shareType) && shareType >= 0) {
  363. _this.readyShare(providerName, WXScene, shareType, title, summary, href, imageUrl, miniProgramObj,
  364. mediaUrl, scb,
  365. fcb);
  366. } else {
  367. _this.actionSheet(_this.shareTypeListSheetArray, function(index) {
  368. _this.readyShare(providerName, WXScene, _this.shareTypeListSheetArray.array[index], title,
  369. summary, href,
  370. imageUrl, miniProgramObj, mediaUrl, scb, fcb);
  371. });
  372. }
  373. },
  374. readyShare(providerName, WXScene, shareType, title, summary, href, imageUrl, miniProgramObj, mediaUrl, scb,
  375. fcb) {
  376. let _this = this;
  377. let shareObjData = {};
  378. switch (shareType) {
  379. case 0:
  380. shareObjData = {
  381. href: href,
  382. summary: summary,
  383. imageUrl: imageUrl
  384. };
  385. break;
  386. case 1:
  387. shareObjData = {
  388. summary: summary,
  389. href: href
  390. };
  391. break;
  392. case 2:
  393. shareObjData = {
  394. imageUrl: imageUrl
  395. };
  396. break;
  397. case 3:
  398. if (mediaUrl) {
  399. _this.showToast('暂不支持此分享类型');
  400. return;
  401. };
  402. shareObjData = {
  403. mediaUrl: mediaUrl
  404. };
  405. break;
  406. case 4:
  407. if (mediaUrl) {
  408. _this.showToast('暂不支持此分享类型');
  409. return;
  410. };
  411. shareObjData = {
  412. mediaUrl: mediaUrl
  413. };
  414. break;
  415. case 5:
  416. shareObjData = {
  417. miniProgram: {
  418. ...miniProgramObj,
  419. id: miniProgramId,
  420. type: miniProgramShareType
  421. },
  422. imageUrl: imageUrl
  423. };
  424. providerName = 'weixin';
  425. break;
  426. default:
  427. _this.showToast('分享参数-shareType错误');
  428. return;
  429. break;
  430. }
  431. shareObjData.title = title;
  432. _this.share(providerName, WXScene, shareType, shareObjData, function(res) {
  433. if (scb && typeof(scb) == 'function') scb(res);
  434. }, function(err) {
  435. if (fcb && typeof(fcb) == 'function') fcb(err);
  436. });
  437. },
  438. share(providerName, WXScene, shareType, data, scb, fcb) {
  439. let _this = this;
  440. let shareObj = {
  441. provider: '',
  442. success: Function,
  443. fail: Function
  444. };
  445. if (providerName && providerName != '') {
  446. shareObj.provider = providerName;
  447. if (providerName == 'weixin') {
  448. _this.readyShareWXScene(WXScene, function(Scene) {
  449. shareObj.scene = Scene;
  450. _this.doingShare(shareObj, shareType, data, scb, fcb);
  451. });
  452. } else {
  453. _this.doingShare(shareObj, shareType, data, scb, fcb);
  454. }
  455. } else {
  456. _this.getProvider('share', function(name) {
  457. shareObj.provider = name;
  458. if (name == 'weixin') {
  459. _this.readyShareWXScene(WXScene, function(Scene) {
  460. shareObj.scene = Scene;
  461. _this.doingShare(shareObj, shareType, data, scb, fcb);
  462. });
  463. } else {
  464. _this.doingShare(shareObj, shareType, data, scb, fcb);
  465. }
  466. }, true);
  467. }
  468. },
  469. readyShareWXScene(WXScene, cb) {
  470. let _this = this;
  471. let WXScenetypelist = {
  472. array: ['WXSceneSession', 'WXSenceTimeline', 'WXSceneFavorite']
  473. };
  474. if (WXScene && WXScene != "") {
  475. if (cb && typeof(cb) == 'function') cb(WXScene);
  476. } else {
  477. _this.actionSheet(WXScenetypelist, function(index) {
  478. if (cb && typeof(cb) == 'function') cb(WXScenetypelist.array[index]);
  479. });
  480. }
  481. },
  482. doingShare(shareObj, shareType, data, scb, fcb) {
  483. shareObj.type = shareType;
  484. if (data && data.title) shareObj.title = data.title;
  485. switch (shareType) {
  486. case 0: //图文链接
  487. shareObj.href = data.href;
  488. shareObj.summary = data.summary;
  489. shareObj.imageUrl = data.imageUrl;
  490. break;
  491. case 1: //纯文字
  492. shareObj.summary = data.summary;
  493. shareObj.href = data.href;
  494. break;
  495. case 2: //纯图片
  496. shareObj.imageUrl = data.imageUrl;
  497. break;
  498. case 3: //音乐
  499. if (!data.mediaUrl) {
  500. _this.showToast('暂不支持此分享类型');
  501. return;
  502. };
  503. shareObj.mediaUrl = data.mediaUrl;
  504. break;
  505. case 4: //视频
  506. if (!data.mediaUrl) {
  507. _this.showToast('暂不支持此分享类型');
  508. return;
  509. };
  510. shareObj.mediaUrl = data.mediaUrl;
  511. break;
  512. case 5: //小程序
  513. if (miniProgramId == '') {
  514. uni.showToast('未设置小程序ID, 请使用其他方式分享');
  515. return;
  516. }
  517. let mp = {
  518. id: miniProgramId
  519. };
  520. mp.path = data.miniProgram.path;
  521. mp.type = data.miniProgram.type;
  522. if (data.miniProgram.webUrl) mp.webUrl = data.miniProgram.webUrl;
  523. shareObj.miniProgram = mp;
  524. shareObj.imageUrl = data.imageUrl;
  525. break;
  526. default:
  527. appJS.showToast('分享参数-shareType错误');
  528. break;
  529. }
  530. shareObj.success = function(res) {
  531. if (scb && typeof(scb) == 'function') scb(res);
  532. }
  533. shareObj.fail = function(err) {
  534. if (fcb && typeof(fcb) == 'function') fcb(err);
  535. }
  536. log(JSON.stringify(shareObj));
  537. uni.share(shareObj);
  538. },
  539. // #endif
  540. }
  541. function checkMPUrl(url) {
  542. // #ifdef MP
  543. if (
  544. url.substring(0, 4) === 'http' &&
  545. url.substring(0, 5) !== 'https' &&
  546. url.substring(0, 12) !== 'http://store' &&
  547. url.substring(0, 10) !== 'http://tmp' &&
  548. url.substring(0, 10) !== 'http://usr'
  549. ) {
  550. url = 'https' + url.substring(4, url.length);
  551. }
  552. // #endif
  553. return url;
  554. }
  555. module.exports = _app;