|
@@ -62,7 +62,7 @@
|
|
|
size="large"
|
|
|
:line-clamp="1"
|
|
|
>
|
|
|
- <b>甲方负责人电话:</b>{{ information.firstPhone }}
|
|
|
+ <b>甲方负责人电话:</b>{{ encryptPhone(information.firstPhone) }}
|
|
|
</el-text>
|
|
|
</el-row>
|
|
|
</el-tab-pane>
|
|
@@ -750,19 +750,19 @@ const projectMessage = (code) => {
|
|
|
data.CreatedAt = formatDate(data.CreatedAt)
|
|
|
data.UpdatedAt = formatDate(data.UpdatedAt)
|
|
|
allowId.push(res.data.secondPrincipal)
|
|
|
- console.log(data)
|
|
|
- const firstPhone = data.firstPhone
|
|
|
- const supervisorPhone = data.supervisorPhone
|
|
|
- let isPower = false
|
|
|
- allowId.forEach(item => {
|
|
|
- if (item === currentUserId.value) {
|
|
|
- isPower = true
|
|
|
- }
|
|
|
- })
|
|
|
- if (!isPower) {
|
|
|
- data.firstPhone = firstPhone.substring(0, 3) + '********'
|
|
|
- data.supervisorPhone = supervisorPhone.substring(0, 3) + '********'
|
|
|
- }
|
|
|
+ // console.log(data)
|
|
|
+ // const firstPhone = data.firstPhone
|
|
|
+ // const supervisorPhone = data.supervisorPhone
|
|
|
+ // let isPower = false
|
|
|
+ // allowId.forEach(item => {
|
|
|
+ // if (item === currentUserId.value) {
|
|
|
+ // isPower = true
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // if (!isPower) {
|
|
|
+ // data.firstPhone = firstPhone.substring(0, 3) + '********'
|
|
|
+ // data.supervisorPhone = supervisorPhone.substring(0, 3) + '********'
|
|
|
+ // }
|
|
|
Object.keys(data).forEach(key => {
|
|
|
information[key] = data[key]
|
|
|
editData[key] = data[key]
|
|
@@ -771,6 +771,17 @@ const projectMessage = (code) => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+// 电话加密
|
|
|
+const encryptPhone = (phone) => {
|
|
|
+ if (!phone) {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
+ console.log(information.secondPrincipal === currentUserId.value, phone)
|
|
|
+ if (information.secondPrincipal === currentUserId.value || currentUserId.value === 6 || currentUserId.value === 7) {
|
|
|
+ return phone
|
|
|
+ }
|
|
|
+ return phone.substring(0, 3) + '********'
|
|
|
+}
|
|
|
|
|
|
// 重置
|
|
|
const resetData = () => {
|