ddtalk.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import {
  2. getAuthentication,
  3. } from '@/api/dingtalk'
  4. import { waitAuthentication } from '@/utils/dingtalk'
  5. const state = {
  6. // dingdef1d60a96033526a1320dcb25e91351 //客户
  7. // dingf1b2e9ddf9d214e224f2f5cc6abecb85 //自己
  8. apiToken: '', // company api-token
  9. corpId: 'dingdef1d60a96033526a1320dcb25e91351', // 公司 corp id
  10. appId: '', // 微应用ID
  11. timeStamp: '',
  12. nonceStr: '',
  13. signature: ''
  14. }
  15. const mutations = {
  16. UPDATE_CONF (state, payload) {
  17. state.corpId = payload.corpId
  18. state.appId = payload.appId
  19. state.timeStamp = payload.timeStamp
  20. state.nonceStr = payload.nonceStr
  21. state.signature = payload.signature
  22. }
  23. }
  24. const actions = {
  25. // NOTE: 获取授权关键信息
  26. authentication ({ state, commit }, params) {
  27. return new Promise((resolve) => {
  28. if (state.timeStamp && state.nonceStr && state.signature) {
  29. resolve(state)
  30. } else {
  31. getAuthentication(params).then(result => {
  32. if (result.code === 1) {
  33. commit({
  34. type: 'UPDATE_CONF',
  35. ...result.data
  36. })
  37. resolve(result.data)
  38. }
  39. })
  40. }
  41. })
  42. },
  43. // 钉钉 - 鉴权
  44. postWaitAuthentication () {
  45. waitAuthentication({
  46. errorCallback: error => {
  47. console.log('%c WaitAuthentication errorCallback >>>', 'background: blue; color: #fff', error);
  48. },
  49. jsApiList: [
  50. 'biz.contact.departmentsPicker', // 选择部门信息
  51. 'biz.contact.complexPicker', // 选择部门和人
  52. 'biz.contact.choose', // PC端选择企业内部的人
  53. 'biz.util.chooseImage', // 选择图片
  54. // 'biz.util.previewImage', // Preview Image
  55. // 'biz.ding.create', // DING 2.0 发钉
  56. // 'biz.ding.post', // DING 1.0 发钉
  57. ]
  58. })
  59. }
  60. }
  61. export default {
  62. namespaced: true,
  63. state,
  64. mutations,
  65. actions
  66. }