services.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. const NET = require('./request')
  2. const API = require('../config/api')
  3. export function Services(shopId) {
  4. let corpId = null; let
  5. serviceURL = null
  6. const getServiceUrl = async () => {
  7. uni.showLoading({
  8. title: '加载中...'
  9. })
  10. const shopIds = uni.getStorageSync('service_shopids') || []
  11. const corpIds = uni.getStorageSync('service_corpIds') || []
  12. const urls = uni.getStorageSync('service_urls') || []
  13. try {
  14. const res = await NET.request(API.CustomerService, { id: shopId }, 'get')
  15. if (res.code === '' && res.data.corpId && res.data.url) {
  16. shopIds.push(shopId)
  17. corpIds.push(res.data.corpId)
  18. urls.push(res.data.url)
  19. uni.setStorageSync('service_shopids', shopIds)
  20. uni.setStorageSync('service_corpIds', corpIds)
  21. uni.setStorageSync('service_urls', urls)
  22. corpId = res.data.corpId
  23. serviceURL = res.data.url
  24. }
  25. } finally {
  26. uni.hideLoading()
  27. }
  28. }
  29. const flyToService = () => {
  30. if (!serviceURL || !corpId) {
  31. return uni.showToast({
  32. icon: 'none',
  33. title: '暂无客服~'
  34. })
  35. }
  36. // #ifdef MP-WEIXIN
  37. wx.openCustomerServiceChat({
  38. extInfo: {
  39. url: serviceURL
  40. },
  41. corpId
  42. })
  43. // #endif
  44. // #ifdef APP
  45. try {
  46. let wechatServices = null
  47. plus.share.getServices((res) => {
  48. wechatServices = res.find((wechatItem) => wechatItem.id === 'weixin')
  49. if (wechatServices) {
  50. wechatServices.openCustomerServiceChat({
  51. corpid: corpId,
  52. url: serviceURL
  53. }, (success) => {
  54. }, (err) => {
  55. })
  56. } else {
  57. plus.nativeUI.alert('当前环境不支持微信操作!')
  58. }
  59. }, (err) => {
  60. console.error(err)
  61. uni.showToast({ title: '获取服务失败,不支持该操作。' + JSON.stringify(err), icon: 'none' })
  62. })
  63. } catch (err) {
  64. console.error(err)
  65. uni.showToast({ title: '调用失败,不支持该操作。' + JSON.stringify(err), icon: 'none' })
  66. }
  67. // #endif
  68. // #ifdef H5
  69. // window.open(serviceURL) safari浏览器不支持window.open
  70. window.location.href = serviceURL
  71. // #endif
  72. }
  73. return getServiceUrl().then((res) => ({
  74. flyToService
  75. }))
  76. }