index.js 321B

1234567891011121314151617181920
  1. export default {
  2. namespaced: true,
  3. state: {
  4. caseList: [{
  5. value: '0',
  6. label: '案场1'
  7. }, {
  8. value: '1',
  9. label: '案场2'
  10. }, {
  11. value: '2',
  12. label: '案场3'
  13. }, {
  14. value: '',
  15. label: '不限'
  16. }],
  17. },
  18. mutations: {},
  19. actions: {},
  20. }