天波h5前端应用
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.

133 lines
5.1KB

  1. <template>
  2. <div class="active-container" v-show="isPageShow">
  3. <div class="header">
  4. <van-icon name="passed" size="80" color="green" v-if="isActive"/>
  5. <van-icon name="warning-o" size="80" color="red" v-else/>
  6. </div>
  7. <div class="main">
  8. <div class="text success" v-if="isActive">
  9. <p>激活成功,请重启设备,看到连接平台图标后,则可正常使用。</p>
  10. </div>
  11. <div class="text fail" v-else>
  12. <p>电话卡激活失败!请进行实名认证与绑定SIM卡。如您已实名认证,请5分钟后,再进行设备绑定。</p>
  13. </div>
  14. </div>
  15. <van-button type="primary" size="large" @click="onBackHome">返回首页</van-button>
  16. </div>
  17. </template>
  18. <script>
  19. import { isNotNull} from "@/utils/index";
  20. import APIWx from "@/api/wx";
  21. export default {
  22. name:'',
  23. data(){
  24. return {
  25. isPageShow: false,
  26. isActive: null,
  27. }
  28. },
  29. created() {
  30. this.effective();
  31. },
  32. methods: {
  33. // 激活接口
  34. effective() {
  35. this.$toast.loading('激活中,请稍候...');
  36. let reqBody = {
  37. imei: this.$route.query.serialNo,
  38. iccid: this.$route.query.iccid || '',
  39. issue: Number(this.$route.query.issue) || 0
  40. };
  41. APIWx.Effective(reqBody)
  42. .then(res => {
  43. console.log("res", res);
  44. let data = res.data;
  45. console.log("data", data);
  46. this.$toast.clear();
  47. if(data.stateCode !== 1) {
  48. /* this.$dialog.confirm({
  49. title: '温馨提示',
  50. message: `${data.message}`,
  51. showCancelButton: false
  52. }) */
  53. this.isPageShow = true;
  54. this.isActive = false;
  55. } else if(data.stateCode === 0 && data.message !== null) {
  56. /* this.$dialog.confirm({
  57. title: '温馨提示',
  58. message: `电话卡激活失败!请进行实名认证与绑定SIM卡。如您已实名认证,请5分钟后,再进行设备绑定。`,
  59. showCancelButton: false
  60. }) */
  61. this.isPageShow = true;
  62. this.isActive = false;
  63. } else if (data.stateCode === 1 && data.message !== 'ok') {
  64. /* this.$dialog.confirm({
  65. title: "SIM卡激活成功",
  66. message: '卡激活成功,5分钟后则可正常使用。',
  67. showCancelButton: false,
  68. confirmButtonText: '返回首页'}).then(() => {
  69. document.location.replace(" https://xrpt.jiankangtongxue.cn/WCUParentWebUI.WX/Home/")
  70. }); */
  71. this.isPageShow = true;
  72. this.isActive = true;
  73. } else if (data.stateCode === 1 && data.message === 'ok') {
  74. /* this.$dialog.confirm({
  75. title: "SIM卡激活成功",
  76. message: '卡激活成功,5分钟后则可正常使用。',
  77. showCancelButton: false,
  78. confirmButtonText: '返回首页'
  79. }).then(() => {
  80. document.location.replace(" https://xrpt.jiankangtongxue.cn/WCUParentWebUI.WX/Home/")
  81. }); */
  82. this.isPageShow = true;
  83. this.isActive = true;
  84. }
  85. })
  86. .catch(error => {
  87. console.log("出错了:;", error);
  88. this.$dialog.confirm({
  89. title: '温馨提示',
  90. message: `${error.message}`,
  91. showCancelButton: false
  92. })
  93. }).finally(() => {
  94. this.$toast.clear();
  95. })
  96. },
  97. onBackHome() {
  98. document.location.replace(" https://xrpt.jiankangtongxue.cn/WCUParentWebUI.WX/Home/")
  99. }
  100. }
  101. }
  102. </script>
  103. <style scoped lang="scss">
  104. .active-container {
  105. height: 100vh;
  106. padding: 40px 60px;
  107. .header {
  108. padding: 10px 0;
  109. @include center();
  110. }
  111. .main {
  112. width: 100%;
  113. padding: 10px 0;
  114. display: flex;
  115. justify-content: flex-start;
  116. align-items: flex-start;
  117. flex-direction: column;
  118. .text, p {
  119. width: 100%;
  120. font-size: 16px;
  121. text-align: left;
  122. letter-spacing: 1px;
  123. font-weight: 500;
  124. }
  125. }
  126. .van-button {
  127. margin-top: 20px;
  128. }
  129. }
  130. </style>