134 lines
7.1 KiB
Vue
134 lines
7.1 KiB
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
<el-card class="!border-none" shadow="never">
|
||
|
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
||
|
<el-form-item label="客户" prop="custom_name">
|
||
|
<el-input class="w-[280px]" v-model="queryParams.custom_name" clearable placeholder="请输入客户昵称" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="项目类型" prop="project_type">
|
||
|
<el-select class="w-[280px]" v-model="queryParams.project_type" clearable placeholder="请选择项目类型">
|
||
|
<el-option label="全部" value=""></el-option>
|
||
|
<el-option v-for="(item, index) in dictData.project_type" :key="index" :label="item.name"
|
||
|
:value="item.value" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
||
|
<el-button @click="resetParams">重置</el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
</el-card>
|
||
|
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
|
||
|
<div class="mt-4">
|
||
|
<!-- <el-table :data="pager.lists" >
|
||
|
<el-table-column label="客户名称" property="name" />
|
||
|
<el-table-column label="客户属性" property="custom_type" />
|
||
|
<el-table-column label="信用度" property="credit_rating" />
|
||
|
<el-table-column label="省" property="province_name" />
|
||
|
<el-table-column label="市" property="city_name" />
|
||
|
<el-table-column label="区" property="street_name" />
|
||
|
<el-table-column label="主联系人" property="master_name" />
|
||
|
<el-table-column label="联系方式" property="master_phone" />
|
||
|
</el-table> -->
|
||
|
<el-table :data="pager.lists" @cell-click="handleCurrentChange">
|
||
|
<el-table-column label="客户" prop="custom_name" show-overflow-tooltip />
|
||
|
<el-table-column label="项目类型" prop="project_type">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.project_type" :value="row.project_type" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="项目编码" prop="project_code" show-overflow-tooltip />
|
||
|
<el-table-column label="项目内容" prop="project_content">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.project_content" :value="row.project_content" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="项目估算" prop="project_estimation" show-overflow-tooltip />
|
||
|
<el-table-column label="项目所在地" prop="project_address" show-overflow-tooltip />
|
||
|
<el-table-column label="预计工期" prop="estimated_construction" show-overflow-tooltip />
|
||
|
<el-table-column label="投标时间" prop="bidding_time">
|
||
|
<template #default="{ row }">
|
||
|
<span>{{ row.bidding_time ? timeFormat(row.bidding_time, 'yyyy-mm-dd hh:MM:ss') : '' }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="招标方式" prop="bidding_method">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.bidding_method" :value="row.bidding_method" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="联系人" prop="contacts" show-overflow-tooltip />
|
||
|
<el-table-column label="联系人职位" prop="position" show-overflow-tooltip />
|
||
|
<el-table-column label="联系电话" prop="telephone" show-overflow-tooltip />
|
||
|
<el-table-column label="联系人部门" prop="department" show-overflow-tooltip />
|
||
|
<el-table-column label="负责人" prop="person" show-overflow-tooltip />
|
||
|
<el-table-column label="关系度" prop="relationship">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.relationship" :value="row.relationship" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="发现时间" prop="discovery_time">
|
||
|
<template #default="{ row }">
|
||
|
<span>{{ row.discovery_time ? timeFormat(row.discovery_time, 'yyyy-mm-dd hh:MM:ss') : ''
|
||
|
}}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
|
||
|
<el-table-column label="战略意义" prop="strategic_significance">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.strategic_significance" :value="row.strategic_significance" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="所属行业" prop="industry">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.industry" :value="row.industry" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="单位性质" prop="unit_nature">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.unit_nature" :value="row.unit_nature" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="状态" prop="status" show-overflow-tooltip />
|
||
|
|
||
|
</el-table>
|
||
|
</div>
|
||
|
<div class="flex justify-end mt-4">
|
||
|
<pagination v-model="pager" @change="getLists" />
|
||
|
</div>
|
||
|
</el-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { usePaging } from "@/hooks/usePaging"
|
||
|
import { useDictData } from "@/hooks/useDictOptions"
|
||
|
import { apiProjectLists } from '@/api/project'
|
||
|
|
||
|
import { defineEmits } from "vue"
|
||
|
import { timeFormat } from '@/utils/util'
|
||
|
|
||
|
// 查询条件
|
||
|
const queryParams = reactive({
|
||
|
custom_name: '',
|
||
|
project_type: ""
|
||
|
});
|
||
|
const { dictData } = useDictData('project_type,project_content,bidding_method,relationship,information_sources,construction_funds_sources,construction_financial_status,construction_recognition,my_construction_recognition,strategic_significance,industry,unit_nature')
|
||
|
|
||
|
|
||
|
// 选中数据
|
||
|
const emits = defineEmits(["customEvent"]);
|
||
|
|
||
|
// 选中数据子父传递
|
||
|
const handleCurrentChange = (value: any) => {
|
||
|
emits("customEvent", value);
|
||
|
};
|
||
|
|
||
|
// 分页相关
|
||
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
||
|
fetchFun: apiProjectLists,
|
||
|
params: queryParams,
|
||
|
|
||
|
});
|
||
|
|
||
|
getLists();
|
||
|
</script>
|