|
@@ -15,6 +15,7 @@
|
|
|
:offset="14"
|
|
|
>
|
|
|
<el-button
|
|
|
+ v-show="ifUpdate"
|
|
|
type="primary"
|
|
|
:icon="Edit"
|
|
|
@click="basicEditShow"
|
|
@@ -771,13 +772,15 @@ const projectMessage = (code) => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-// 电话加密
|
|
|
+// 加密
|
|
|
+const ifUpdate = ref(false)
|
|
|
const encryptPhone = (phone) => {
|
|
|
if (!phone) {
|
|
|
return ''
|
|
|
}
|
|
|
console.log(information.secondPrincipal === currentUserId.value, phone)
|
|
|
if (information.secondPrincipal === currentUserId.value || currentUserId.value === 6 || currentUserId.value === 7) {
|
|
|
+ ifUpdate.value = true
|
|
|
return phone
|
|
|
}
|
|
|
return phone.substring(0, 3) + '********'
|