details.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. performance: [{
  7. name: "《人在江湖》郭德纲 于谦",
  8. year: "2年前",
  9. count: "5601.9万",
  10. time: "34:36"
  11. },
  12. {
  13. name: "《人在江湖》郭德纲 于谦",
  14. year: "2年前",
  15. count: "5601.9万",
  16. time: "34:36"
  17. },
  18. {
  19. name: "《人在江湖》郭德纲 于谦",
  20. year: "2年前",
  21. count: "5601.9万",
  22. time: "34:36"
  23. },
  24. {
  25. name: "《人在江湖》郭德纲 于谦",
  26. year: "2年前",
  27. count: "5601.9万",
  28. time: "34:36"
  29. },
  30. {
  31. name: "《人在江湖》郭德纲 于谦",
  32. year: "2年前",
  33. count: "5601.9万",
  34. time: "34:36"
  35. },
  36. {
  37. name: "《人在江湖》郭德纲 于谦",
  38. year: "2年前",
  39. count: "5601.9万",
  40. time: "34:36"
  41. },
  42. {
  43. name: "《人在江湖》郭德纲 于谦",
  44. year: "2年前",
  45. count: "5601.9万",
  46. time: "34:36"
  47. },
  48. {
  49. name: "《人在江湖》郭德纲 于谦",
  50. year: "2年前",
  51. count: "5601.9万",
  52. time: "34:36"
  53. },
  54. ],
  55. performanceInfo: [],
  56. imgurl: ''
  57. },
  58. onLoad(options) {
  59. this.setData({
  60. performanceInfo: [{
  61. imgurl: options.url + '=5&upload_type=album&device_type=ios&name=medium&magick=png',
  62. title: options.title,
  63. author: "某某某",
  64. num1: "767.6万",
  65. num2: "257"
  66. }],
  67. imgurl: options.url + '=5&upload_type=album&device_type=ios&name=medium&magick=png',
  68. });
  69. }
  70. })