common.js 5.3 KB

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