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.

contactInfo.js 589 B

4 years ago
1234567891011121314151617
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page) {
  5. // 获取登录者信息
  6. var userinfo = learun.storage.get('userinfo');
  7. var baseinfo = userinfo.baseinfo;
  8. $page.find('.mobile').text(baseinfo.mobile || '');
  9. $page.find('.telephone').text(baseinfo.telephone || '');
  10. $page.find('.email').text(baseinfo.email || '');
  11. $page.find('.weChat').text(baseinfo.weChat || '');
  12. $page.find('.oICQ').text(baseinfo.oICQ || '');
  13. }
  14. };
  15. return page;
  16. })();