| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <template>
- <div class="h-full flex">
- <div class="p-5 w-80 pr-0">
- <div class="bg-white w-full h-full shadow-md rounded-md flex flex-col">
- <div class="flex-1 p-3 overflow-y-auto">
- <el-form :model="customerCriteriaForm" label-width="70px" style="max-width: 600px">
- <el-form-item label="客户名称">
- <el-input v-model="customerCriteriaForm.customName" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="客户来源">
- <el-select v-model="customerCriteriaForm.customSourceId" placeholder="请选择">
- <el-option v-for="item in fixedData.ClueSources" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="电话号码">
- <el-input v-model="customerCriteriaForm.telPhone" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="邮箱">
- <el-input v-model="customerCriteriaForm.email" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="客户行业">
- <el-select v-model="customerCriteriaForm.customerIndustryId" placeholder="请选择">
- <el-option v-for="item in fixedData.CustomIndustry" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="客户级别">
- <el-select v-model="customerCriteriaForm.customerLevelId" placeholder="请选择">
- <el-option v-for="item in fixedData.CustomLevel" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="负责人">
- <el-select v-model="customerCriteriaForm.inchargerId" placeholder="请选择">
- <el-option v-for="item in fixedData.Personnel" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="创建时间">
- <el-date-picker v-model="customerCriteriaForm.startTime" type="date" placeholder="请选择" :clearable="false"
- format="YYYY-MM-DD" value-format="YYYY-MM-DD" />
- </el-form-item>
- <el-form-item label="">
- <el-date-picker v-model="customerCriteriaForm.endTime" type="date" placeholder="请选择" :clearable="false"
- format="YYYY-MM-DD" value-format="YYYY-MM-DD" />
- </el-form-item>
- </el-form>
- </div>
- <div class="w-full flex p-3 shadow-[0_-3px_5px_0px_rgba(0,0,0,0.2)]">
- <El-button class="w-full" @click="resetTable()">重置</El-Button>
- <El-button type="primary" class="w-full" @click="searchTable()">搜索</El-Button>
- </div>
- </div>
- </div>
- <div class="flex-1 p-5 overflow-auto">
- <div class="bg-white w-full h-full p-3 shadow-md rounded-md flex flex-col">
- <div class="flex justify-end pb-3">
- <el-button type="primary" @click="editCustomer(false)">新建客户</el-button>
- <el-button type="primary">批量转移</el-button>
- <el-button type="primary">批量删除</el-button>
- <el-button type="primary">回收站</el-button>
- <el-button type="primary">导入</el-button>
- <el-button type="primary">导出</el-button>
- </div>
- <div class="flex-1 w-full overflow-hidden">
- <el-table ref="clueTableRef" :data="customerTable" border v-loading="allLoading.customerTableLading"
- style="width: 100%;height: 100%;">
- <el-table-column type="selection" width="55" />
- <el-table-column prop="customName" label="客户名称" width="180">
- <template #default="scope">
- <el-button link type="primary" size="large" @click.prevent="toCustomerTableDetail(scope.row)">{{
- scope.row.customName
- }}</el-button>
- </template>
- </el-table-column>
- <el-table-column prop="customSourceValue" label="客户来源" width="180"></el-table-column>
- <el-table-column prop="companyPhone" label="公司电话" width="180"></el-table-column>
- <el-table-column prop="email" label="邮箱" width="200"></el-table-column>
- <el-table-column prop="customerIndustryValue" label="客户行业" width="180"></el-table-column>
- <el-table-column prop="customerLevelValue" label="客户级别" width="180"></el-table-column>
- <el-table-column prop="inchargerName" label="负责人" width="190"></el-table-column>
- <el-table-column prop="creatorName" label="创建人" width="180"></el-table-column>
- <el-table-column prop="newCreateTime" label="创建时间" width="180"></el-table-column>
- <el-table-column label="操作" fixed="right" width="200">
- <template #default="scope">
- <el-button link type="primary" size="large" @click="editCustomer(scope.row)">编辑</el-button>
- <el-button link type="primary" size="large">新建任务</el-button>
- <el-button link type="danger" size="large">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="flex justify-end pt-3">
- <el-pagination layout="total, prev, pager, next, sizes" :total="customerTotalTable"
- :hide-on-single-page="true" />
- </div>
- </div>
- </div>
- <!-- 新建客户 -->
- <el-dialog v-model="allVisible.editCustomerVisible" width="1000" :show-close="false" top="10vh">
- <template #header="{ close, titleId, titleClass }">
- <div class="flex justify-between items-center border-b pb-3 dialog-header">
- <h4 :id="titleId">{{ allText.editCustomerText }}</h4>
- <div>
- <el-button type="primary" :loading="allLoading.editCustomerSaveLoading" @click="editCustomerSave(true)">保存并新建</el-button>
- <el-button type="primary" :loading="allLoading.editCustomerSaveLoading" @click="editCustomerSave(false)">保存</el-button>
- <el-button @click="closeVisible('editCustomerVisible')">取消</el-button>
- </div>
- </div>
- </template>
- <div class="h-[60vh] overflow-y-auto scroll-bar pt-3">
- <div class="ml-4 mr-4">
- <GenerateForm ref="customerTemplateRef" :data="customerTemplate" :value="customerTemplateValue" />
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, reactive, onMounted, inject } from "vue";
- import { MOD, GETSYSFILED, GETPERSONNEL, URL_TABLELIST, URL_TEMPLALE, URL_EDITSAVE } from './api.ts'
- import { getAllListByCode, getFromValue, resetFromValue, getFirstDayOfMonth, getLastDayOfMonth, formatDate } from '@/utils/tools'
- import { post, get } from "@/utils/request";
- import { useRouter, useRoute } from "vue-router";
- import { GenerateForm } from '@zmjs/form-design';
- // 定义类型
- interface fixedDataInterface {
- id: string | number,
- companyId: string | number,
- code: string,
- name: string,
- seq: string | number,
- }
- interface personnelInterface {
- id: string | number,
- name: string,
- phone: string,
- jobNumber: string
- }
- interface customerCriteriaFormType { // 线索筛选条件类型
- customName: string,
- customSourceId: string | number,
- telPhone: string,
- email: string,
- customerIndustryId: string | number,
- customerLevelId: string | number,
- inchargerId: string | number,
- startTime: string | number,
- endTime: string | number,
- pageIndex: string | number,
- pageFrom: string | number
- }
- // 定义变量
- const router = useRouter()
- const globalPopup = inject<GlobalPopup>('globalPopup')
- const customerCriteriaForm = reactive<customerCriteriaFormType>({ // 筛选条件form
- customName: '',
- customSourceId: '',
- telPhone: '',
- email: '',
- customerIndustryId: '',
- customerLevelId: '',
- inchargerId: '',
- startTime: getFirstDayOfMonth(new Date()),
- endTime: formatDate(new Date()),
- pageIndex: 1,
- pageFrom: 10
- })
- const customerTable = ref([]) // 线索table数据
- const customerTotalTable = ref(0) // 线索 table 数据总数
- const allLoading = reactive({
- customerTableLading: false,
- editCustomerSaveLoading: false
- })
- const allVisible = reactive({
- editCustomerVisible: false,
- })
- const allText = reactive({
- editCustomerText: '新建客户',
- })
- const fixedData = reactive({
- ClueSources: [] as fixedDataInterface[],
- CustomIndustry: [] as fixedDataInterface[],
- CustomLevel: [] as fixedDataInterface[],
- Personnel: [] as personnelInterface[]
- })
- const customerTemplate = ref({
- list: [],
- config: {}
- })
- const customerTemplateRef = ref<typeof GenerateForm>() // 自定义表单dom
- const customerTemplateValue = ref({})
- // 定义方法
- function editCustomerSave(flag: boolean) {
- customerTemplateRef.value?.getData().then((res: any) => {
- allLoading.editCustomerSaveLoading = true
- post(URL_EDITSAVE, { ...res }).then((_res) => {
- allVisible.editCustomerVisible = flag
- globalPopup?.showSuccess('保存成功')
- if(flag) {
- customerTemplateRef.value?.reset()
- }
- getCustomerTable()
- }).finally(() => {
- allLoading.editCustomerSaveLoading = false
- })
- }).catch((_err: any) => {
- console.log(_err)
- globalPopup?.showError('请填写完整')
- })
- }
- function editCustomer(row: any) { // row 有数据代表编辑
- if (row) {
- const templateKey = customerTemplate.value.list.map((item: any) => item.model)
- console.log(templateKey, '<==== key')
- } else { // 没有数据代表新建
- customerTemplateRef.value?.reset()
- }
- showVisible('editCustomerVisible')
- }
- function toCustomerTableDetail(_row: any) {
- console.log('点击跳转详情')
- router.push({ path: `${MOD}/detail`, query: { id: _row.id } })
- }
- function searchTable() {
- getCustomerTable()
- }
- function resetTable() {
- let newResetForm = resetFromValue(customerCriteriaForm, { startTime: getFirstDayOfMonth(new Date()), endTime: formatDate(new Date()), pageIndex: 1, pageFrom: 10 })
- Object.assign(customerCriteriaForm, newResetForm)
- getCustomerTable()
- }
- function getCustomerTable() {
- let valueForm = getFromValue(customerCriteriaForm)
- allLoading.customerTableLading = true
- post(URL_TABLELIST, { ...valueForm }).then((res) => {
- const { data, total } = res.data
- customerTable.value = (data || []).map((item: any) => {
- return {
- ...item,
- newCreateTime: formatDate(new Date(item.createTime)),
- }
- })
- customerTotalTable.value = total
- }).finally(() => {
- allLoading.customerTableLading = false
- })
- }
- async function getSystemField() {
- const systemField = getAllListByCode(['线索来源', '客户行业', '客户级别'])
- for (let i in systemField) {
- const { data } = await get(`${GETSYSFILED}?code=${systemField[i]}`)
- for (let key of Object.keys(fixedData)) {
- if (systemField[i] == key) {
- Object.assign(fixedData, { [key]: data })
- }
- }
- }
- const { data } = await post(GETPERSONNEL, {})
- fixedData.Personnel = data.map((item: any) => {
- const { id, name, phone, jobNumber } = item
- return {
- id, name, phone, jobNumber
- }
- })
- const res = await get(URL_TEMPLALE)
- customerTemplate.value = JSON.parse(res.data[0].config)
- }
- function showVisible(type: keyof typeof allVisible) {
- allVisible[type] = true
- }
- function closeVisible(type: keyof typeof allVisible) {
- allVisible[type] = false
- }
- onMounted(() => {
- getSystemField()
- getCustomerTable()
- })
- </script>
- <style lang="scss" scoped></style>
|