update
This commit is contained in:
parent
64c8269476
commit
2889f9f03c
@ -21,8 +21,8 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="项目负责人" prop="head">
|
||||
<el-input v-model="formData.head" clearable placeholder="请输入项目负责人" />
|
||||
<el-form-item label="项目负责人" prop="project_director">
|
||||
<el-input v-model="formData.project_director" clearable placeholder="项目负责人" readonly />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
@ -210,10 +210,6 @@ import { apiTaskAllocationAdd, apiTaskAllocationEdit, } from '@/api/task_allocat
|
||||
import { cost_project, task_type } from "@/components/dialogTable/dialogTableConfig"
|
||||
import type { PropType } from 'vue'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
const userStore = useUserStore().userInfo;
|
||||
|
||||
|
||||
|
||||
defineProps({
|
||||
dictData: {
|
||||
@ -231,15 +227,6 @@ const showDialog1 = ref(false)
|
||||
const showDialog3 = ref(false)
|
||||
const personnel = ref<any>()
|
||||
|
||||
const handleAvatarSuccess_four = (response: any) => {
|
||||
formData.annex ||= []
|
||||
// @ts-ignore
|
||||
response.code != 0 ? formData.annex.push({ uri: response.data.uri, name: response.data.name }) : ElMessage.error(response.msg);
|
||||
};
|
||||
|
||||
// 删除上传的文件
|
||||
const delFileFn = (index: number) => { formData.annex.splice(index, 1) }
|
||||
|
||||
// 弹窗标题
|
||||
const popupTitle = computed(() => {
|
||||
return mode.value == 'edit' ? '编辑任务分配' : '新增任务分配'
|
||||
@ -253,7 +240,7 @@ const formData = reactive({
|
||||
project_id: '',
|
||||
project_name: "",
|
||||
project_num: '',
|
||||
head: userStore.account,
|
||||
project_director: '',
|
||||
apptime: timeFormat('', 'yyyy-mm-dd'),
|
||||
annex: [],
|
||||
task_detail: [],
|
||||
@ -302,6 +289,7 @@ const customEvent = (e) => {
|
||||
formData.project_id = e.id
|
||||
formData.project_name = e.project_name
|
||||
formData.project_num = e.project_num
|
||||
formData.project_director = e.contract.project_director
|
||||
showDialog.value = false
|
||||
}
|
||||
|
||||
|
@ -31,47 +31,10 @@
|
||||
</el-button>
|
||||
<div class="mt-4">
|
||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" />
|
||||
<!-- <el-table-column type="expand">
|
||||
<template #default="props">
|
||||
<div style="width: 95%;margin: 0 auto;">
|
||||
<el-table :data="props.row.children">
|
||||
<el-table-column label="任务名称" prop="taskTypeInfo.name" show-overflow-tooltip />
|
||||
<el-table-column label="工序" prop="process" show-overflow-tooltip />
|
||||
<el-table-column label="任务类型" prop="task_type_id">
|
||||
<template #default="{ row }">
|
||||
<dict-value :options="dictData.task_type" :value="row.task_type_id" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="专业类型" prop="professional_type">
|
||||
<template #default="{ row }">
|
||||
<dict-value :options="dictData.major_type" :value="row.professional_type" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="工程师" prop="engineer" show-overflow-tooltip />
|
||||
<el-table-column label="任务级次" prop="level" show-overflow-tooltip />
|
||||
<el-table-column label="一级审核人" prop="first_reviewer" show-overflow-tooltip />
|
||||
<el-table-column label="二级审核人" prop="secondary_reviewer" show-overflow-tooltip />
|
||||
<el-table-column label="三级审核人" prop="third_level_reviewer" show-overflow-tooltip />
|
||||
<el-table-column label="中标金额(元)" prop="bid_winning_amount" show-overflow-tooltip />
|
||||
<el-table-column label="送审造价(元)" prop="cost" show-overflow-tooltip />
|
||||
<el-table-column label="第三方核定金额(元)" prop="approved_amount" show-overflow-tooltip />
|
||||
<el-table-column label="施工单位" prop="construction_unit" show-overflow-tooltip />
|
||||
<el-table-column label="施工单位id" prop="construction_unit_id" show-overflow-tooltip />
|
||||
<el-table-column label="联系人" prop="contact" show-overflow-tooltip />
|
||||
<el-table-column label="联系电话" prop="contact_phone" show-overflow-tooltip />
|
||||
<el-table-column label="天数" prop="days" show-overflow-tooltip />
|
||||
<el-table-column label="开始日期" prop="start_date" show-overflow-tooltip />
|
||||
<el-table-column label="结束日期" prop="end_date" show-overflow-tooltip />
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
||||
</el-table>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<el-table-column label="单据编号" prop="num" show-overflow-tooltip />
|
||||
<el-table-column label="项目名称" prop="projectInfo.project_name" show-overflow-tooltip />
|
||||
<el-table-column label="项目编号" prop="projectInfo.project_num" show-overflow-tooltip />
|
||||
<el-table-column label="项目负责人" prop="projectInfo.principal" show-overflow-tooltip />
|
||||
<el-table-column label="项目负责人" prop="project_director" show-overflow-tooltip />
|
||||
<el-table-column label="登记日期" prop="apptime" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<template #default="{ row }">
|
||||
|
Loading…
x
Reference in New Issue
Block a user