real-name-authentication.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. (function() {
  2. var dd = dialog({
  3. contentType: 'load',
  4. skin: 'bk-popup',
  5. content: '保存中...'
  6. });
  7. var d = dialog({
  8. contentType: 'load',
  9. skin: 'bk-popup'
  10. });
  11. new Vue({
  12. el: "#app",
  13. data: {
  14. baseInfo:{}
  15. },
  16. mounted:function(){
  17. this.initData();
  18. },
  19. methods: {
  20. initData:function(){
  21. var vm = this;
  22. d.show();
  23. sendPost("/patient/baseinfo", {}, 'JSON', 'post', this.queryFailed, function(res) {
  24. vm.baseInfo = res.data;
  25. if(vm.baseInfo.idcard && vm.baseInfo.idcard.indexOf("WLYY")>-1) {
  26. vm.baseInfo.idcard = ""
  27. }
  28. d.close();
  29. })
  30. },
  31. queryFailed:function(res){
  32. d.close();
  33. if(res && res.msg) {
  34. dialog({
  35. contentType: 'tipsbox',
  36. bottom: true,
  37. skin: 'bk-popup',
  38. content: res.msg
  39. }).show();
  40. } else {
  41. dialog({
  42. contentType: 'tipsbox',
  43. bottom: true,
  44. skin: 'bk-popup',
  45. content: '加载失败'
  46. }).show();
  47. }
  48. },
  49. updateSsc:function(){
  50. var ssc = this.baseInfo.ssc;
  51. var userAgent = window.localStorage.getItem(agentName);
  52. var jsonstr = $.parseJSON(userAgent);
  53. var openid = jsonstr.openid;
  54. window.location.href = "update-ssc.html?openid=" + openid + "&ssc="+ ssc + "&1=1";
  55. },
  56. updateIdcard:function() {
  57. window.location.href = "update-idcard.html?idcard="+vm.baseInfo.idcard;
  58. }
  59. },
  60. })
  61. })()