common.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. import $store from '../store'
  2. import request from '@/utils/request.js'
  3. const isUserId = function() {
  4. var userId=uni.getStorageSync("wxOpenData").loginInfo.uid;
  5. //console.log("userId---"+userId)
  6. if(!userId){
  7. uni.navigateTo({
  8. url:'../login/login'
  9. })
  10. }
  11. }
  12. const automaticlogin = function() {
  13. //console.log($store.state.userInfo)
  14. var that=this;
  15. const extConfig = uni.getExtConfigSync();
  16. //console.log(extConfig)
  17. return new Promise((resolve, reject) => {
  18. if($store.state.userInfo){
  19. resolve()
  20. }else{
  21. uni.login({
  22. provider: 'weixin',
  23. success: function (loginRes) {
  24. //console.log(loginRes);
  25. request.http('miniApp2/sys/getWxOpenID', {
  26. code:loginRes.code,
  27. unionId:extConfig.unionId
  28. },'GET').then(res => {
  29. $store.commit('mutationswxOpenData', res.data);
  30. var themeColor= res.data.themeColor
  31. uni.setStorageSync('themeColor',themeColor);
  32. if(res.data.loginInfo){
  33. $store.commit('mutationsuserInfo', res.data.loginInfo.openUser)
  34. }
  35. resolve()
  36. })
  37. }
  38. });
  39. }
  40. })
  41. //return Promise.resolve()
  42. }
  43. /* const uid =function() {
  44. var userId=uni.getStorageSync("logodata").uid;
  45. return
  46. } */
  47. // 防止处理多次点击
  48. function noMultipleClicks(methods, info) {
  49. // methods是点击后需要执行的函数, info是函数需要传的参数
  50. let that = this;
  51. if (that.noClick) {
  52. // 第一次点击
  53. that.noClick= false;
  54. if((info && info !== '') || info ==0) {
  55. // info是执行函数需要传的参数
  56. methods(info);
  57. } else {
  58. methods();
  59. }
  60. setTimeout(()=> {
  61. that.noClick= true;
  62. }, 3000)
  63. } else {
  64. // 这里是重复点击的判断
  65. }
  66. }
  67. function getExtStoreId(type){
  68. try{
  69. var extConfig = uni.getExtConfigSync ? uni.getExtConfigSync() : {shopId:'默认的门店id'};
  70. /* extConfig={
  71. "shopId": "935D2FA9-1DA3-4C8B-944C-DB40D5C6F132",
  72. "url":"https://apidms.66km.com",
  73. "unionId":"1933D569-A2A4-4090-87C3-8E84B33FF15A",
  74. "appId":"wx09ff516cd194a04d"
  75. } */
  76. console.log(extConfig,'extJson对象');
  77. //return extConfig[type];
  78. return extConfig
  79. }catch(err){
  80. console.log(err,'getExtStoreId__error')
  81. }
  82. }
  83. function formateTimeStamp (timeStamp) {
  84. var hour;
  85. var min;
  86. var seconds;
  87. let today = new Date() // 当前时间
  88. if (Number(new Date(timeStamp).getTime()) < Number(new Date().getTime())) {
  89. const zTime = {
  90. hour: 0,
  91. min: 0,
  92. seconds: 0
  93. }
  94. return zTime
  95. return false
  96. }
  97. let startTime = new Date(timeStamp.replace(/-/g, '/')) // 结束时间
  98. let shenyu = startTime.getTime() - today.getTime() // 倒计时毫秒数
  99. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  100. //console.log(shengyuD+'shengyuD')
  101. //hour = parseInt(shenyu / (60 * 60)) // 计算整数小时数
  102. hour = parseInt(shenyu / (60 * 60 * 1000))
  103. var afterHour = shenyu - hour * 60 * 60 * 1000 // 取得算出小时数后剩余的秒数
  104. min = parseInt(afterHour / (60 * 1000)) // 计算整数分
  105. //seconds = parseInt(shenyu - hour * 60 * 60 - min * 60) // 取得算出分后剩余的秒数
  106. seconds= parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - hour * 60 * 60 * 1000 - min * 60 * 1000) / 1000)
  107. if (hour < 10) {
  108. hour = '0' + hour
  109. }
  110. //console.log(hour)
  111. if (min < 10) {
  112. min = '0' + min;
  113. }
  114. //console.log(min)
  115. if (seconds < 10) {
  116. seconds = '0' + seconds;
  117. }
  118. //console.log(seconds)
  119. const restTime = {
  120. hour: hour,
  121. min: min,
  122. seconds: seconds
  123. }
  124. //console.log(restTime)
  125. /// setTimeout(formateTimeStamp(timeStamp), 1000)
  126. return restTime
  127. }
  128. function countdown (timeStamp) {
  129. var hour;
  130. var min;
  131. var seconds;
  132. let today = new Date() // 当前时间
  133. let startTime = new Date(timeStamp.replace(/-/g, '/')) // 结束时间
  134. let shenyu = startTime.getTime() - today.getTime() // 倒计时毫秒数
  135. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  136. //console.log(shengyuD+'shengyuD')
  137. //hour = parseInt(shenyu / (60 * 60)) // 计算整数小时数
  138. hour = parseInt(shenyu / (60 * 60 * 1000))
  139. var afterHour = shenyu - hour * 60 * 60 * 1000 // 取得算出小时数后剩余的秒数
  140. min = parseInt(afterHour / (60 * 1000)) // 计算整数分
  141. //seconds = parseInt(shenyu - hour * 60 * 60 - min * 60) // 取得算出分后剩余的秒数
  142. seconds= parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - hour * 60 * 60 * 1000 - min * 60 * 1000) / 1000)
  143. if (hour < 10) {
  144. hour = '0' + hour
  145. }
  146. console.log(hour)
  147. if (min < 10) {
  148. min = '0' + min;
  149. }
  150. //console.log(min)
  151. if (seconds < 10) {
  152. seconds = '0' + seconds;
  153. }
  154. const restTime = {
  155. hour: hour,
  156. min: min,
  157. seconds: seconds
  158. }
  159. var txt = hour+':'+min+':'+seconds;
  160. console.log(txt)
  161. return txt
  162. }
  163. export default {
  164. commonData:{
  165. companyType:1,
  166. },
  167. automaticlogin,
  168. isUserId,
  169. getExtStoreId,
  170. noMultipleClicks, // 禁止多次点击
  171. formateTimeStamp,
  172. countdown
  173. }