add
This commit is contained in:
parent
1590c0d313
commit
d6b518a538
@ -22,20 +22,15 @@ const detailConfig = {
|
||||
value: "send_company"
|
||||
},
|
||||
{
|
||||
label: "发文人",
|
||||
value: "send_user"
|
||||
},
|
||||
{
|
||||
label: "签收人",
|
||||
label: "收文人",
|
||||
value: "accept_user"
|
||||
}, {
|
||||
label: "收文日期",
|
||||
value: "accept_date"
|
||||
},
|
||||
{
|
||||
label: "创建人",
|
||||
value: "create_user"
|
||||
},
|
||||
{
|
||||
label: "创建时间",
|
||||
value: "create_time"
|
||||
label: "传阅人",
|
||||
value: "read_user"
|
||||
},
|
||||
{
|
||||
label: "备注",
|
||||
|
@ -37,7 +37,7 @@
|
||||
<el-table-column label="发文日期" prop="send_date" show-overflow-tooltip />
|
||||
<el-table-column label="收文人" prop="accept_user" show-overflow-tooltip />
|
||||
<el-table-column label="收文日期" prop="accept_date" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_communication.manage_accept_doc/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
@ -47,6 +47,10 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_communication.manage_accept_doc/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -56,6 +60,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -66,10 +72,14 @@ import { apiManageAcceptDocLists, apiManageAcceptDocDelete, apiManageAcceptDocDe
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
const showDetail = ref(false)
|
||||
|
||||
|
||||
// 查询条件
|
||||
@ -118,6 +128,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiManageAcceptDocDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageAcceptDocDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
@ -38,7 +38,7 @@
|
||||
<el-table-column label="图纸号" prop="drawing_number" show-overflow-tooltip />
|
||||
<el-table-column label="变更及洽商概述" prop="overview" show-overflow-tooltip />
|
||||
<el-table-column label="监理签认情况" prop="sign_info" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_invest.manage_engineering_changes/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
@ -48,6 +48,10 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_invest.manage_engineering_changes/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -57,6 +61,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -67,11 +73,14 @@ import { apiManageEngineeringChangesLists, apiManageEngineeringChangesDelete, ap
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -119,6 +128,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiManageEngineeringChangesDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageEngineeringChangesDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
@ -1,5 +1,5 @@
|
||||
const detailConfig = {
|
||||
title: "项目管理--工程变更",
|
||||
title: "项目管理--项目信息上报",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
@ -19,7 +19,7 @@ const detailConfig = {
|
||||
},
|
||||
{
|
||||
label: "信息类别",
|
||||
value: "info_cate"
|
||||
value: "info_cate_text"
|
||||
},
|
||||
{
|
||||
label: "信息内容",
|
||||
|
@ -40,7 +40,7 @@
|
||||
<el-table-column label="严重程度" prop="severity_text" show-overflow-tooltip />
|
||||
<el-table-column label="信息类别" prop="info_cate_text" show-overflow-tooltip />
|
||||
<el-table-column label="主送人" prop="giver" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_communication.manage_info_report/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
@ -50,6 +50,10 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_communication.manage_info_report/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -59,6 +63,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -69,10 +75,15 @@ import { apiManageInfoReportLists, apiManageInfoReportDelete, apiManageInfoRepor
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
const showDetail = ref(false)
|
||||
|
||||
|
||||
|
||||
// 查询条件
|
||||
@ -122,5 +133,13 @@ const handleDelete = async (id: number | any[]) => {
|
||||
getLists()
|
||||
}
|
||||
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageInfoReportDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
getLists()
|
||||
</script>
|
||||
|
@ -35,7 +35,7 @@
|
||||
<el-table-column label="本月支付(万元)" prop="month_pay" show-overflow-tooltip />
|
||||
<el-table-column label="累计支付(万元)" prop="total_pay" show-overflow-tooltip />
|
||||
<el-table-column label="填报人" prop="create_user" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_invest.manage_metered_payment/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
@ -45,6 +45,10 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_invest.manage_metered_payment/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -54,6 +58,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -64,11 +70,14 @@ import { apiManageMeteredPaymentLists, apiManageMeteredPaymentDelete, apiManageM
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -115,6 +124,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiManageMeteredPaymentDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageMeteredPaymentDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
@ -33,7 +33,7 @@
|
||||
<el-table-column label="存在问题" prop="problem" show-overflow-tooltip />
|
||||
<el-table-column label="进度描述" prop="desc" show-overflow-tooltip />
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_progress.manage_monthly_progress_report/edit']" type="primary"
|
||||
link @click="handleEdit(row)">
|
||||
@ -43,6 +43,10 @@
|
||||
link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_progress.manage_monthly_progress_report/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -52,6 +56,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -62,11 +68,14 @@ import { apiManageMonthlyProgressReportLists, apiManageMonthlyProgressReportDele
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -112,6 +121,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiManageMonthlyProgressReportDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageMonthlyProgressReportDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
@ -1,5 +1,5 @@
|
||||
const detailConfig = {
|
||||
title: "项目管理--项目信息",
|
||||
title: "项目管理--发文管理",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
@ -29,14 +29,6 @@ const detailConfig = {
|
||||
label: "签收人",
|
||||
value: "accept_user"
|
||||
},
|
||||
{
|
||||
label: "创建人",
|
||||
value: "create_user"
|
||||
},
|
||||
{
|
||||
label: "创建时间",
|
||||
value: "create_time"
|
||||
},
|
||||
{
|
||||
label: "备注",
|
||||
value: "remark",
|
||||
|
@ -42,7 +42,7 @@
|
||||
<el-table-column label="发文人" prop="send_user" show-overflow-tooltip />
|
||||
<el-table-column label="签收人" prop="accept_user" show-overflow-tooltip />
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" width="150" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['manage_communication.manage_send_doc/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
@ -52,6 +52,10 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['manage_communication.manage_send_doc/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -61,6 +65,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -71,11 +77,14 @@ import { apiManageSendDocLists, apiManageSendDocDelete, apiManageSendDocDetail }
|
||||
import { apiManageProjectSearch } from '@/api/manage_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -124,6 +133,15 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiManageSendDocDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiManageSendDocDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
36
src/views/supervision_project_acceptance_report/detail.js
Normal file
36
src/views/supervision_project_acceptance_report/detail.js
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
const detailConfig = {
|
||||
title: "工程监理--项目验收报告",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
value: "project_name"
|
||||
},
|
||||
{
|
||||
label: "文档名称",
|
||||
value: "title"
|
||||
},
|
||||
{
|
||||
label: "文档简介",
|
||||
value: "content"
|
||||
},
|
||||
|
||||
{
|
||||
label: "创建人",
|
||||
value: "create_user"
|
||||
},
|
||||
{
|
||||
label: "创建时间",
|
||||
value: "create_time"
|
||||
},
|
||||
{
|
||||
label: "附件",
|
||||
value: "annex",
|
||||
column: 1
|
||||
|
||||
},
|
||||
|
||||
],
|
||||
|
||||
}
|
||||
export default detailConfig;
|
@ -32,7 +32,7 @@
|
||||
<el-table-column label="项目名称" prop="project_name" show-overflow-tooltip />
|
||||
<el-table-column label="文档名称" prop="title" show-overflow-tooltip />
|
||||
<el-table-column label="文档简介" prop="content" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['supervision_ending.supervision_project_acceptance_report/edit']"
|
||||
@ -43,6 +43,10 @@
|
||||
type="danger" link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['supervision_ending.supervision_project_acceptance_report/detail']"
|
||||
link @click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -52,6 +56,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -62,10 +68,14 @@ import { apiSupervisionProjectAcceptanceReportLists, apiSupervisionProjectAccept
|
||||
import { apiSupervisionProjectSearch } from '@/api/supervision_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
const showDetail = ref(false)
|
||||
|
||||
|
||||
// 查询条件
|
||||
@ -114,5 +124,13 @@ const handleDelete = async (id: number | any[]) => {
|
||||
getLists()
|
||||
}
|
||||
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiSupervisionProjectAcceptanceReportDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
getLists()
|
||||
</script>
|
||||
|
48
src/views/supervision_project_data_archiving/detail.js
Normal file
48
src/views/supervision_project_data_archiving/detail.js
Normal file
@ -0,0 +1,48 @@
|
||||
|
||||
|
||||
import { apisupervision_project_data_archiving_detail, } from '@/api/supervision_project_data_archiving'
|
||||
|
||||
const detailConfig = {
|
||||
title: "工程监理--项目竣工资料归档",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
value: "project_name"
|
||||
},
|
||||
{
|
||||
label: "项目总监意见",
|
||||
value: "opinion"
|
||||
},
|
||||
{
|
||||
label: "备注",
|
||||
value: "remark",
|
||||
column: 1
|
||||
|
||||
},
|
||||
|
||||
],
|
||||
table: {
|
||||
title: "资料归档目录",
|
||||
tableConfig: [
|
||||
{
|
||||
label: "监理项目竣工资料归档目录",
|
||||
value: 'data_catalog'
|
||||
|
||||
},
|
||||
{
|
||||
label: "项目部提交资料(份数)",
|
||||
value: 'submit_by_project_dept'
|
||||
|
||||
},
|
||||
{
|
||||
label: "生产管理部核实情况(份数)",
|
||||
value: 'submit_by_production_dept'
|
||||
},
|
||||
|
||||
],
|
||||
fetchFun: apisupervision_project_data_archiving_detail,
|
||||
query: 'data_archiving_id'
|
||||
}
|
||||
|
||||
}
|
||||
export default detailConfig;
|
@ -33,7 +33,7 @@
|
||||
<el-table-column label="项目总监意见" prop="opinion" show-overflow-tooltip />
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
||||
<el-table-column label="" prop="create_user" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['supervision_ending.supervision_project_data_archiving/edit']"
|
||||
@ -44,6 +44,10 @@
|
||||
type="danger" link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['supervision_ending.supervision_project_data_archiving/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -53,6 +57,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -63,11 +69,14 @@ import { apiSupervisionProjectDataArchivingLists, apiSupervisionProjectDataArchi
|
||||
import { apiSupervisionProjectSearch } from '@/api/supervision_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -115,5 +124,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
getLists()
|
||||
}
|
||||
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiSupervisionProjectDataArchivingDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
36
src/views/supervision_project_owner_evaluation/detail.js
Normal file
36
src/views/supervision_project_owner_evaluation/detail.js
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
const detailConfig = {
|
||||
title: "工程监理--业主评价",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
value: "project_name"
|
||||
},
|
||||
{
|
||||
label: "文档名称",
|
||||
value: "title"
|
||||
},
|
||||
{
|
||||
label: "文档简介",
|
||||
value: "content"
|
||||
},
|
||||
|
||||
{
|
||||
label: "创建人",
|
||||
value: "create_user"
|
||||
},
|
||||
{
|
||||
label: "创建时间",
|
||||
value: "create_time"
|
||||
},
|
||||
{
|
||||
label: "附件",
|
||||
value: "annex",
|
||||
column: 1
|
||||
|
||||
},
|
||||
|
||||
],
|
||||
|
||||
}
|
||||
export default detailConfig;
|
@ -32,7 +32,7 @@
|
||||
<el-table-column label="项目名称" prop="project_name" show-overflow-tooltip />
|
||||
<el-table-column label="文档名称" prop="title" show-overflow-tooltip />
|
||||
<el-table-column label="文档简介" prop="content" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['supervision_ending.supervision_project_owner_evaluation/edit']"
|
||||
@ -43,6 +43,10 @@
|
||||
type="danger" link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['supervision_ending.supervision_project_owner_evaluation/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -52,6 +56,8 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -62,11 +68,14 @@ import { apiSupervisionProjectOwnerEvaluationLists, apiSupervisionProjectOwnerEv
|
||||
import { apiSupervisionProjectSearch } from '@/api/supervision_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -113,6 +122,13 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiSupervisionProjectOwnerEvaluationDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiSupervisionProjectOwnerEvaluationDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
getLists()
|
||||
</script>
|
||||
|
40
src/views/supervision_project_personnel/detail.js
Normal file
40
src/views/supervision_project_personnel/detail.js
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
const detailConfig = {
|
||||
title: "工程监理--人员管理明细",
|
||||
config: [
|
||||
{
|
||||
label: "项目名称",
|
||||
value: "project_name"
|
||||
},
|
||||
{
|
||||
label: "姓名",
|
||||
value: "name"
|
||||
},
|
||||
{
|
||||
label: "部门",
|
||||
value: "dept"
|
||||
},
|
||||
{
|
||||
label: "项目调入时间",
|
||||
value: "start_time"
|
||||
},
|
||||
{
|
||||
label: "项目调出时间",
|
||||
value: "end_time"
|
||||
},
|
||||
{
|
||||
label: "负责岗位",
|
||||
value: "job"
|
||||
},
|
||||
|
||||
{
|
||||
label: "备注",
|
||||
value: "remark",
|
||||
column: 1
|
||||
|
||||
},
|
||||
|
||||
],
|
||||
|
||||
}
|
||||
export default detailConfig;
|
@ -42,7 +42,7 @@
|
||||
<el-table-column label="项目调出时间" prop="end_time" show-overflow-tooltip />
|
||||
<el-table-column label="负责岗位" prop="job" show-overflow-tooltip />
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<el-table-column label="操作" align="center" fixed="right">
|
||||
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['supervision_team.supervision_project_personnel/edit']" type="primary"
|
||||
@ -53,6 +53,10 @@
|
||||
link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['supervision_team.supervision_project_personnel/detail']" link
|
||||
@click="handleDetail(row.id)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -62,21 +66,26 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig"
|
||||
:column="1" width="550px" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="supervisionProjectPersonnelLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiSupervisionProjectPersonnelLists, apiSupervisionProjectPersonnelDelete } from '@/api/supervision_project_personnel'
|
||||
import { apiSupervisionProjectPersonnelLists, apiSupervisionProjectPersonnelDelete, apiSupervisionProjectPersonnelDetail } from '@/api/supervision_project_personnel'
|
||||
import { apiSupervisionProjectSearch } from '@/api/supervision_project'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailConfig from './detail'
|
||||
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
const detailRef = ref('')
|
||||
// 是否显示编辑框
|
||||
const showEdit = ref(false)
|
||||
|
||||
const showDetail = ref(false)
|
||||
|
||||
// 查询条件
|
||||
const queryParams = reactive({
|
||||
@ -124,6 +133,14 @@ const handleDelete = async (id: number | any[]) => {
|
||||
await apiSupervisionProjectPersonnelDelete({ id })
|
||||
getLists()
|
||||
}
|
||||
// 详情
|
||||
const handleDetail = async (id: any) => {
|
||||
let res = await apiSupervisionProjectPersonnelDetail({ id })
|
||||
showDetail.value = true
|
||||
await nextTick()
|
||||
detailRef.value?.open()
|
||||
detailRef.value?.setFormData(res)
|
||||
}
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
Loading…
x
Reference in New Issue
Block a user