mutations.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * @Author: zhuangzhou zhuangzhou@btioe.com
  3. * @Date: 2020-01-01 23:30:14
  4. * @LastEditors: zhuangzhou zhuangzhou@btioe.com
  5. * @LastEditTime: 2022-05-04 17:42:52
  6. * @FilePath: /mlmt-mini/src/store/mutations.js
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import * as types from './mutation-types'
  10. import cache from './../utils/cache'
  11. const mutations = {
  12. // [方法名](参数1,参数2...){方法}
  13. [types.SET_THIRD](state, v) {
  14. if (!v) return
  15. state.openId = v.openid
  16. state.sessionKey = v.sessionKey
  17. state.unionId = v.unionid
  18. },
  19. [types.SET_OPEN_ID](state, v) {
  20. state.openId = v
  21. },
  22. [types.SET_SESSION_KEY](state, v) {
  23. state.sessionKey = v
  24. },
  25. [types.SET_UNION_ID](state, v) {
  26. state.unionId = v
  27. },
  28. [types.SET_TOKEN](state, v) {
  29. state.token = v
  30. },
  31. [types.SET_USER_INFO](state, v) {
  32. state.userInfo = v
  33. },
  34. [types.SET_PID](state, v) {
  35. state.pid = v
  36. },
  37. [types.SET_CHANNEL](state, v) {
  38. state.channel = v
  39. },
  40. [types.SET_ADID](state, v) {
  41. state.adid = v
  42. },
  43. [types.SET_CLICKID](state, v) {
  44. state.clickId = v
  45. },
  46. [types.SET_CALLBACK](state, v) {
  47. state.callback = v
  48. },
  49. [types.SET_PAYINFO](state, v) {
  50. console.log(v)
  51. state.payInfo = v
  52. },
  53. [types.LOGIN_OUT](state) {
  54. state.token = null
  55. state.userInfo = null
  56. cache.remove(cache.key.TEMP_TOKEN)
  57. },
  58. [types.SET_SYSTEM_INFO](state, v) {
  59. state.systemInfo = v
  60. state.isIphoneX = v.model.indexOf('iPhone X') != -1
  61. },
  62. [types.SET_LOADING](state, v) {
  63. state.loading = v
  64. },
  65. [types.SET_NOTIFY](state, v) {
  66. state.notify = v
  67. },
  68. [types.SET_PAGE_CONFIG](state, v) {
  69. state.pageConfig = v
  70. },
  71. [types.SET_CLOSE_VIBRATOR](state, v) {
  72. state.closeVibrator = v
  73. },
  74. [types.SET_CLOSE_ANIMAL](state, v) {
  75. state.closeAnimal = v
  76. },
  77. [types.SET_HIDE](state, v) {
  78. state.hide = v
  79. },
  80. [types.SET_SHARE_USERID](state, v) {
  81. state.shareUserId = v
  82. }
  83. }
  84. export default mutations