dcc
2024-06-13 cfdf967764dc6747a7b414b33fb993aeede1294d
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!-- 高级认证 -->
<template>
  <div>
    <!-- 状态为1时:已提交申请,未审核, 0:未认证,3:认证失败, 2:认证成功
            未认证或已认证时显示 -->
    <template v-if="identifyStatus != 1">
      <el-dialog
        class="my_security"
        :title="$t('message.user.gaojirenzheng')"
        v-model="visible"
        :close-on-click-modal="false"
        @close="handClose"
        width="480px"
        center
      >
        <!-- 认证成功 -->
        <div v-if="identifyStatus == 2" class="flex-space">
          <p>{{ $t("message.user.gaojirenzheng") }}</p>
          <div>
            <img
              src="@/assets/myImages/icon-image/account-security/success-green.png"
              width="50px"
              height="50px"
            />
            <span class="identify-text">{{
              $t("message.user.yirenzheng")
            }}</span>
          </div>
        </div>
        <!-- 未认证 -->
        <div>
          <!-- 真实姓名带入 -->
          <!-- <div class="label">{{ $t("message.user.zhenshixingming") }}</div>
          <el-input
            v-model="work_place"
            :placeholder="$t('message.user.qsr_nindegongzuodizhi')"
          ></el-input> -->
 
          <div class="label">{{ $t("message.user.gongzuodizhi") }}</div>
          <el-input
            v-model="work_place"
            :placeholder="$t('message.user.qsr_nindegongzuodizhi')"
          ></el-input>
 
          <div class="label label_top">
            {{ $t("message.user.jiatingdizhi") }}
          </div>
          <el-input
            v-model="home_place"
            :placeholder="$t('message.user.qsr_nindejiatingdizhi')"
          ></el-input>
 
          <div class="label label_top">
            {{ $t("message.user.yubenrenguanxi") }}
          </div>
          <el-input
            v-model="relatives_relation"
            :placeholder="$t('message.user.yubenrenguanxibitian')"
          ></el-input>
 
          <div class="label label_top">
            {{ $t("message.user.qinshuxingming") }}
          </div>
          <el-input
            v-model="relatives_name"
            :placeholder="$t('message.user.qsr_qinshuxingmingbitian')"
          ></el-input>
 
          <div class="label label_top">
            {{ $t("message.user.qingshudizhi") }}
          </div>
          <el-input
            v-model="relatives_place"
            :placeholder="$t('message.user.qsr_qinshudizhibitian')"
          ></el-input>
 
          <div class="label label_top">
            {{ $t("message.user.qinshudianhua") }}
          </div>
          <el-input
            v-model="relatives_phone"
            :placeholder="$t('message.user.qsr_qinshudianhuabitian')"
          ></el-input>
 
          <div class="bind_btn">
            <el-button
              type="primary"
              @click="applyBtn"
              v-if="identifyStatus != 2"
              >{{ $t("message.user.shenqingrenzheng") }}</el-button
            >
          </div>
        </div>
      </el-dialog>
    </template>
    <template v-if="identifyStatus == 1">
      <el-dialog
        class="my_security"
        :title="$t('message.user.gaojirenzheng')"
        v-model="visible"
        :close-on-click-modal="false"
        width="480px"
        center
      >
        <div class="text-center">
          <img
            src="@/assets/myImages/icon-image/account-security/success-green.png"
            width="50px"
            height="50px"
          />
          <p style="font-size: 20px">
            <b>{{ $t("message.user.tijiaochenggong") }}</b>
          </p>
          <p>
            {{ $t("message.user.chang14") }}
          </p>
        </div>
        <div class="bind_btn">
          <el-button type="primary" @click="handClose">{{
            $t("message.user.queren")
          }}</el-button>
        </div>
      </el-dialog>
    </template>
  </div>
</template>
<script>
import Axios from "@/api/my.js";
export default {
  emits: ["changeModalShow"],
  props: {
    isShowAdvance: {
      // 弹窗是否展示
      type: Boolean,
      default: false,
    },
  },
  data() {
    return {
      work_place: "",
      home_place: "",
      relatives_relation: "",
      relatives_name: "",
      relatives_place: "",
      relatives_phone: "",
      identifyStatus: "",
    };
  },
  computed: {
    visible: {
      get() {
        return this.isShowAdvance;
      },
      set(val) {
        this.$emit("changeModalShow", false, "isShowAdvance");
      },
    },
  },
  mounted() {
    // if (this.$store.state.token) {
    this.getIdentify();
    // }
  },
  methods: {
    //获取高级认证信息
    getIdentify() {
      Axios.getHighIdentify().then((res) => {
        const {
          status,
          workPlace,
          homePlace,
          relativesRelation,
          relativesName,
          relativesPlace,
          relativesPhone,
        } = res.data || {};
        this.identifyStatus = status;
 
        this.work_place = workPlace;
        this.home_place = homePlace;
        this.relatives_relation = relativesRelation;
        this.relatives_name = relativesName;
        this.relatives_place = relativesPlace;
        this.relatives_phone = relativesPhone;
      });
    },
    //申请认证
    applyBtn() {
      if (
        !this.work_place ||
        !this.home_place ||
        !this.relatives_relation ||
        !this.relatives_name ||
        !this.relatives_place ||
        !this.relatives_phone
      ) {
        ElMessage.warning(this.$t("qsr_wanzhengdexinxi"));
        return;
      }
 
      Axios.applyHigh({
        work_place: this.work_place,
        home_place: this.home_place,
        relatives_relation: this.relatives_relation,
        relatives_name: this.relatives_name,
        relatives_place: this.relatives_place,
        relatives_phone: this.relatives_phone,
      }).then((res) => {
        if (res.code == "0") {
          ElMessage.success(this.$t("message.user.tijiaochenggong"));
          this.handClose();
          this.getIdentify();
        }
      });
    },
    handClose() {
      this.visible = false;
    },
  },
};
</script>
<style scoped>
@import url("@/assets/css/my/security.css");
</style>