common.js 8.1 KB

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