210 lines
7.4 KiB
Vue
210 lines
7.4 KiB
Vue
<template>
|
|
<div>
|
|
<!-- <Statistics :list="list"></Statistics> -->
|
|
<el-card class="!border-none mb-4" shadow="never">
|
|
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
|
<el-form-item label="联系人" prop="contacts">
|
|
<el-input class="w-[280px]" v-model="queryParams.contacts" clearable placeholder="请输入联系人" />
|
|
</el-form-item>
|
|
|
|
<el-form-item label="类型" prop="types">
|
|
<el-select class="w-[280px]" v-model="queryParams.types" clearable placeholder="请选择类型">
|
|
<el-option label="全部" value=""></el-option>
|
|
<el-option v-for="(item, index) in dictData.types" :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">
|
|
<el-button v-perms="['custom_follow.custom_follow/add']" type="primary" @click="handleAdd">
|
|
<template #icon>
|
|
<icon name="el-icon-Plus" />
|
|
</template>
|
|
新增
|
|
</el-button>
|
|
<el-button v-perms="['custom_follow.custom_follow/delete']" :disabled="!selectData.length" @click="handleDelete(selectData)">
|
|
删除
|
|
</el-button>
|
|
<div class="mt-4">
|
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column label="序号" type="index" width="55" />
|
|
<el-table-column label="客户名称" prop="custom_id" show-overflow-tooltip />
|
|
<el-table-column label="联系人" prop="contacts" show-overflow-tooltip />
|
|
<el-table-column label="日期" prop="date" show-overflow-tooltip />
|
|
|
|
<el-table-column label="类型" prop="types">
|
|
<template #default="{ row }">
|
|
<dict-value :options="dictData.follow_type" :value="row.types" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="执行人" prop="add_user" show-overflow-tooltip />
|
|
<el-table-column label="行动描述" prop="description" show-overflow-tooltip />
|
|
<el-table-column label="附件/现场照片" prop="annex">
|
|
<template #default="{ row }">
|
|
|
|
<div v-if="row.annex && row.annex.length > 0">
|
|
<div v-for="item in row.annex">
|
|
<el-image style="width:50px;height:50px;z-index: 9999;" :src="item" />
|
|
</div>
|
|
</div>
|
|
<div v-else>暂无附件/现场照片</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="位置" prop="coordinate" show-overflow-tooltip />
|
|
<el-table-column label="下次回访日期" prop="next_follow_date" show-overflow-tooltip />
|
|
|
|
|
|
<!-- <el-table-column label="状态" prop="status" show-overflow-tooltip /> -->
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button v-perms="['custom_follow.custom_follow/edit']" type="primary" link @click="handleEdit(row)">
|
|
编辑
|
|
</el-button>
|
|
<el-button v-perms="['custom_follow.custom_follow/delete']" type="danger" link @click="handleDelete(row.id)">
|
|
删除
|
|
</el-button>
|
|
<el-button v-perms="['custom_follow.custom_follow/detail']" link @click="handledetail(row)">
|
|
详情
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="flex mt-4 justify-end">
|
|
<pagination v-model="pager" @change="getLists" />
|
|
</div>
|
|
</el-card>
|
|
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
|
<detail-popup v-if="showDtail" ref="detailRef" :dict-data="dictData" @close="showDtail = false" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="customFollowLists">
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import { useDictData } from '@/hooks/useDictOptions'
|
|
import { apiCustomFollowLists, apiCustomFollowDelete, apiCustomFollowDetail } from '@/api/custom_follow'
|
|
import { timeFormat } from '@/utils/util'
|
|
import feedback from '@/utils/feedback'
|
|
import EditPopup from './edit.vue'
|
|
import Statistics from '@/components/statistics/index.vue'
|
|
import DetailPopup from './detail.vue'
|
|
const detailRef = shallowRef<InstanceType<typeof DetailPopup>>()
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false)
|
|
|
|
const showDtail = ref(false)
|
|
const list = reactive([
|
|
{
|
|
name: "今日跟进",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "电话",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "上门",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "来访接待",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "会议",
|
|
count: 1000,
|
|
},
|
|
|
|
{
|
|
name: "培训",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "商务餐饮",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "外出活动",
|
|
count: 1000,
|
|
},
|
|
{
|
|
name: "其它",
|
|
count: 1000,
|
|
},
|
|
]);
|
|
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
custom_id: '',
|
|
contacts: '',
|
|
date: '',
|
|
types: '',
|
|
admin_id: '',
|
|
description: '',
|
|
annex: '',
|
|
coordinate: '',
|
|
next_follow_date: '',
|
|
status: ''
|
|
})
|
|
|
|
// 选中数据
|
|
const selectData = ref<any[]>([])
|
|
|
|
// 表格选择后回调事件
|
|
const handleSelectionChange = (val: any[]) => {
|
|
selectData.value = val.map(({ id }) => id)
|
|
}
|
|
|
|
// 获取字典数据
|
|
const { dictData } = useDictData('follow_type')
|
|
|
|
// 分页相关
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
fetchFun: apiCustomFollowLists,
|
|
params: queryParams
|
|
})
|
|
|
|
// 添加
|
|
const handleAdd = async () => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('add')
|
|
}
|
|
|
|
// 编辑
|
|
const handleEdit = async (data: any) => {
|
|
|
|
let res = await apiCustomFollowDetail({ id: data.id })
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('edit')
|
|
editRef.value?.setFormData(res)
|
|
}
|
|
|
|
// 删除
|
|
const handleDelete = async (id: number | any[]) => {
|
|
await feedback.confirm('确定要删除?')
|
|
await apiCustomFollowDelete({ id })
|
|
getLists()
|
|
}
|
|
//详情
|
|
const handledetail = async (data: any) => {
|
|
let res = await apiCustomFollowDetail({ id: data.id })
|
|
showDtail.value = true
|
|
await nextTick()
|
|
detailRef.value?.open()
|
|
detailRef.value?.setFormData(res)
|
|
}
|
|
|
|
getLists()
|
|
</script>
|
|
|