瀏覽代碼

信息限制

xu 7 月之前
父節點
當前提交
5c64129cee
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      web/src/view/projectManage/projectDetails/projectDetails.vue

+ 4 - 1
web/src/view/projectManage/projectDetails/projectDetails.vue

@@ -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) + '********'