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. '/packageMine/pages/myWebsit'
  62. ]
  63. var userInfo = await getUserInfo()
  64. if (userInfo) {
  65. if (userInfo.type === 'GENERAL') {
  66. if (goHome.find(url => !!~window.location.href.split('?')[0].indexOf(url))) {
  67. uni.showModal({
  68. title: '提示',
  69. content: '您的账号没有权限!',
  70. showCancel: false,
  71. success: function (res) {
  72. if (res.confirm) {
  73. window.history.go(-(window.history.length - 1))
  74. window.location.href = `${process.env.VUE_APP_HREF}/pages/index/index?appid=${appid}`
  75. }
  76. }
  77. })
  78. return
  79. }
  80. if (goMycon.find(url => !!~window.location.href.split('?')[0].indexOf(url))) {
  81. uni.showModal({
  82. title: '提示',
  83. content: '您的账号没有权限!',
  84. showCancel: false,
  85. success: function (res) {
  86. if (res.confirm) {
  87. window.history.go(-(window.history.length - 1))
  88. window.location.href = `${process.env.VUE_APP_HREF}/pages/mine/index?appid=${appid}`
  89. }
  90. }
  91. })
  92. return
  93. }
  94. } else if (userInfo.type === 'SERVICE') {
  95. } else if (userInfo.type === 'WORKER') {
  96. }
  97. }
  98. }
  99. // 解析地址栏参数
  100. export const getQueryVariable = variable => {
  101. if (!window) {
  102. return undefined
  103. }
  104. // 从?开始获取后面的所有数据
  105. var query = window.location.search.substring(1)
  106. // 从字符串&开始分隔成数组split
  107. var vars = query.split('&')
  108. // 遍历该数组
  109. for (var i = 0; i < vars.length; i++) {
  110. // 从等号部分分割成字符
  111. var pair = vars[i].split('=')
  112. // 如果第一个元素等于 传进来的参的话 就输出第二个元素
  113. if (pair[0] == variable) {
  114. return pair[1] || ''
  115. }
  116. }
  117. return undefined
  118. }
  119. export function compareUrls(url1, url2) {
  120. // 创建 URL 对象来解析地址
  121. const parsedUrl1 = new URL(url1)
  122. const parsedUrl2 = new URL(url2)
  123. // 比较主要部分(不包括查询参数)
  124. const mainPartUrl1 = parsedUrl1.origin + parsedUrl1.pathname
  125. const mainPartUrl2 = parsedUrl2.origin + parsedUrl2.pathname
  126. return mainPartUrl1 === mainPartUrl2
  127. }
  128. export function removePreviousHistory() {
  129. // 获取当前页面的url
  130. const currentUrl = window.location.href
  131. if (compareUrls(getStorage('CurrentHrefUrlAddress') || '', currentUrl)) {
  132. removeStorage('CurrentHrefUrlAddress')
  133. // 使用 history 对象的 go 方法跳转到上一个历史记录
  134. window.history.go(-1)
  135. // 使用 history.replaceState
  136. window.history.replaceState(null, '', currentUrl)
  137. // 刷新页面
  138. window.location.reload()
  139. }
  140. }
  141. // 删除 url 上的参数
  142. function removeUrlParams(key) {
  143. let href = location.href
  144. const e = eval(`/&?${key}=[^&#]*/g`)
  145. href = href.replace(e, '')
  146. history.replaceState('', '', href)
  147. return href
  148. }
  149. function setStore(data = {}) {
  150. store.commit('user/set_userId', data.userId)
  151. store.commit('user/set_openId', data.openId)
  152. store.commit('user/set_name', data.nickName)
  153. store.commit('user/set_avatar', data.avatar)
  154. store.commit('user/set_mobile', data.mobile)
  155. store.commit('user/set_token', data.token)
  156. }
  157. export function truePath() {
  158. var currentURL = window.location.href
  159. var url = new URL(currentURL)
  160. var path = url.pathname
  161. var partToRemove = (function () {
  162. var hrefUrl = new URL(process.env.VUE_APP_HREF)
  163. if (hrefUrl.pathname && hrefUrl.pathname === '/') {
  164. return ''
  165. }
  166. return url.pathname
  167. })()
  168. if (path.startsWith(partToRemove)) {
  169. path = path.slice(partToRemove.length)
  170. }
  171. return path
  172. }
  173. export function rompamUrl() {
  174. // 获取当前页面的 URL
  175. var currentURL = window.location.href
  176. // 创建 URL 对象
  177. var url = new URL(currentURL)
  178. return url.origin + url.pathname
  179. }
  180. export function isEncoded(url) {
  181. return !!~url.indexOf('%3A%2F%2F') ? url : encodeURIComponent(url)
  182. }
  183. // 微信鉴权登入
  184. export function webLogin(bool = false) {
  185. return new Promise(async (resolve, reject) => {
  186. // 获取地址栏appid信息
  187. const appid = getQueryVariable('appid') || getQueryVariable('appId')
  188. // 判断是否微信环境下
  189. if (isWeixin() && appid) {
  190. // code是由授权后重定向返回携带
  191. const code = getQueryVariable('code')
  192. // isAuthorization用于强制重新获取授权token
  193. const isAuthorization = getQueryVariable('isAuthorization')
  194. // 获取当前地址
  195. var url = location.href
  196. // 获取记录的时间
  197. const isAuthorizationTime = getStorage('isAuthorizationTime')
  198. // 获取历史code
  199. const previousCode = getStorage('previousCode')
  200. if (code) {
  201. url = removeUrlParams('code')
  202. url = removeUrlParams('state')
  203. url = removeUrlParams('x-token')
  204. }
  205. // 是否强制授权
  206. if (isAuthorization && (!isAuthorizationTime || isAuthorizationTime < new Date().getTime())) {
  207. // 设置时间
  208. setStorage('isAuthorizationTime', new Date().getTime() + 2 * 60 * 60 * 1000)
  209. // 删除本地缓存
  210. setStore()
  211. url = removeUrlParams('x-token')
  212. // 去获取授权
  213. setTimeout(function () {
  214. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${isEncoded(
  215. url
  216. )}&response_type=code&scope=snsapi_userinfo#wechat_redirect`
  217. }, 50)
  218. } else if (bool) {
  219. // 删除本地缓存
  220. setStore()
  221. // url = `${rompamUrl()}?appid=${appid}`
  222. url = removeUrlParams('x-token')
  223. // 去获取授权
  224. setTimeout(function () {
  225. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${isEncoded(
  226. url
  227. )}&response_type=code&scope=snsapi_userinfo#wechat_redirect`
  228. }, 50)
  229. }
  230. // 判断是否有token有则不需要授权执行
  231. else if (code && code !== previousCode) {
  232. // 设置时间
  233. setStorage('previousCode', code)
  234. // 有token表示授权回来则执行code静默登入
  235. api
  236. .post('/user/auth2', {
  237. code: code
  238. })
  239. .then(async res => {
  240. setStore(res.data)
  241. resolve({})
  242. })
  243. .catch(reject)
  244. } else {
  245. resolve({})
  246. }
  247. } else {
  248. resolve({})
  249. }
  250. })
  251. }
  252. // 获取配置信息
  253. export const getConfigInfo = () => {
  254. return new Promise((resolve, reject) => {
  255. api
  256. .get('/common/config/get')
  257. .then(response => {
  258. const { data } = response
  259. resolve(data)
  260. })
  261. .catch(error => {
  262. reject(error)
  263. })
  264. })
  265. }
  266. // 获取模版信息
  267. export const getTemplateInfo = () => {
  268. return new Promise((resolve, reject) => {
  269. api
  270. .get('/renovation/detail')
  271. .then(response => {
  272. const { data } = response
  273. resolve(data)
  274. })
  275. .catch(error => {
  276. reject(error)
  277. })
  278. })
  279. }
  280. // 获取未读消息数量
  281. export const getNoticeNum = () => {
  282. return new Promise((resolve, reject) => {
  283. api
  284. .get('/notice/list/count', {
  285. readFlag: 'NO',
  286. noticeType: ''
  287. })
  288. .then(res => {
  289. if (res.data && res.data > 0) {
  290. uni.setTabBarBadge({
  291. index: 3,
  292. text: String(res.data)
  293. })
  294. } else {
  295. uni.removeTabBarBadge({
  296. index: 3
  297. })
  298. }
  299. resolve(res.data)
  300. })
  301. .catch(error => {
  302. resolve(0)
  303. })
  304. })
  305. }
  306. // 获取代办工单数量
  307. export const getOrderNum = async () => {
  308. const userInfo = await getUserInfo()
  309. return new Promise((resolve, reject) => {
  310. if (userInfo.type == 'WORKER') {
  311. api
  312. .post('/pg/order/base/status/count')
  313. .then(res => {
  314. if (res.data && res.data.djd + res.data.fwz > 0) {
  315. uni.setTabBarBadge({
  316. index: 1,
  317. text: String(res.data.djd + res.data.fwz)
  318. })
  319. } else {
  320. uni.removeTabBarBadge({
  321. index: 1
  322. })
  323. }
  324. resolve(res.data.djd + res.data.fwz)
  325. })
  326. .catch(error => {
  327. resolve(0)
  328. })
  329. } else {
  330. resolve(0)
  331. }
  332. })
  333. }
  334. const getUUID = function () {
  335. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
  336. return (c === 'x' ? (Math.random() * 16) | 0 : 'r&0x3' | '0x8').toString(16)
  337. })
  338. }
  339. const createName = function (name, s = '.') {
  340. const date = Date.now()
  341. const uuid = getUUID()
  342. const fileSuffix = name.substring(name.lastIndexOf(s) + 1)
  343. return `${date}${uuid}.${fileSuffix}`
  344. }
  345. const blobToFile = function (blobUrl) {
  346. return new Promise((r, j) => {
  347. const xhr = new XMLHttpRequest()
  348. xhr.open('GET', blobUrl, true)
  349. xhr.responseType = 'blob'
  350. xhr.onload = function () {
  351. if (xhr.status === 200) {
  352. const blobData = xhr.response
  353. const file = new File([blobData], createName(blobData.type, '/'), {
  354. type: blobData.type
  355. })
  356. r(file)
  357. } else {
  358. j(xhr.statusText)
  359. }
  360. }
  361. xhr.send()
  362. })
  363. }
  364. // 全链接图片上传
  365. export const uploadImgFull = async function (file) {
  366. console.log(file)
  367. uni.showLoading({
  368. mask: true
  369. })
  370. // #ifdef H5
  371. let formData = new FormData()
  372. formData.append('file', await blobToFile(file))
  373. // #endif
  374. return new Promise((resolve, reject) => {
  375. // #ifdef H5
  376. axios2
  377. .post(process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/upload', formData, {
  378. headers: {
  379. 'Content-Type': 'multipart/form-data',
  380. 'x-token': store.state.user.token
  381. }
  382. })
  383. .then(res => {
  384. uni.hideLoading()
  385. alert(JSON.stringify(res.data))
  386. resolve(
  387. replaceStringInObject(
  388. res.data.data,
  389. ['https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/', 'https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/'],
  390. process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/img/get?key='
  391. )
  392. )
  393. })
  394. // #endif
  395. // #ifdef MP-WEIXIN
  396. uni.uploadFile({
  397. url: process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/upload',
  398. header: {
  399. 'Content-Type': 'multipart/form-data',
  400. 'x-token': store.state.user.token
  401. },
  402. name: 'file',
  403. filePath: file,
  404. success(res) {
  405. uni.hideLoading()
  406. alert(JSON.stringify(JSON.parse(res.data)))
  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 === 'android') {
  924. // 安卓平台
  925. url = window.location.href.split('#')[0] //获取到的url是当前页面的域名
  926. } else if (systemInfo.platform === 'ios') {
  927. // iOS平台
  928. url = getStorage('realAuthUrl')
  929. }
  930. api
  931. .post('/user/jsapi/sign', {
  932. url
  933. })
  934. .then(res => {
  935. const data = res.data
  936. if (data) {
  937. wx.config({
  938. debug: false, // 开启调试模式
  939. appId: data.appId, // 必填,企业号的唯一标识
  940. timestamp: data.timestamp, // 必填,生成签名的时间戳
  941. nonceStr: data.nonceStr, // 必填,生成签名的随机串
  942. signature: data.signature, // 必填,签名
  943. beta: true,
  944. jsApiList: [
  945. // 必填,需要使用的JS接口列表
  946. 'scanQRCode',
  947. 'checkJsApi',
  948. 'updateAppMessageShareData',
  949. 'updateTimelineShareData',
  950. 'onMenuShareTimeline',
  951. 'onMenuShareAppMessage',
  952. 'onMenuShareQQ',
  953. 'chooseInvoiceTitle',
  954. 'getLocation',
  955. 'openLocation'
  956. ]
  957. })
  958. wx.checkJsApi({
  959. jsApiList: ['getLocation'],
  960. success: function (res) {
  961. if (res.checkResult.getLocation == false) {
  962. alert('你的微信版本太低,不支持微信JS接口,请升级到最新的微信版本!')
  963. return
  964. }
  965. },
  966. fail: function (res) {
  967. console.log('checkJsApi fail=' + JSON.stringify(res))
  968. }
  969. })
  970. wx.ready(() => {
  971. cb?.()
  972. if (configInfo && userInfo) {
  973. wxShare({
  974. configInfo,
  975. userInfo
  976. })
  977. }
  978. })
  979. wx.error(function (res) {
  980. cb?.()
  981. alert('微信API签名失败:' + res.errMsg) //wx.config配置错误,会弹出窗口哪里错误,然后根据微信文档查询即可。
  982. })
  983. } else {
  984. alert('获取配置信息返回为空')
  985. }
  986. })
  987. }
  988. // 微信扫码
  989. export const wxScanCode = function (scanType = ['qrCode', 'barCode']) {
  990. return new Promise((resolve, reject) => {
  991. mini_env(function (bool) {
  992. if (bool) {
  993. wx.scanQRCode({
  994. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  995. scanType: scanType,
  996. success: res => {
  997. console.log(res)
  998. var result = res.resultStr // 当 needResult 为 1 时,扫码返回的结果
  999. var resultArr = result.split(',') // 扫描结果以逗号分割数组
  1000. var codeVal = resultArr[resultArr.length - 1] // 获取数组最后一个元素,也就是最终的内容
  1001. resolve(codeVal)
  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. }