学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
350 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. // import addApi from '@/api/add.js'; // 引入
  2. const school = {
  3. state: {
  4. schoolCoach: {},
  5. schoolClass: {}
  6. },
  7. mutations: {
  8. // 更新选择的驾校与教练
  9. upDateSchoolCoach(state, obj) {
  10. state.schoolCoach = obj
  11. },
  12. upDateSchoolClass(state, obj) {
  13. state.schoolClass = obj
  14. },
  15. },
  16. actions: {
  17. }
  18. }
  19. export default school