util.js 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  1. import api from '@/common/http/'
  2. import wx from 'weixin-js-sdk'
  3. import { axios } from '@/common/http/'
  4. import { isWeixin } from './common.js'
  5. import store from '@/store/index.js'
  6. import axios2 from 'axios'
  7. import { setStorage, getStorage, removeStorage } from '@/common/utils/storage.js'
  8. export function replaceStringInObject(obj, targets, replacement) {
  9. // 将对象转换为字符串
  10. let str = JSON.stringify(obj)
  11. // 替换所有目标字符串为替换字符串
  12. for (var target of targets) {
  13. str = str.replace(new RegExp(target, 'g'), replacement)
  14. }
  15. // 将字符串转换回对象
  16. return JSON.parse(str)
  17. }
  18. export const mini_env = function (cb) {
  19. if (isWeixin()) {
  20. wx.miniProgram.getEnv(res => {
  21. if (res.miniprogram) {
  22. cb(true)
  23. } else {
  24. cb(false)
  25. }
  26. })
  27. } else {
  28. cb(false)
  29. }
  30. }
  31. // 获取用户信息
  32. export const getUserInfo = () => {
  33. return new Promise((resolve, reject) => {
  34. api
  35. .get('/user/user/detail', {
  36. userId: store.state.user.userId
  37. })
  38. .then(response => {
  39. const { data } = response
  40. setStorage('user', data)
  41. resolve(data)
  42. })
  43. .catch(error => {
  44. reject(error)
  45. })
  46. })
  47. }
  48. export async function redirection() {
  49. const appid = getQueryVariable('appid') || getQueryVariable('appId')
  50. const goHome = [
  51. '/packageWorkorder/pages/orderList',
  52. '/packageMaterial/pages/stock/index',
  53. '/packageMaterial/pages/sale/index',
  54. '/packageMaterial/pages/newSale/index'
  55. ]
  56. const goMycon = [
  57. '/packageMine/pages/collection',
  58. '/packageMine/pages/profit/list',
  59. '/packageMine/pages/salesProfit/index',
  60. '/packageMine/pages/ranking/list'
  61. ]
  62. var userInfo = await getUserInfo()
  63. if (userInfo) {
  64. if (userInfo.type === 'GENERAL') {
  65. if (goHome.find(url => !!~window.location.href.split('?')[0].indexOf(url))) {
  66. uni.showModal({
  67. title: '提示',
  68. content: '您的账号没有权限!',
  69. showCancel: false,
  70. success: function (res) {
  71. if (res.confirm) {
  72. window.history.go(-(window.history.length - 1))
  73. window.location.href = `${process.env.VUE_APP_HREF}/pages/index/index?appid=${appid}`
  74. }
  75. }
  76. })
  77. return
  78. }
  79. if (goMycon.find(url => !!~window.location.href.split('?')[0].indexOf(url))) {
  80. uni.showModal({
  81. title: '提示',
  82. content: '您的账号没有权限!',
  83. showCancel: false,
  84. success: function (res) {
  85. if (res.confirm) {
  86. window.history.go(-(window.history.length - 1))
  87. window.location.href = `${process.env.VUE_APP_HREF}/pages/mine/index?appid=${appid}`
  88. }
  89. }
  90. })
  91. return
  92. }
  93. } else if (userInfo.type === 'SERVICE') {
  94. } else if (userInfo.type === 'WORKER') {
  95. }
  96. }
  97. }
  98. // 解析地址栏参数
  99. export const getQueryVariable = variable => {
  100. if (!window) {
  101. return undefined
  102. }
  103. // 从?开始获取后面的所有数据
  104. var query = window.location.search.substring(1)
  105. // 从字符串&开始分隔成数组split
  106. var vars = query.split('&')
  107. // 遍历该数组
  108. for (var i = 0; i < vars.length; i++) {
  109. // 从等号部分分割成字符
  110. var pair = vars[i].split('=')
  111. // 如果第一个元素等于 传进来的参的话 就输出第二个元素
  112. if (pair[0] == variable) {
  113. return pair[1] || ''
  114. }
  115. }
  116. return undefined
  117. }
  118. export function compareUrls(url1, url2) {
  119. // 创建 URL 对象来解析地址
  120. const parsedUrl1 = new URL(url1)
  121. const parsedUrl2 = new URL(url2)
  122. // 比较主要部分(不包括查询参数)
  123. const mainPartUrl1 = parsedUrl1.origin + parsedUrl1.pathname
  124. const mainPartUrl2 = parsedUrl2.origin + parsedUrl2.pathname
  125. return mainPartUrl1 === mainPartUrl2
  126. }
  127. export function removePreviousHistory() {
  128. // 获取当前页面的url
  129. const currentUrl = window.location.href
  130. if (compareUrls(getStorage('CurrentHrefUrlAddress') || '', currentUrl)) {
  131. removeStorage('CurrentHrefUrlAddress')
  132. // 使用 history 对象的 go 方法跳转到上一个历史记录
  133. window.history.go(-1)
  134. // 使用 history.replaceState
  135. window.history.replaceState(null, '', currentUrl)
  136. // 刷新页面
  137. window.location.reload()
  138. }
  139. }
  140. // 删除 url 上的参数
  141. function removeUrlParams(key) {
  142. let href = location.href
  143. const e = eval(`/&?${key}=[^&#]*/g`)
  144. href = href.replace(e, '')
  145. history.replaceState('', '', href)
  146. return href
  147. }
  148. function setStore(data = {}) {
  149. store.commit('user/set_userId', data.userId)
  150. store.commit('user/set_openId', data.openId)
  151. store.commit('user/set_name', data.nickName)
  152. store.commit('user/set_avatar', data.avatar)
  153. store.commit('user/set_mobile', data.mobile)
  154. store.commit('user/set_token', data.token)
  155. }
  156. export function truePath() {
  157. var currentURL = window.location.href
  158. var url = new URL(currentURL)
  159. var path = url.pathname
  160. var partToRemove = (function () {
  161. var hrefUrl = new URL(process.env.VUE_APP_HREF)
  162. if (hrefUrl.pathname && hrefUrl.pathname === '/') {
  163. return ''
  164. }
  165. return url.pathname
  166. })()
  167. if (path.startsWith(partToRemove)) {
  168. path = path.slice(partToRemove.length)
  169. }
  170. return path
  171. }
  172. export function rompamUrl() {
  173. // 获取当前页面的 URL
  174. var currentURL = window.location.href
  175. // 创建 URL 对象
  176. var url = new URL(currentURL)
  177. return url.origin + url.pathname
  178. }
  179. export function isEncoded(url) {
  180. return !!~url.indexOf('%3A%2F%2F') ? url : encodeURIComponent(url)
  181. }
  182. // 微信鉴权登入
  183. export function webLogin(bool = false) {
  184. return new Promise(async (resolve, reject) => {
  185. // 获取地址栏appid信息
  186. const appid = getQueryVariable('appid') || getQueryVariable('appId')
  187. // 判断是否微信环境下
  188. if (isWeixin() && appid) {
  189. // code是由授权后重定向返回携带
  190. const code = getQueryVariable('code')
  191. // isAuthorization用于强制重新获取授权token
  192. const isAuthorization = getQueryVariable('isAuthorization')
  193. // 获取当前地址
  194. var url = location.href
  195. // 获取记录的时间
  196. const isAuthorizationTime = getStorage('isAuthorizationTime')
  197. // 获取历史code
  198. const previousCode = getStorage('previousCode')
  199. if (code) {
  200. url = removeUrlParams('code')
  201. url = removeUrlParams('state')
  202. url = removeUrlParams('x-token')
  203. }
  204. // 是否强制授权
  205. if (isAuthorization && (!isAuthorizationTime || isAuthorizationTime < new Date().getTime())) {
  206. // 设置时间
  207. setStorage('isAuthorizationTime', new Date().getTime() + 2 * 60 * 60 * 1000)
  208. // 删除本地缓存
  209. setStore()
  210. url = removeUrlParams('x-token')
  211. // 去获取授权
  212. setTimeout(function () {
  213. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${isEncoded(
  214. url
  215. )}&response_type=code&scope=snsapi_userinfo#wechat_redirect`
  216. }, 50)
  217. } else if (bool) {
  218. // 删除本地缓存
  219. setStore()
  220. // url = `${rompamUrl()}?appid=${appid}`
  221. url = removeUrlParams('x-token')
  222. // 去获取授权
  223. setTimeout(function () {
  224. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${isEncoded(
  225. url
  226. )}&response_type=code&scope=snsapi_userinfo#wechat_redirect`
  227. }, 50)
  228. }
  229. // 判断是否有token有则不需要授权执行
  230. else if (code && code !== previousCode) {
  231. // 设置时间
  232. setStorage('previousCode', code)
  233. // 有token表示授权回来则执行code静默登入
  234. api
  235. .post('/user/auth2', {
  236. code: code
  237. })
  238. .then(async res => {
  239. setStore(res.data)
  240. resolve({})
  241. })
  242. .catch(err => {
  243. webLogin(true)
  244. reject(err)
  245. })
  246. } else {
  247. resolve({})
  248. }
  249. } else {
  250. resolve({})
  251. }
  252. })
  253. }
  254. // 获取配置信息
  255. export const getConfigInfo = () => {
  256. return new Promise((resolve, reject) => {
  257. api
  258. .get('/common/config/get')
  259. .then(response => {
  260. const { data } = response
  261. resolve(data)
  262. })
  263. .catch(error => {
  264. reject(error)
  265. })
  266. })
  267. }
  268. // 获取模版信息
  269. export const getTemplateInfo = () => {
  270. return new Promise((resolve, reject) => {
  271. api
  272. .get('/renovation/detail')
  273. .then(response => {
  274. const { data } = response
  275. resolve(data)
  276. })
  277. .catch(error => {
  278. reject(error)
  279. })
  280. })
  281. }
  282. // 获取未读消息数量
  283. export const getNoticeNum = () => {
  284. return new Promise((resolve, reject) => {
  285. api
  286. .get('/notice/list/count', {
  287. readFlag: 'NO',
  288. noticeType: ''
  289. })
  290. .then(res => {
  291. if (res.data && res.data > 0) {
  292. uni.setTabBarBadge({
  293. index: 3,
  294. text: String(res.data)
  295. })
  296. } else {
  297. uni.removeTabBarBadge({
  298. index: 3
  299. })
  300. }
  301. resolve(res.data)
  302. })
  303. .catch(error => {
  304. resolve(0)
  305. })
  306. })
  307. }
  308. // 获取代办工单数量
  309. export const getOrderNum = async () => {
  310. const userInfo = await getUserInfo()
  311. return new Promise((resolve, reject) => {
  312. if (userInfo.type == 'WORKER') {
  313. api
  314. .post('/pg/order/base/status/count')
  315. .then(res => {
  316. if (res.data && res.data.djd + res.data.fwz > 0) {
  317. uni.setTabBarBadge({
  318. index: 1,
  319. text: String(res.data.djd + res.data.fwz)
  320. })
  321. } else {
  322. uni.removeTabBarBadge({
  323. index: 1
  324. })
  325. }
  326. resolve(res.data.djd + res.data.fwz)
  327. })
  328. .catch(error => {
  329. resolve(0)
  330. })
  331. } else {
  332. resolve(0)
  333. }
  334. })
  335. }
  336. const getUUID = function () {
  337. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
  338. return (c === 'x' ? (Math.random() * 16) | 0 : 'r&0x3' | '0x8').toString(16)
  339. })
  340. }
  341. const createName = function (name, s = '.') {
  342. const date = Date.now()
  343. const uuid = getUUID()
  344. const fileSuffix = name.substring(name.lastIndexOf(s) + 1)
  345. return `${date}${uuid}.${fileSuffix}`
  346. }
  347. const blobToFile = function (blobUrl) {
  348. return new Promise((r, j) => {
  349. const xhr = new XMLHttpRequest()
  350. xhr.open('GET', blobUrl, true)
  351. xhr.responseType = 'blob'
  352. xhr.onload = function () {
  353. if (xhr.status === 200) {
  354. const blobData = xhr.response
  355. const file = new File([blobData], createName(blobData.type, '/'), {
  356. type: blobData.type
  357. })
  358. r(file)
  359. } else {
  360. j(xhr.statusText)
  361. }
  362. }
  363. xhr.send()
  364. })
  365. }
  366. // 全链接图片上传
  367. export const uploadImgFull = async function (file) {
  368. console.log(file)
  369. uni.showLoading({
  370. mask: true
  371. })
  372. // #ifdef H5
  373. let formData = new FormData()
  374. formData.append('file', await blobToFile(file))
  375. // #endif
  376. return new Promise((resolve, reject) => {
  377. // #ifdef H5
  378. axios2
  379. .post(process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/upload', formData, {
  380. headers: {
  381. 'Content-Type': 'multipart/form-data',
  382. 'x-token': store.state.user.token
  383. }
  384. })
  385. .then(res => {
  386. uni.hideLoading()
  387. resolve(
  388. replaceStringInObject(
  389. res.data.data,
  390. ['https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/', 'https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/'],
  391. process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/img/get?key='
  392. )
  393. )
  394. })
  395. // #endif
  396. // #ifdef MP-WEIXIN
  397. uni.uploadFile({
  398. url: process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/upload',
  399. header: {
  400. 'Content-Type': 'multipart/form-data',
  401. 'x-token': store.state.user.token
  402. },
  403. name: 'file',
  404. filePath: file,
  405. success(res) {
  406. uni.hideLoading()
  407. resolve(
  408. replaceStringInObject(
  409. JSON.parse(res.data).data,
  410. ['https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/', 'https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/'],
  411. process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/img/get?key='
  412. )
  413. )
  414. },
  415. fail(err) {
  416. reject(err)
  417. },
  418. complete(res) {
  419. uni.hideLoading()
  420. }
  421. })
  422. // #endif
  423. })
  424. }
  425. // 图片上传
  426. export const uploadImg = async function (file) {
  427. console.log(file)
  428. uni.showLoading({
  429. mask: true
  430. })
  431. // 获取oss配置
  432. const par = await axios({
  433. url: '/common/oss/config',
  434. method: 'get'
  435. })
  436. .then(res => {
  437. return res.data
  438. })
  439. .catch(err => {
  440. uni.hideLoading()
  441. })
  442. const fileKey = par.dir + createName(file.name)
  443. return new Promise((resolve, reject) => {
  444. uni.uploadFile({
  445. url: par.host,
  446. // header: {
  447. // "Content-Type": 'multipart/form-data',
  448. // },
  449. name: 'file',
  450. formData: {
  451. ...par,
  452. name: file.name,
  453. key: fileKey
  454. },
  455. filePath: file.path,
  456. success(res) {
  457. resolve({
  458. url: fileKey
  459. })
  460. },
  461. fail(err) {
  462. reject(err)
  463. },
  464. complete(res) {
  465. uni.hideLoading()
  466. }
  467. })
  468. })
  469. }
  470. // 图片上传
  471. export const uploadBlobImg = async function (file) {
  472. console.log(file)
  473. uni.showLoading({
  474. mask: true
  475. })
  476. // 获取oss配置
  477. const par = await axios({
  478. url: '/common/oss/config',
  479. method: 'get'
  480. })
  481. .then(res => {
  482. return res.data
  483. })
  484. .catch(err => {
  485. uni.hideLoading()
  486. })
  487. const fileKey = par.dir + createName(file.name)
  488. return new Promise((resolve, reject) => {
  489. uni.uploadFile({
  490. url: par.host,
  491. // header: {
  492. // "Content-Type": 'multipart/form-data',
  493. // },
  494. name: 'file',
  495. formData: {
  496. ...par,
  497. name: file.name,
  498. key: fileKey
  499. },
  500. filePath: file.url,
  501. success(res) {
  502. resolve({
  503. url: fileKey
  504. })
  505. },
  506. fail(err) {
  507. reject(err)
  508. },
  509. complete(res) {
  510. uni.hideLoading()
  511. }
  512. })
  513. })
  514. }
  515. export const getArea = function (str) {
  516. let area = {}
  517. let index11 = 0
  518. let index1 = str.indexOf('省')
  519. if (index1 == -1) {
  520. index11 = str.indexOf('自治区')
  521. if (index11 != -1) {
  522. area.Province = str.substring(0, index11 + 3)
  523. } else {
  524. area.Province = str.substring(0, 0)
  525. }
  526. } else {
  527. area.Province = str.substring(0, index1 + 1)
  528. }
  529. let index2 = str.indexOf('市')
  530. if (index11 == -1) {
  531. area.City = str.substring(index11 + 1, index2 + 1)
  532. } else {
  533. if (index11 == 0) {
  534. area.City = str.substring(index1 + 1, index2 + 1)
  535. } else {
  536. area.City = str.substring(index11 + 3, index2 + 1)
  537. }
  538. }
  539. let index3 = str.lastIndexOf('区')
  540. if (index3 == -1) {
  541. index3 = str.indexOf('县')
  542. area.Country = str.substring(index2 + 1, index3 + 1)
  543. } else {
  544. area.Country = str.substring(index2 + 1, index3 + 1)
  545. }
  546. return area
  547. }
  548. // 图片上传
  549. export const uploadImgs = async function (file) {
  550. uni.showLoading({
  551. title: '上传中',
  552. mask: true
  553. })
  554. // 获取oss配置
  555. const par = await axios({
  556. url: '/common/oss/config',
  557. method: 'get'
  558. })
  559. .then(res => {
  560. return res.data
  561. })
  562. .catch(err => {
  563. uni.hideLoading()
  564. })
  565. const fileKey = par.dir + createName(file.name)
  566. return new Promise((resolve, reject) => {
  567. uni.uploadFile({
  568. url: par.host,
  569. // header: {
  570. // "Content-Type": 'multipart/form-data',
  571. // },
  572. name: 'file',
  573. formData: {
  574. ...par,
  575. name: file.name,
  576. key: fileKey
  577. },
  578. filePath: file.path,
  579. success(res) {
  580. resolve({
  581. url: fileKey
  582. })
  583. },
  584. fail(err) {
  585. reject(err)
  586. },
  587. complete(res) {
  588. uni.hideLoading()
  589. }
  590. })
  591. })
  592. }
  593. export const matchFileSuffixType = function (fileName) {
  594. // 后缀获取
  595. var suffix = ''
  596. // 获取类型结果
  597. var result = ''
  598. try {
  599. var flieArr = fileName.split('.')
  600. suffix = flieArr[flieArr.length - 1]
  601. } catch (err) {
  602. suffix = ''
  603. }
  604. // fileName无后缀返回 false
  605. if (!suffix) {
  606. result = false
  607. return result
  608. }
  609. // 图片格式
  610. var imglist = ['png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp']
  611. // 进行图片匹配
  612. result = imglist.some(function (item) {
  613. return item == suffix
  614. })
  615. if (result) {
  616. result = 'image'
  617. return result
  618. }
  619. // 匹配txt
  620. var txtlist = ['txt']
  621. result = txtlist.some(function (item) {
  622. return item == suffix
  623. })
  624. if (result) {
  625. result = 'txt'
  626. return result
  627. }
  628. // 匹配 excel
  629. var excelist = ['xls', 'xlsx']
  630. result = excelist.some(function (item) {
  631. return item == suffix
  632. })
  633. if (result) {
  634. result = 'excel'
  635. return result
  636. }
  637. // 匹配 word
  638. var wordlist = ['doc', 'docx']
  639. result = wordlist.some(function (item) {
  640. return item == suffix
  641. })
  642. if (result) {
  643. result = 'word'
  644. return result
  645. }
  646. // 匹配 pdf
  647. var pdflist = ['pdf']
  648. result = pdflist.some(function (item) {
  649. return item == suffix
  650. })
  651. if (result) {
  652. result = 'pdf'
  653. return result
  654. }
  655. // 匹配 ppt
  656. var pptlist = ['ppt', 'pptx']
  657. result = pptlist.some(function (item) {
  658. return item == suffix
  659. })
  660. if (result) {
  661. result = 'ppt'
  662. return result
  663. }
  664. // 匹配 视频
  665. var videolist = ['mp4', 'm2v', 'mkv']
  666. result = videolist.some(function (item) {
  667. return item == suffix
  668. })
  669. if (result) {
  670. result = 'video'
  671. return result
  672. }
  673. // 匹配 音频
  674. var radiolist = ['mp3', 'wav', 'wmv']
  675. result = radiolist.some(function (item) {
  676. return item == suffix
  677. })
  678. if (result) {
  679. result = 'radio'
  680. return result
  681. }
  682. // 其他 文件类型
  683. result = 'other'
  684. return result
  685. }
  686. // 时间格式化
  687. export const formatterDate = (date, fmt) => {
  688. let nowDate = {
  689. yyyy: date.getFullYear(), // 年
  690. MM: date.getMonth() + 1, // 月份
  691. dd: date.getDate() //日
  692. }
  693. if (/(y+)/.test(fmt)) {
  694. fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
  695. }
  696. for (var k in nowDate) {
  697. if (new RegExp('(' + k + ')').test(fmt)) {
  698. fmt = fmt.replace(
  699. RegExp.$1,
  700. RegExp.$1.length == 1 ? nowDate[k] : ('00' + nowDate[k]).substr(('' + nowDate[k]).length)
  701. )
  702. }
  703. }
  704. return fmt
  705. }
  706. /**
  707. * 比较时间是否在范围内
  708. * @param {Object} stime
  709. * @param {Object} etime
  710. * @return {Boolean}
  711. */
  712. export const compareTime = function (stime, etime) {
  713. function tranDate(time) {
  714. return new Date(time.replace(/-/g, '/')).getTime()
  715. }
  716. let startTime = tranDate(stime)
  717. let endTime = tranDate(etime)
  718. let nowTime = new Date().getTime()
  719. if (nowTime < startTime || nowTime > endTime) {
  720. return false
  721. }
  722. return true
  723. }
  724. /*
  725. *时间戳转化日期方法
  726. *@params val 时间戳,必传;
  727. *@params type 转化类型,非必传,默认返回年月日加时间,等于ymd时,返回年月日,等于hms返回时间
  728. */
  729. export const timeToDate = function (val, type) {
  730. if (!val) {
  731. throw new Error('val ')
  732. }
  733. var date = new Date(val * 1000),
  734. Y = date.getFullYear(),
  735. M = date.getMonth() + 1,
  736. D = date.getDate(),
  737. H = date.getHours(),
  738. m = date.getMinutes(),
  739. s = date.getSeconds()
  740. M = M < 10 ? '0' + M : M
  741. D = D < 10 ? '0' + D : D
  742. H = H < 10 ? '0' + H : H
  743. m = m < 10 ? '0' + m : m
  744. s = s < 10 ? '0' + s : s
  745. if (!type) {
  746. return `${Y}-${M}-${D} ${H}:${m}:${s}`
  747. } else if (type === 'ymd') {
  748. return `${Y}-${M}-${D}`
  749. } else if (type === 'hms') {
  750. return `${H}:${m}:${s}`
  751. }
  752. }
  753. var appModuleJsonGuding = null
  754. export const selectionChange = async function () {
  755. var index
  756. try {
  757. ;['pages/index/index', 'pages/workorder/index', 'pages/goods/index', 'pages/mine/index'].map((item, index_) => {
  758. if (!!~window.location.href.indexOf(item)) {
  759. index = index_
  760. throw new Error(``)
  761. }
  762. })
  763. } catch (err) {
  764. var doc = document.getElementsByClassName('uni-tabbar-bottom')
  765. if (doc && doc.length) {
  766. if (!appModuleJsonGuding) {
  767. try {
  768. doc[0].innerHTML = ''
  769. var { appModuleJson } = (await getUserInfo()) || {}
  770. if (appModuleJson) {
  771. appModuleJsonGuding = JSON.parse(appModuleJson)
  772. } else {
  773. appModuleJsonGuding = [
  774. { type: 'home', name: '首页', sort: 0 },
  775. { type: 'order', name: '工单', sort: 1 },
  776. { type: 'shop', name: '商城', sort: 2 },
  777. { type: 'my', name: '我的', sort: 3 }
  778. ]
  779. }
  780. } catch (error) {
  781. console.log(error)
  782. }
  783. }
  784. doc[0].innerHTML = (function () {
  785. var tabs = {
  786. home(item) {
  787. return `<div class="uni-tabbar__item" onclick="(function(){navToPage({url: '/pages/index/index'+window.location.search})})()">
  788. <div class="uni-tabbar__bd" style="height: 50px;">
  789. <div class="uni-tabbar__icon" style="width: 24px; height: 24px;">
  790. <img src="${process.env.VUE_APP_BASE_PATH}static/tabBar/icon_1${index == 0 ? '_cur' : ''}.png">
  791. </div>
  792. <div class="uni-tabbar__label" style="color: ${
  793. index == 0 ? 'rgb(61, 143, 253)' : 'rgb(122, 126, 131)'
  794. }; font-size: 10px; line-height: normal; margin-top: 3px;">
  795. ${item.name}
  796. </div>
  797. </div>
  798. </div>`
  799. },
  800. order(item) {
  801. return `<div class="uni-tabbar__item" onclick="(function(){navToPage({url: '/pages/workorder/index'+window.location.search+'&type=0&isWb=0'})})()">
  802. <div class="uni-tabbar__bd" style="height: 50px;">
  803. <div class="uni-tabbar__icon" style="width: 24px; height: 24px;">
  804. <img src="${process.env.VUE_APP_BASE_PATH}static/tabBar/icon_2${index == 1 ? '_cur' : ''}.png">
  805. </div>
  806. <div class="uni-tabbar__label" style="color: ${
  807. index == 1 ? 'rgb(61, 143, 253)' : 'rgb(122, 126, 131)'
  808. }; font-size: 10px; line-height: normal; margin-top: 3px;">
  809. ${item.name}
  810. </div>
  811. </div>
  812. </div>`
  813. },
  814. // shop(item) {
  815. // return `<div class="uni-tabbar__item" onclick="(function(){navToPage({url: '/pages/goods/index'+window.location.search})})()">
  816. // <div class="uni-tabbar__bd" style="height: 50px;">
  817. // <div class="uni-tabbar__icon" style="width: 24px; height: 24px;">
  818. // <img src="${process.env.VUE_APP_BASE_PATH}static/tabBar/icon_3${index == 2 ? '_cur' : ''}.png">
  819. // </div>
  820. // <div class="uni-tabbar__label" style="color: ${
  821. // index == 2 ? 'rgb(61, 143, 253)' : 'rgb(122, 126, 131)'
  822. // }; font-size: 10px; line-height: normal; margin-top: 3px;">
  823. // ${item.name}
  824. // </div>
  825. // </div>
  826. // </div>`
  827. // },
  828. my(item) {
  829. return `<div class="uni-tabbar__item" onclick="(function(){navToPage({url: '/pages/mine/index'+window.location.search})})()">
  830. <div class="uni-tabbar__bd" style="height: 50px;">
  831. <div class="uni-tabbar__icon" style="width: 24px; height: 24px;">
  832. <img src="${process.env.VUE_APP_BASE_PATH}static/tabBar/icon_4${index == 3 ? '_cur' : ''}.png">
  833. </div>
  834. <div class="uni-tabbar__label" style="color: ${
  835. index == 3 ? 'rgb(61, 143, 253)' : 'rgb(122, 126, 131)'
  836. }; font-size: 10px; line-height: normal; margin-top: 3px;">
  837. ${item.name}
  838. </div>
  839. </div>
  840. </div>`
  841. }
  842. }
  843. return `<div class="uni-tabbar" style="background-color: rgb(255, 255, 255); backdrop-filter: none;">
  844. <div class="uni-tabbar-border" style="background-color: rgba(0, 0, 0, 0.33);"></div>
  845. ${(appModuleJsonGuding || [])
  846. .sort((a, b) => a.sort - b.sort)
  847. .map(item => {
  848. return tabs?.[item.type]?.(item) || ''
  849. })
  850. .join('')}
  851. </div>
  852. <div class="uni-placeholder" style="height: 50px;"></div>`
  853. })()
  854. }
  855. }
  856. }
  857. // 微信支付直调
  858. export const onBridgeReady = function (data, successful, cancel, failure) {
  859. WeixinJSBridge.invoke(
  860. 'getBrandWCPayRequest',
  861. {
  862. // 以下6个支付参数通过蓝兔支付的jsapi接口获取
  863. // **************************
  864. appId: getQueryVariable('appid') || getQueryVariable('appId') || '', //公众号appid
  865. timeStamp: data.timeStamp, //时间戳
  866. nonceStr: data.nonceStr, //随机字符串
  867. package: data.payPackage || data.package, //订单详情扩展字符串
  868. signType: 'MD5', //签名方式
  869. paySign: data.paySign
  870. },
  871. function (res) {
  872. console.log(JSON.stringify(res))
  873. // 支付成功
  874. if (res.err_msg == 'get_brand_wcpay_request:ok') {
  875. successful(res)
  876. }
  877. // 支付过程中用户取消
  878. if (res.err_msg == 'get_brand_wcpay_request:cancel') {
  879. cancel(res)
  880. }
  881. // 支付失败
  882. if (res.err_msg == 'get_brand_wcpay_request:fail') {
  883. failure(res)
  884. }
  885. /**
  886. * 其它
  887. * 1、请检查预支付会话标识prepay_id是否已失效
  888. * 2、请求的appid与下单接口的appid是否一致
  889. * */
  890. if (res.err_msg == '调用支付JSAPI缺少参数:total_fee') {
  891. failure(res)
  892. }
  893. }
  894. )
  895. }
  896. // 判断是否符合微信环境支付
  897. export const weixinPay = function (data, successful, cancel, failure) {
  898. if (typeof WeixinJSBridge == 'undefined') {
  899. if (document.addEventListener) {
  900. document.addEventListener(
  901. 'WeixinJSBridgeReady',
  902. function () {
  903. onBridgeReady(data, successful, cancel, failure)
  904. },
  905. false
  906. )
  907. } else if (document.attachEvent) {
  908. document.attachEvent('WeixinJSBridgeReady', function () {
  909. onBridgeReady(data, successful, cancel, failure)
  910. })
  911. document.attachEvent('onWeixinJSBridgeReady', function () {
  912. onBridgeReady(data, successful, cancel, failure)
  913. })
  914. }
  915. } else {
  916. onBridgeReady(data, successful, cancel, failure)
  917. }
  918. }
  919. // 微信授权验证配置
  920. export const wxConfig = function (configInfo, userInfo, cb) {
  921. let url = ''
  922. const systemInfo = uni.getSystemInfoSync()
  923. if (systemInfo.platform === 'ios') {
  924. // iOS平台
  925. url = getStorage('realAuthUrl')
  926. } else {
  927. url = window.location.href.split('#')[0] //获取到的url是当前页面的域名
  928. }
  929. api
  930. .post('/user/jsapi/sign', {
  931. url
  932. })
  933. .then(res => {
  934. const data = res.data
  935. if (data) {
  936. wx.config({
  937. debug: false, // 开启调试模式
  938. appId: data.appId, // 必填,企业号的唯一标识
  939. timestamp: data.timestamp, // 必填,生成签名的时间戳
  940. nonceStr: data.nonceStr, // 必填,生成签名的随机串
  941. signature: data.signature, // 必填,签名
  942. beta: true,
  943. jsApiList: [
  944. // 必填,需要使用的JS接口列表
  945. 'scanQRCode',
  946. 'checkJsApi',
  947. 'updateAppMessageShareData',
  948. 'updateTimelineShareData',
  949. 'onMenuShareTimeline',
  950. 'onMenuShareAppMessage',
  951. 'onMenuShareQQ',
  952. 'chooseInvoiceTitle',
  953. 'getLocation',
  954. 'openLocation'
  955. ]
  956. })
  957. wx.checkJsApi({
  958. jsApiList: ['getLocation'],
  959. success: function (res) {
  960. if (res.checkResult.getLocation == false) {
  961. alert('你的微信版本太低,不支持微信JS接口,请升级到最新的微信版本!')
  962. return
  963. }
  964. },
  965. fail: function (res) {
  966. console.log('checkJsApi fail=' + JSON.stringify(res))
  967. }
  968. })
  969. wx.ready(() => {
  970. cb?.(wx)
  971. if (configInfo && userInfo) {
  972. wxShare({
  973. configInfo,
  974. userInfo
  975. })
  976. }
  977. })
  978. wx.error(function (res) {
  979. cb?.()
  980. alert('微信API签名失败v1:' + systemInfo.platform + '---' + res.errMsg) //wx.config配置错误,会弹出窗口哪里错误,然后根据微信文档查询即可。
  981. })
  982. } else {
  983. alert('获取配置信息返回为空')
  984. }
  985. })
  986. }
  987. // 微信扫码
  988. export const wxScanCode = function (scanType = ['qrCode', 'barCode']) {
  989. return new Promise((resolve, reject) => {
  990. mini_env(function (bool) {
  991. if (bool) {
  992. wx.scanQRCode({
  993. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  994. scanType: scanType,
  995. success: res => {
  996. console.log(res)
  997. var result = res.resultStr // 当 needResult 为 1 时,扫码返回的结果
  998. var resultArr = result.split(',') // 扫描结果以逗号分割数组
  999. var codeVal = resultArr[resultArr.length - 1] // 获取数组最后一个元素,也就是最终的内容
  1000. var codeValStr = codeVal.split('=')
  1001. resolve(codeValStr[codeValStr.length - 1])
  1002. },
  1003. fail: res => {
  1004. reject('')
  1005. alert('wx.scanQRCode失败:' + res?.errMsg)
  1006. }
  1007. })
  1008. } else {
  1009. reject('')
  1010. alert('请使用微信小程序扫码')
  1011. }
  1012. })
  1013. })
  1014. }
  1015. export const wxShare = function (options = {}) {
  1016. if (!options) return
  1017. const { configInfo, userInfo, title, desc, link, imgUrl } = options
  1018. var appid = getQueryVariable('appid') || getQueryVariable('appId')
  1019. wx.updateAppMessageShareData({
  1020. title: title || `${userInfo.nickName}向你推荐了「${configInfo.minAppName}」`, // 分享标题
  1021. desc: desc || '点击查看', // 分享描述
  1022. link:
  1023. link ||
  1024. `${process.env.VUE_APP_HREF}/pages/index/index?appid=${appid}&serviceId=${userInfo.userId}&isAuthorization=1`, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  1025. imgUrl: imgUrl || `${configInfo.minLogo3}`, // 分享图标
  1026. success: function () {
  1027. // 设置成功
  1028. },
  1029. fail: function (err) {
  1030. // alert(JSON.stringify(err))
  1031. }
  1032. })
  1033. wx.updateTimelineShareData({
  1034. title: title || `${userInfo.nickName}向你推荐了「${configInfo.minAppName}」`, // 分享标题
  1035. desc: desc || '点击查看', // 分享描述
  1036. link:
  1037. link ||
  1038. `${process.env.VUE_APP_HREF}/pages/index/index?appid=${appid}&serviceId=${userInfo.userId}&isAuthorization=1`, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  1039. imgUrl: imgUrl || `${configInfo.minLogo3}`, // 分享图标
  1040. success: function () {
  1041. // 设置成功
  1042. },
  1043. fail: function (err) {
  1044. // alert(JSON.stringify(err))
  1045. }
  1046. })
  1047. }
  1048. export default {
  1049. getQueryVariable,
  1050. webLogin,
  1051. getUserInfo,
  1052. getConfigInfo,
  1053. getTemplateInfo,
  1054. getNoticeNum,
  1055. getOrderNum,
  1056. uploadImgFull,
  1057. uploadImg,
  1058. getArea,
  1059. uploadImgs,
  1060. matchFileSuffixType,
  1061. formatterDate,
  1062. compareTime,
  1063. timeToDate,
  1064. selectionChange,
  1065. weixinPay,
  1066. wxConfig,
  1067. wxScanCode,
  1068. wxShare
  1069. }