zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<template>
  <el-dialog title="客户信息认证结果" center :visible.sync="showAuthResult" width="400px" :close-on-click-modal='false' @close="closeDialog">
    <ul class="AuthResults">
      <li>
        <span>运营商认证</span>
        <span>{{AuthResults.carrierStateDesc}}</span>
      </li>
      <li>
        <span>淘宝认证</span>
        <span>{{AuthResults.taobaoStateDesc}}</span>
      </li>
      <li>
        <span>京东认证</span>
        <span>{{AuthResults.jdStateDesc}}</span>
      </li>
      <li>
        <span>学信网学历认证</span>
        <span>{{AuthResults.chiscStateDesc}}</span>
      </li>
    </ul>
  </el-dialog>
</template>
<script>
import {
  qryAuthStatus
} from "@/api/product";
import QRCode from 'qrcodejs2'
import { setStorage, getStorage } from "@/utils/storage";
export default {
  props: ['visible'],
  data () {
    return {
      applyInfo:this.$store.state.product.applyInfo,
      AuthResults:{},
    }
  },
  computed: {
    showAuthResult:{
      get(){
        return this.visible
      },
      set(){}
    }
  },
  created () {
    this.getAuthStatus()
  },
  methods: {
    getAuthStatus(){
      qryAuthStatus({
        applySerialno:this.applyInfo.serialNo,
        customerId:this.applyInfo.customerid
      }).then(res=>{
        if(res.code=='00'){
          this.AuthResults = res.result
        }
      })
    },
    closeDialog(){
      this.$emit('closeAuthResult',false)
    }
  }
}
</script>
<style lang="stylus">
.AuthResults
  li
    display flex
    justify-content space-between
    padding-bottom 20px
</style>