common.js 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. import store from '@/store/index.js'
  2. import wx from 'weixin-js-sdk'
  3. import { getConfigInfo, wxConfig } from '@/common/utils/util'
  4. // 不含icon提示框
  5. export const toast = str => {
  6. return new Promise((resolve, reject) => {
  7. if (str.length < 20) {
  8. uni.showToast({
  9. title: str,
  10. icon: 'none',
  11. duration: 1500,
  12. success: () => {
  13. setTimeout(() => {
  14. resolve
  15. }, 1500)
  16. }
  17. })
  18. } else {
  19. uni.showModal({
  20. title: '提示',
  21. content: String(str),
  22. showCancel: false,
  23. confirmText: '我知道了',
  24. success(res) {
  25. if (res.confirm) {
  26. resolve(res)
  27. } else {
  28. reject()
  29. }
  30. }
  31. })
  32. }
  33. })
  34. }
  35. // 成功提示框
  36. export const successToast = str => {
  37. return new Promise((resolve, reject) => {
  38. uni.showToast({
  39. title: str || '请求成功',
  40. icon: 'success',
  41. duration: 1500,
  42. success: () => {
  43. setTimeout(() => {
  44. resolve()
  45. }, 1500)
  46. }
  47. })
  48. })
  49. }
  50. // loading
  51. export const showLoading = () => {
  52. return new Promise((resolve, reject) => {
  53. uni.showLoading({
  54. success: () => {
  55. resolve()
  56. }
  57. })
  58. })
  59. }
  60. // 提示loading
  61. export const tipLoading = str => {
  62. return new Promise((resolve, reject) => {
  63. uni.showLoading({
  64. title: str,
  65. success: () => {
  66. resolve()
  67. }
  68. })
  69. })
  70. }
  71. // 隐藏loading
  72. export const hideLoading = () => {
  73. return new Promise((resolve, reject) => {
  74. uni.hideLoading({
  75. success: () => {
  76. resolve()
  77. }
  78. })
  79. })
  80. }
  81. // 模态弹窗
  82. export const modal = (options = {}) => {
  83. if (!options) return
  84. const { title, content, showCancel, cancelText, cancelColor, confirmText, confirmColor } = Object.assign(
  85. {},
  86. options.content
  87. ? options
  88. : {
  89. content: options
  90. }
  91. )
  92. return new Promise((resolve, reject) => {
  93. uni.showModal({
  94. title: title || '提示',
  95. content: String(content),
  96. showCancel: typeof showCancel == 'boolean' ? showCancel : true,
  97. cancelText: cancelText || '取消',
  98. cancelColor: cancelColor || '#323233',
  99. confirmText: confirmText || '确定',
  100. confirmColor: confirmColor || '#3D8FFD',
  101. complete(res) {
  102. if (res.confirm) {
  103. resolve(res)
  104. } else {
  105. reject()
  106. }
  107. }
  108. })
  109. })
  110. }
  111. // 弹窗提示
  112. export const tips = text => {
  113. modal({
  114. content: text,
  115. showCancel: false
  116. })
  117. .then(() => {})
  118. .catch(() => {})
  119. }
  120. /**
  121. * 跳转页面 navigateTo
  122. * 保留当前页面,跳转到应用内的某个页面
  123. * @param {String} url 需要跳转的页面
  124. * @param {Boolean} isAuth 是否需要鉴权
  125. * @returns
  126. */
  127. export const navPage = (url, isAuth = 0) => {
  128. if ((isAuth && store.state.token) || !isAuth) {
  129. this.$navToPage({
  130. url,
  131. fail: err => {
  132. console.log('页面跳转失败', url, err)
  133. }
  134. })
  135. } else {
  136. this.$navToPage({
  137. url: '/pages/login/index'
  138. })
  139. }
  140. }
  141. /**
  142. * 跳转页面 redirectTo
  143. * 关闭当前页面,跳转到应用内的某个页面
  144. * @param {String} url 需要跳转的页面
  145. * @param {Boolean} isAuth 是否需要鉴权
  146. * @returns
  147. */
  148. export const redPage = (url, isAuth = 0) => {
  149. if ((isAuth && store.state.token) || !isAuth) {
  150. uni.redirectTo({
  151. url,
  152. fail: err => {
  153. console.log('页面跳转失败', url, err)
  154. }
  155. })
  156. } else {
  157. this.$navToPage({
  158. url: '/pages/login/index'
  159. })
  160. }
  161. }
  162. /**
  163. * 返回页面
  164. * @param {Number} num 返回的页面数
  165. * @param {Number} time 延时返回
  166. * @returns
  167. */
  168. export const backPage = (num = 1, time = 0) => {
  169. if (!num) return false
  170. setTimeout(() => {
  171. uni.navigateBack({
  172. delta: num
  173. })
  174. }, time)
  175. }
  176. /**
  177. * 拨打电话
  178. * @param {String} phone 用户隐私号
  179. * @param {String} orderId 服务单id,如果需要请求记录接口
  180. */
  181. export const callPhone = phone => {
  182. if (!phone)
  183. return modal({
  184. content: '手机号码不存在',
  185. showCancel: false
  186. })
  187. .then(() => {})
  188. .catch(() => {})
  189. uni.makePhoneCall({
  190. phoneNumber: phone,
  191. success: () => {
  192. // logCallPhone(orderId);
  193. }
  194. })
  195. }
  196. /**
  197. * 复制
  198. * @param {String} val 复制内容
  199. */
  200. export const copy = val => {
  201. uni.setClipboardData({
  202. data: val,
  203. success: () => {
  204. successToast('复制成功')
  205. }
  206. })
  207. }
  208. /**
  209. * 打开导航
  210. */
  211. export const openLocation = (options = {}) => {
  212. if (!options) return
  213. const { lat, lng, name, address } = options
  214. wxConfig(undefined, undefined, () => {
  215. wx.openLocation({
  216. latitude: Number(lat),
  217. longitude: Number(lng),
  218. name,
  219. address,
  220. success: () => {
  221. console.log('success')
  222. }
  223. })
  224. })
  225. }
  226. // 获取当前定位
  227. export const getLocation = async function () {
  228. return new Promise((resolve, reject) => {
  229. wxConfig(undefined, undefined, () => {
  230. wx.getLocation({
  231. type: 'gcj02',
  232. isHighAccuracy: true,
  233. geocode: true,
  234. success: res => {
  235. resolve(res)
  236. },
  237. fail: err => {
  238. reject('获取当前定位失败')
  239. modal({
  240. title: '提示',
  241. content: '获取当前定位失败',
  242. showCancel: false
  243. }).then(() => {})
  244. }
  245. })
  246. })
  247. })
  248. }
  249. // 获取地址
  250. export const getAddress = async function () {
  251. const location = await getLocation()
  252. if (!location) {
  253. return tips('获取定位失败,请检查是否开启手机位置信息权限')
  254. }
  255. return new Promise((resolve, reject) => {
  256. uni.request({
  257. url: 'https://restapi.amap.com/v3/geocode/regeo',
  258. method: 'GET',
  259. data: {
  260. location: location.longitude + ',' + location.latitude,
  261. key: '428a7111e02ea8367a3b34804eaa025b'
  262. },
  263. success: res => {
  264. resolve({
  265. longitude: location.longitude,
  266. latitude: location.latitude,
  267. address: res.data.regeocode.formatted_address,
  268. province: res.data.regeocode.addressComponent.province,
  269. city: res.data.regeocode.addressComponent.city,
  270. area: res.data.regeocode.addressComponent.district,
  271. street: res.data.regeocode.addressComponent.township
  272. })
  273. },
  274. fail: function (err) {
  275. console.log('地址解析失败' + err)
  276. }
  277. })
  278. })
  279. }
  280. // 判断微信环境
  281. export function isWeixin() {
  282. if (navigator && navigator.userAgent) {
  283. var ua = navigator.userAgent.toLowerCase()
  284. if (ua.indexOf('micromessenger') != -1) {
  285. return true
  286. } else {
  287. return false
  288. }
  289. } else {
  290. return false
  291. }
  292. }
  293. // 解析地址栏参数
  294. export function getQueryVariable(variable) {
  295. // 从?开始获取后面的所有数据
  296. var query = window.location.search.substring(1)
  297. // 从字符串&开始分隔成数组split
  298. var vars = query.split('&')
  299. // 遍历该数组
  300. for (var i = 0; i < vars.length; i++) {
  301. // 从等号部分分割成字符
  302. var pair = vars[i].split('=')
  303. // 如果第一个元素等于 传进来的参的话 就输出第二个元素
  304. if (pair[0] == variable) {
  305. return pair[1]
  306. }
  307. }
  308. return undefined
  309. }
  310. export const getZero = num => {
  311. // 个位数前补0
  312. if (parseInt(num) < 10) {
  313. num = '0' + num
  314. }
  315. return num
  316. }
  317. export const getNowDate = () => {
  318. const date = new Date()
  319. let Y = getZero(date.getFullYear())
  320. let M = getZero(date.getMonth() + 1)
  321. let D = getZero(date.getDate())
  322. return `${Y}-${M}-${D}`
  323. }
  324. export const getNowDatetime = () => {
  325. const date = new Date()
  326. let Y = getZero(date.getFullYear())
  327. let M = getZero(date.getMonth() + 1)
  328. let D = getZero(date.getDate())
  329. let h = getZero(date.getHours())
  330. let m = getZero(date.getMinutes())
  331. let s = getZero(date.getSeconds())
  332. return `${Y}-${M}-${D} ${h}:${m}:${s}`
  333. }
  334. export default {
  335. toast,
  336. successToast,
  337. showLoading,
  338. tipLoading,
  339. hideLoading,
  340. modal,
  341. tips,
  342. navPage,
  343. redPage,
  344. backPage,
  345. callPhone,
  346. copy,
  347. openLocation,
  348. getLocation,
  349. getAddress,
  350. getNowDate,
  351. getNowDatetime,
  352. getZero
  353. }