common-nv.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /**
  2. * 通用函数
  3. */
  4. var config = require('./config.js');
  5. var fun_aes = require('./aes.js');
  6. const app = getApp();
  7. /**
  8. * 格式化秒
  9. * @param int value 总秒数
  10. * @return string result 格式化后的字符串
  11. */
  12. function formatSeconds(that, value, tail = true) {
  13. var that = that
  14. var theTime = parseInt(value); // 需要转换的时间秒
  15. var theTime1 = 0; // 分
  16. var theTime2 = 0; // 小时
  17. var theTime3 = 0; // 天
  18. if (theTime === 0) {
  19. return parseInt(theTime) + '秒';
  20. return parseInt(theTime) + that.i18n['秒'];
  21. }
  22. if (theTime > 60) {
  23. theTime1 = parseInt(theTime / 60);
  24. theTime = parseInt(theTime % 60);
  25. if (theTime1 > 60) {
  26. theTime2 = parseInt(theTime1 / 60);
  27. theTime1 = parseInt(theTime1 % 60);
  28. if (theTime2 > 24) {
  29. //大于24小时
  30. theTime3 = parseInt(theTime2 / 24);
  31. theTime2 = parseInt(theTime2 % 24);
  32. }
  33. }
  34. }
  35. var result = '';
  36. if (theTime > 0) {
  37. // result = '' + parseInt(theTime) + '秒';
  38. result = '' + parseInt(theTime) + that.i18n['秒'];
  39. }
  40. if (theTime1 > 0) {
  41. // result = '' + parseInt(theTime1) + '分' + (tail ? result : '');
  42. result = '' + parseInt(theTime1) + that.i18n['分'] + (tail ? result : '');
  43. }
  44. if (theTime2 > 0) {
  45. // result = '' + parseInt(theTime2) + '小时' + (tail ? result : '');
  46. result = '' + parseInt(theTime2) + that.i18n['小时'] + (tail ? result : '');
  47. }
  48. if (theTime3 > 0) {
  49. // result = '' + parseInt(theTime3) + '天' + (tail ? result : '');
  50. result = '' + parseInt(theTime3) + that.i18n['天'] + (tail ? result : '');
  51. }
  52. return result;
  53. }
  54. function loading(that) {
  55. uni.showLoading({
  56. title: that.i18n['正在加载数据...'],
  57. mask: true
  58. });
  59. }
  60. /**
  61. * 成功提示
  62. */
  63. function successToast(that,title, duration) {
  64. uni.showToast({
  65. title: title || that.i18n['成功'],
  66. icon: 'success',
  67. duration: duration || 1500,
  68. mask: true
  69. });
  70. }
  71. /**
  72. * 简单提示
  73. */
  74. function simpleToast(that,title, duration) {
  75. uni.showToast({
  76. title: title || that.i18n['成功'],
  77. icon: 'none',
  78. duration: duration || 1500
  79. });
  80. }
  81. /**
  82. * 选择并上传图片
  83. */
  84. function uploadImg(that,callback) {
  85. uni.chooseImage({
  86. count: 1,
  87. success: function (res) {
  88. var tempFilePaths = res.tempFilePaths;
  89. uni.uploadFile({
  90. url: config.API_UP_IMG_URL,
  91. filePath: tempFilePaths[0],
  92. name: 'imgFile',
  93. success: function (res1) {
  94. var rtDataObj = JSON.parse(res1.data);
  95. if (rtDataObj.code == 200) {
  96. callback(rtDataObj.data[0].url);
  97. } else {
  98. uni.showModal({
  99. title: that.i18n['错误'],
  100. content: that.i18n['上传失败']+'[' + rtDataObj.message + ']'
  101. });
  102. }
  103. }
  104. });
  105. }
  106. });
  107. }
  108. /**
  109. * 选择并上传图片 七牛存储
  110. */
  111. function upLoadImgQiNiu(that,callback) {
  112. const http = require('./http.js');
  113. uni.chooseImage({
  114. count: 1,
  115. success: function (res) {
  116. const tempFilePaths = res.tempFilePaths;
  117. loading();
  118. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, function (response) {
  119. if (response.data.code === 200) {
  120. const token = response.data.data.token;
  121. uni.uploadFile({
  122. url: config.QINIU_UPLOAD_SITE,
  123. filePath: tempFilePaths[0],
  124. name: 'file',
  125. formData: {
  126. token: token
  127. },
  128. success: function (res1) {
  129. uni.hideLoading();
  130. var rtDataObj = JSON.parse(res1.data);
  131. const key = rtDataObj.key;
  132. callback(config.QINIU_SITE + key);
  133. },
  134. fail: function (res) {
  135. simpleToast(that.i18n['上传失败']);
  136. uni.hideLoading();
  137. }
  138. });
  139. } else {
  140. simpleToast(response.data.msg);
  141. uni.hideLoading();
  142. }
  143. });
  144. }
  145. });
  146. }
  147. module.exports = {
  148. formatSeconds: formatSeconds,
  149. loading: loading,
  150. successToast: successToast,
  151. simpleToast: simpleToast,
  152. uploadImg: uploadImg,
  153. upLoadImgQiNiu: upLoadImgQiNiu
  154. };