order.js 302 B

12345678910111213141516
  1. export default {
  2. namespaced: true,
  3. state: {
  4. order_list: null,
  5. skip_order_type: {},
  6. },
  7. mutations: {
  8. // 获取订单信息
  9. GET_ORDER_LIST(state, value) {
  10. state.order_list = value;
  11. },
  12. GET_ORDER_TYPE(state, value) {
  13. state.skip_order_type = value;
  14. },
  15. },
  16. };