|
@@ -75,7 +75,7 @@
|
|
|
size="large"
|
|
|
:line-clamp="1"
|
|
|
>
|
|
|
- <b>乙方负责人:</b>{{ information.secondPrincipal }}
|
|
|
+ <b>乙方负责人:</b>{{ information.secondPrincipalName }}
|
|
|
</el-text>
|
|
|
</el-row>
|
|
|
<el-row class="mt-10">
|
|
@@ -619,10 +619,11 @@ import OptionEdit from './components/optionEdit.vue'
|
|
|
import { editorData } from '@/pinia/project/project'
|
|
|
import { fileDownload } from '@/api/dailyFile'
|
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
|
+import { useUserStore } from '@/pinia/modules/user'
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
const router = useRouter()
|
|
|
const route = useRoute()
|
|
|
-
|
|
|
+const currentUser = useUserStore()
|
|
|
defineOptions({
|
|
|
name: 'ProjectDetails'
|
|
|
})
|
|
@@ -695,7 +696,6 @@ const information = reactive({})
|
|
|
|
|
|
// 用于编辑的数据
|
|
|
const editData = reactive({})
|
|
|
-
|
|
|
// 项目用户列表
|
|
|
const userList = reactive([])
|
|
|
// 项目文件列表
|
|
@@ -716,9 +716,13 @@ const uploadFileData = ref([])
|
|
|
const stateTypeShow = ref(false)
|
|
|
|
|
|
const currentState = ref('')
|
|
|
-
|
|
|
+// 允许查看手机号的id数组
|
|
|
+const allowId = reactive([1, 6, 7])
|
|
|
+// 当前用户id
|
|
|
+const currentUserId = ref(0)
|
|
|
// 方法
|
|
|
onMounted(() => {
|
|
|
+ currentUserId.value = currentUser.userInfo.ID
|
|
|
projectMessage(route.query.code)
|
|
|
queryFile()
|
|
|
editor.getStateList()
|
|
@@ -737,6 +741,20 @@ const projectMessage = (code) => {
|
|
|
const data = res.data
|
|
|
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) + '********'
|
|
|
+ }
|
|
|
Object.keys(data).forEach(key => {
|
|
|
information[key] = data[key]
|
|
|
editData[key] = data[key]
|