瑶都万能墙
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.

33 lines
422 B

4 months ago
4 months ago
4 months ago
  1. export default {
  2. data() {
  3. return {
  4. sex : {
  5. : {
  6. name : 'man',
  7. color : '#5baaff',
  8. },
  9. : {
  10. name : 'woman',
  11. color : '#ff50b3',
  12. },
  13. },
  14. sexList : [
  15. {
  16. value : '男',
  17. icon : 'man',
  18. actColor : '#5baaff',
  19. },
  20. {
  21. value : '女',
  22. icon : 'woman',
  23. actColor : '#ff50b3',
  24. },
  25. ],
  26. ta : {
  27. : '他',
  28. : '她',
  29. }
  30. }
  31. },
  32. }