随着Web应用程序的发展,我们经常需要处理用户敏感信息,如手机号码和身份证号码。为了保护用户隐私,我们需要在前端对这些信息进行加密处理,以避免直接暴露在页面上。在这篇博客中,我们将介绍如何使用Vue 3.0单文件组件实现对手机号和身份证号部分数字进行加密处理的功能。
问题背景
在许多Web应用程序中,我们需要展示用户的个人信息,如手机号和身份证号。然而,直接将这些信息展示在页面上可能存在安全风险,因此我们需要对其进行加密处理,以保护用户隐私。
组件效果
解决方案概述
我们将通过Vue 3.0单文件组件实现对手机号和身份证号部分数字进行加密处理的功能。具体来说,我们将创建一个组件,接受用户传入的手机号或身份证号,然后根据类型进行加密处理,最终显示加密后的信息。同时,我们还将提供一个眼睛图标,允许用户在需要时切换查看加密前后的信息。
代码展示
<template><p class="show-box" :class="{ 'center': center }"><span class="text" v-show="!showText">{{ replaceText(text) }}</span><span class="text" v-show="showText">{{ text }}</span><el-icon class="eye" v-if="text" @click="showText = !showText"><Hide v-show="showText" /><View v-show="!showText" /></el-icon></p>
</template>
<script setup>
import { View, Hide } from '@element-plus/icons-vue'
const props = defineProps({type: {type: String,default: 'phone'},text: {type: String,default: ''},center: {type: Boolean,default: true},
})
const showText = ref(false)
const replaceText = (v) => {if (v) {if (props.type === 'phone') {return v?.replace(/^(\d{3})\d{4}(\d{4})$/, '$1****$2')}if (props.type === 'identificationNo') {return '***************' + v.slice(-4);}if (props.type === 'email') {return v.replace(/^(.*@)/, function(match) {return match.replace(/./g, '*');});}} else {return '/'}
}
</script>
</script>
<style scoped lang="scss">
.center {justify-content: center;
}.show-box {width: 100%;display: flex;align-items: center;.eye {color: #006ef0;cursor: pointer;margin-left: 4px;}
}
</style>