listdetaile.js 320 B

12345678910
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page, param) {
  5. $page.find('.lr-listdetaile-page-title').html(param.f_title);
  6. $page.find('.lr-listdetaile-page-content').html($('<div></div>').html(param.f_content).text());
  7. }
  8. };
  9. return page;
  10. })();