mutations.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import * as types from './mutation-types'
  2. import {
  3. SET_COUPONNUM,
  4. SET_DISCOUNTNUM,
  5. SET_GROUPNUM,
  6. SET_NEWPRODUCTNUM,
  7. SET_PRICENUM,
  8. SET_PRODUCTNUM, SET_SPIKENUM, SET_VIPNUM
  9. } from "./mutation-types";
  10. import {couponNum, discountNum, groupNum, newProductNum, priceNum, productNum, spikeNum, vipNum} from "./getter";
  11. const mutations = {
  12. [types.SET_TERMINAL] (state, terminal) {
  13. state.terminal = terminal
  14. },
  15. [types.SET_ACTIVECOMPONENT] (state, activeComponent) {
  16. state.activeComponent = activeComponent
  17. },
  18. [types.SET_COMPONENTSDATA] (state, componentsData) {
  19. state.componentsData = componentsData
  20. },
  21. [types.SET_TYPEID] (state, typeId) {
  22. state.typeId = typeId
  23. },
  24. [types.SET_COUPONNUM] (state) {
  25. state.couponNum = state.couponNum + 1
  26. },
  27. [types.SET_DISCOUNTNUM] (state) {
  28. state.discountNum = state.discountNum + 1
  29. },
  30. [types.SET_GROUPNUM] (state) {
  31. state.groupNum = state.groupNum + 1
  32. },
  33. [types.SET_NEWPRODUCTNUM] (state) {
  34. state.newProductNum = state.newProductNum + 1
  35. },
  36. [types.SET_PRICENUM] (state) {
  37. state.priceNum = state.priceNum + 1
  38. },
  39. [types.SET_PRODUCTNUM] (state) {
  40. state.productNum = state.productNum + 1
  41. },
  42. [types.SET_SPIKENUM] (state) {
  43. state.spikeNum = state.spikeNum + 1
  44. }
  45. }
  46. export default mutations