zyh_card.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // components/zyh_card/zyh_card.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. // 预约时间-label
  8. labelTitle: {
  9. type: String,
  10. value: "预约时间"
  11. },
  12. // 预约时间-value
  13. valueTitle: {
  14. type: String,
  15. value: "****-**-** **:**-**:**"
  16. },
  17. // 姓名
  18. labelName: {
  19. type: String,
  20. value: "***"
  21. },
  22. // 手机号
  23. labelPhone: {
  24. type: String,
  25. value: "***********"
  26. },
  27. // 预约编号-label
  28. labelCode: {
  29. type: String,
  30. value: "预约编号:"
  31. },
  32. // 预约编号-value
  33. valueCode: {
  34. type: String,
  35. value: "**********"
  36. },
  37. // 照片-src
  38. labelPhoto: {
  39. type: String,
  40. value: "../../static/comment/avator_no.png"
  41. }
  42. },
  43. /**
  44. * 组件的初始数据
  45. */
  46. data: {},
  47. /**
  48. * 组件的方法列表
  49. */
  50. methods: {}
  51. });