Merge branch 'main' of https://gitea.lihaink.cn/mkm/engineering_admin
This commit is contained in:
commit
b17d1b943d
@ -23,6 +23,15 @@
|
||||
<el-input v-model="queryParams.part_b" clearable placeholder="请输入乙方签约单位" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="合同类型 ">
|
||||
<el-select v-model="queryParams.contract_type" class="flex-1 ">
|
||||
<el-option label="主合同" :value="0"></el-option>
|
||||
<el-option label="框架协议" :value="1"></el-option>
|
||||
<el-option label="补充协议" :value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="业务性质" prop="business_nature">
|
||||
<el-select class="flex-1" v-model="queryParams.business_nature" clearable
|
||||
@ -32,32 +41,6 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="行业性质" prop="industry_nature">
|
||||
<el-select class="flex-1" v-model="queryParams.industry_nature" clearable
|
||||
placeholder="请选择行业性质">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_industry_nature"
|
||||
:key="index" :label="item.name" :value="parseInt(item.value)" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="资金来源" prop="fund_sources">
|
||||
<el-select class="flex-1" v-model="queryParams.fund_sources" clearable
|
||||
placeholder="请选择资金来源">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_fund_sources" :key="index"
|
||||
:label="item.name" :value="parseInt(item.value)" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="建设区域" prop="const_area">
|
||||
<el-select class="flex-1" v-model="queryParams.const_area" clearable placeholder="请选择建设区域">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_const_area" :key="index"
|
||||
:label="item.name" :value="parseInt(item.value)" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||
@ -75,19 +58,13 @@
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column label="合同编号" prop="contract_code" show-overflow-tooltip width="200" />
|
||||
<el-table-column label="合同名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a" show-overflow-tooltip />
|
||||
<el-table-column label="合同类型" prop="contract_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="工程投资" prop="project_money" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="money" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="signed_amount" show-overflow-tooltip />
|
||||
<el-table-column label="签订部门" prop="signed_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="监管部门" prop="supervise_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="项目经理" prop="project_manager_name" show-overflow-tooltip />
|
||||
<el-table-column label="业务性质" prop="business_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="行业性质" prop="industry_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="资金来源" prop="fund_sources_text" show-overflow-tooltip />
|
||||
<el-table-column label="建设区域" prop="const_area_text" 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="操作" fixed="right" width="200" align="center">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['cost_project.cost_approved_project/detail']" link
|
||||
@ -136,6 +113,7 @@ const showDetail = ref(false)
|
||||
const queryParams = reactive({
|
||||
contract_name: '',
|
||||
contract_code: '',
|
||||
contract_type: '',
|
||||
part_a: '',
|
||||
part_b: '',
|
||||
business_nature: '',
|
||||
|
@ -3,15 +3,6 @@
|
||||
<el-card class="!border-none mb-4" shadow="never">
|
||||
<el-form class="mb-[-16px]" :model="queryParams" label-width="80px">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="合同类型" prop="contract_type">
|
||||
<el-select v-model="queryParams.contract_type" class="flex-1">
|
||||
<el-option label="主合同" :value="0"></el-option>
|
||||
<el-option label="框架协议" :value="1"></el-option>
|
||||
<el-option label="补充协议" :value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="合同名称" prop="contract_name">
|
||||
<el-input v-model="queryParams.contract_name" clearable placeholder="请输入合同名称" />
|
||||
@ -25,7 +16,7 @@
|
||||
<el-col :span="6">
|
||||
<el-form-item label="业务性质" prop="business_nature">
|
||||
<el-select class='flex-1' v-model="queryParams.business_nature">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature "
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature "
|
||||
:key="index" :label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@ -33,7 +24,7 @@
|
||||
<el-col :span="6">
|
||||
<el-form-item label="行业性质" prop="industry_nature">
|
||||
<el-select class='flex-1' v-model="queryParams.industry_nature">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_industry_nature "
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_industry_nature "
|
||||
:key="index" :label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@ -41,22 +32,23 @@
|
||||
<el-col :span="6">
|
||||
<el-form-item label="资金来源" prop="fund_sources">
|
||||
<el-select class='flex-1' v-model="queryParams.fund_sources">
|
||||
<el-option v-for="(item, index) in dictData.money_source " :key="index" :label="item.name"
|
||||
:value="parseInt(item.value)"></el-option>
|
||||
<el-option v-for="(item, index) in dictData.money_source " :key="index"
|
||||
:label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="建设区域" prop="const_area">
|
||||
<el-select class='flex-1' v-model="queryParams.const_area">
|
||||
<el-option v-for="(item, index) in dictData.const_area " :key="index" :label="item.name"
|
||||
:value="parseInt(item.value)"></el-option>
|
||||
<el-option v-for="(item, index) in dictData.const_area " :key="index"
|
||||
:label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="签订金额" prop="signed_amount">
|
||||
<el-input v-model="queryParams.signed_amount" clearable placeholder="请输入签订金额" type="number" />
|
||||
<el-input v-model="queryParams.signed_amount" clearable placeholder="请输入签订金额"
|
||||
type="number" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
@ -84,21 +76,22 @@
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column label="合同名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="合同编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="甲方签约单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方签约单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="乙方签约人" prop="part_b_signatory_name" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="业务性质" prop="business_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="行业性质" prop="industry_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="资金来源" prop="fund_sources_text" show-overflow-tooltip />
|
||||
<el-table-column label="建设区域" prop="const_area_text" show-overflow-tooltip />
|
||||
<el-table-column label="工程总投资" prop="project_money" show-overflow-tooltip />
|
||||
<el-table-column label="工程规模及概况" prop="project_scale" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="signed_amount" show-overflow-tooltip />
|
||||
<el-table-column label="合同签订费率" prop="signed_rate" show-overflow-tooltip />
|
||||
<el-table-column label="合同服务工期" prop="service_duration" 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="performance_money" show-overflow-tooltip />
|
||||
<el-table-column label="签订部门" prop="signed_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="签订负责人" prop="signed_head_name" show-overflow-tooltip />
|
||||
<el-table-column label="监管部门" prop="supervise_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="项目经理" prop="project_manager_name" 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="create_time" show-overflow-tooltip />
|
||||
<el-table-column label="审核状态" prop="approve_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="移交状态" prop="review_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="170" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['marketing.marketing_contract/edit']" type="primary" link
|
||||
@ -109,7 +102,8 @@
|
||||
@click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['marketing.marketing_contract/detail']" link @click="handledetail(row)">
|
||||
<el-button v-perms="['marketing.marketing_contract/detail']" link
|
||||
@click="handledetail(row)">
|
||||
详情
|
||||
</el-button>
|
||||
</template>
|
||||
|
@ -2,18 +2,18 @@
|
||||
<div>
|
||||
<el-card class="!border-none mb-4" shadow="never">
|
||||
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
||||
<el-form-item label="合同名称">
|
||||
<el-input class="w-[280px]" v-model="queryParams.contract_name" clearable placeholder="请输入合同名称" />
|
||||
<el-form-item label="协议名称">
|
||||
<el-input class="w-[280px]" v-model="queryParams.contract_name" clearable placeholder="请输入协议名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="协议性质">
|
||||
<el-select class='flex-1' v-model="queryParams.agreement_nature">
|
||||
<el-option v-for="(item, index) in dictData.agreement_nature " :key="index" :label="item.name"
|
||||
<el-option v-for="(item, index) in dictData.agreement_nature " :key="index" :label="item.name"
|
||||
:value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="业务性质">
|
||||
<el-select class='flex-1' v-model="queryParams.business_nature">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature " :key="index"
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature " :key="index"
|
||||
:label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@ -47,17 +47,16 @@
|
||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column label="协议名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="合同编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="甲方签约单位联系人" prop="part_a_contact" show-overflow-tooltip />
|
||||
<el-table-column label="乙方签约单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="协议编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="协议性质" prop="agreement_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="业务性质" prop="business_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="签订部门" prop="signed_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="签订负责人" prop="signed_head_name" show-overflow-tooltip />
|
||||
<el-table-column label="盖章人" prop="seal_user_name" show-overflow-tooltip />
|
||||
<el-table-column label="协议性质" prop="agreement_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="盖章名称" prop="seal_name_text" show-overflow-tooltip />
|
||||
<el-table-column label="是否限制次数" prop="is_limit_text" show-overflow-tooltip />
|
||||
<el-table-column label="文件类型" prop="file_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="签订时间" prop="create_time" show-overflow-tooltip />
|
||||
<el-table-column label="审核状态" prop="approve_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="移交状态" prop="review_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="170" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['marketing.marketing_framework_agreement/edit']" type="primary" link
|
||||
|
@ -13,31 +13,23 @@
|
||||
<el-input v-model="queryParams.contract_code" clearable placeholder="请输入合同编号" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="业务性质">
|
||||
<el-select class='flex-1' v-model="queryParams.business_nature">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature "
|
||||
:key="index" :label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="资金来源">
|
||||
<el-select class='flex-1' v-model="queryParams.fund_sources">
|
||||
<el-option v-for="(item, index) in dictData.money_source " :key="index" :label="item.name"
|
||||
:value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="合同类型 ">
|
||||
<el-select v-model="queryParams.queryParams" class="flex-1 ">
|
||||
<el-select v-model="queryParams.contract_type" class="flex-1 ">
|
||||
<el-option label="主合同" :value="0"></el-option>
|
||||
<el-option label="框架协议" :value="1"></el-option>
|
||||
<el-option label="补充协议" :value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="业务性质">
|
||||
<el-select class='flex-1' v-model="queryParams.business_nature">
|
||||
<el-option v-for="(item, index) in dictData.cost_consultation_business_nature "
|
||||
:key="index" :label="item.name" :value="parseInt(item.value)"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||
@ -56,15 +48,14 @@
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column label="合同名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="合同编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="合同类型" prop="contract_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="signed_amount" show-overflow-tooltip />
|
||||
<el-table-column label="支付方式" prop="payment_method" show-overflow-tooltip />
|
||||
<el-table-column label="签订部门" prop="signed_dept_name" show-overflow-tooltip />
|
||||
<el-table-column label="签订负责人" prop="signed_head_name" show-overflow-tooltip />
|
||||
<el-table-column label="盖章名称" prop="seal_name_text" show-overflow-tooltip />
|
||||
<el-table-column label="是否限制" prop="is_limit_text" show-overflow-tooltip />
|
||||
<el-table-column label="文件类型" prop="file_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="骑缝盖章" prop="plance_seal_text" show-overflow-tooltip />
|
||||
<el-table-column label="合同类型" prop="contract_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="业务性质" prop="business_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="签订时间" prop="create_time" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="120" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['marketing.marketing_contract/edit']" type="primary" link
|
||||
@ -142,4 +133,3 @@ const handleEdit = async (data: any) => {
|
||||
|
||||
getLists()
|
||||
</script>
|
||||
|
||||
|
@ -34,26 +34,25 @@
|
||||
<div class="mt-4">
|
||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column label="合同名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="合同编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="甲方签约单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方签约单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="signed_amount" show-overflow-tooltip />
|
||||
<el-table-column label="协议名称" prop="contract_name" show-overflow-tooltip />
|
||||
<el-table-column label="协议编号" prop="contract_code" show-overflow-tooltip />
|
||||
<el-table-column label="关联主合同" prop="supplementary_agreement_name" show-overflow-tooltip />
|
||||
<el-table-column label="甲方单位" prop="part_a_name" show-overflow-tooltip />
|
||||
<el-table-column label="乙方单位" prop="part_b" show-overflow-tooltip />
|
||||
<el-table-column label="签订金额" prop="signed_amount" show-overflow-tooltip />
|
||||
<el-table-column label="签订负责人" prop="signed_head_name" show-overflow-tooltip />
|
||||
<el-table-column label="盖章人" prop="seal_user_name" show-overflow-tooltip />
|
||||
<el-table-column label="业务性质" prop="business_nature_text" show-overflow-tooltip />
|
||||
<el-table-column label="盖章名称" prop="seal_name_text" show-overflow-tooltip />
|
||||
<el-table-column label="是否限制" prop="is_limit_text" show-overflow-tooltip />
|
||||
<el-table-column label="文件类型" prop="file_type_text" show-overflow-tooltip />
|
||||
<el-table-column label="签订时间" prop="create_time" show-overflow-tooltip />
|
||||
<el-table-column label="审核状态" prop="approve_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="移交状态" prop="review_status_text" show-overflow-tooltip />
|
||||
<el-table-column label="操作" width="170" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button v-perms="['marketing.marketing_supplementary_agreement/edit']" type="primary" link
|
||||
@click="handleEdit(row)">
|
||||
<el-button v-perms="['marketing.marketing_supplementary_agreement/edit']" type="primary"
|
||||
link @click="handleEdit(row)">
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button v-perms="['marketing.marketing_supplementary_agreement/delete']" type="danger" link
|
||||
@click="handleDelete(row.id)">
|
||||
<el-button v-perms="['marketing.marketing_supplementary_agreement/delete']" type="danger"
|
||||
link @click="handleDelete(row.id)">
|
||||
删除
|
||||
</el-button>
|
||||
<el-button v-perms="['marketing.marketing_supplementary_agreement/detail']" link
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user