多租户商城-商户小程序端
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.

35 lines
522 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import api from '../../config/api'
  2. import { funMixin } from '../../config/mixin'
  3. export const commonMixin = {
  4. name: 'headerComponent',
  5. mixins: [funMixin],
  6. props: {
  7. terminal: {
  8. type: Number,
  9. default: 4,
  10. },
  11. typeId: {
  12. type: Number,
  13. default: 1,
  14. },
  15. shopId: {
  16. type: Number,
  17. default: 0,
  18. },
  19. componentContent: {
  20. type: Object,
  21. },
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. mounted() {
  28. this.getData()
  29. },
  30. methods: {
  31. getData() {
  32. },
  33. },
  34. }