瀏覽代碼

收入分析

2545307760@qq.com 7 月之前
父節點
當前提交
06a1174123

+ 14 - 0
web/src/view/finance/chart/chart.vue

@@ -0,0 +1,14 @@
+<template>
+  <div>
+  </div>
+</template>
+
+<script setup>
+defineOptions({
+  name: 'Chart'
+})
+</script>
+
+<style scoped>
+
+</style>

+ 44 - 8
web/src/view/projectManage/projectApproval/projectApproval.vue

@@ -135,10 +135,25 @@
                     label="乙方负责人"
                     size="large"
                   >
-                    <el-input
-                      v-model="condition.secondPrincipal"
-                      placeholder="请输入乙方负责人名称"
-                    />
+                    <el-select
+                      v-model="secondUser"
+                      placeholder="请选择人员名称"
+                      clearable
+                      filterable
+                      @change="changeSecond"
+                      @clear="clearPeopleSelect"
+                    >
+                      <el-option
+                        v-for="item in userList"
+                        :key="item.ID"
+                        :label="item.nickName"
+                        :value="item.ID"
+                      />
+                    </el-select>
+                    <!--                    <el-input-->
+                    <!--                      v-model="condition.secondPrincipal"-->
+                    <!--                      placeholder="请输入乙方负责人名称"-->
+                    <!--                    />-->
                   </el-form-item>
                 </el-col>
                 <el-col
@@ -337,19 +352,41 @@
 </template>
 
 <script setup>
-import { reactive, ref } from 'vue'
+import { reactive, ref, onMounted } from 'vue'
 import { Document } from '@element-plus/icons-vue'
 import { ElMessage } from 'element-plus'
 import sign from '@/assets/sign.png'
 import { createProject } from '@/api/project'
 import moment from 'moment/moment'
 import { useRouter } from 'vue-router'
+import { getAllUsers } from '@/api/user'
 const router = useRouter()
 
 defineOptions({
   name: 'ProjectApproval'
 })
-
+// 项目用户列表
+const userList = reactive([])
+const secondUser = ref('')
+onMounted(() => {
+  getAllUsers().then(res => {
+    if (res.code === 0) {
+      userList.push(...res.data)
+    }
+  })
+})
+const clearPeopleSelect = () => {
+  condition.Principal = 0
+  secondUser.value = ''
+}
+const changeSecond = (val) => {
+  condition.Principal = val
+  userList.forEach(item => {
+    if (item.ID === val) {
+      secondUser.value = item.nickName
+    }
+  })
+}
 // 数据
 const condition = reactive({
   code: '', // 项目编号
@@ -358,7 +395,7 @@ const condition = reactive({
   firstPrincipal: '', // 甲方负责人
   firstPhone: '', // 甲方电话
   projectPrice: 0, // 合同金额
-  secondPrincipal: '', // 乙方负责人
+  Principal: 0, // 乙方负责人
   signTime: '', // 合同签订日期
   intoConstructionTime: '', // 进场施工时间
   completedTime: '', // 竣工时间
@@ -405,7 +442,6 @@ const nextPage = () => {
     }
     infoSteps.value += 1
   }
-  infoSteps.value += 1
 }
 
 // 附属文件

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

@@ -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]