521 lines
16 KiB
Vue
521 lines
16 KiB
Vue
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form
|
|
class="-mb-15px"
|
|
:model="queryParams"
|
|
ref="queryFormRef"
|
|
:inline="true"
|
|
label-width="110px"
|
|
>
|
|
<el-form-item label="客户" prop="customerId">
|
|
<SelectComponent :customerList="customerList" class="!w-240px" v-model="queryParams.customerId" />
|
|
</el-form-item>
|
|
<!-- <el-form-item label="报价单编号" prop="no">
|
|
<el-input
|
|
v-model="queryParams.no"
|
|
placeholder="请输入报价单编号"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item> -->
|
|
|
|
<!-- <el-form-item label="商机负责人" prop="ownerUserId">
|
|
<el-select
|
|
v-model="queryParams.ownerUserId"
|
|
placeholder="请选择商机负责人"
|
|
clearable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in userOptions"
|
|
:key="dict.id"
|
|
:label="dict.nickname"
|
|
:value="dict.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item> -->
|
|
<el-form-item label="维护人" prop="expandingUserId">
|
|
<el-select
|
|
v-model="queryParams.expandingUserId"
|
|
placeholder="请选择维护人"
|
|
clearable
|
|
filterable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in userOptions"
|
|
:key="dict.id"
|
|
:label="dict.nickname"
|
|
:value="dict.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="拓展人" prop="expandingUserId">
|
|
<el-select
|
|
v-model="queryParams.expandingUserId"
|
|
placeholder="请选择拓展人"
|
|
clearable
|
|
filterable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in userOptions"
|
|
:key="dict.id"
|
|
:label="dict.nickname"
|
|
:value="dict.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="客户确认状态" prop="confirmStatus">
|
|
<el-select
|
|
v-model="queryParams.confirmStatus"
|
|
placeholder="请选择客户确认状态"
|
|
clearable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.CRM_CONFIRM_STATUS)"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="创建时间" prop="createTime">
|
|
<el-date-picker
|
|
v-model="queryParams.createTime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
type="daterange"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item> -->
|
|
<el-form-item>
|
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
@click="openFormAdd"
|
|
v-hasPermi="['crm:quotation:create']"
|
|
>
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
</el-button>
|
|
<!-- <el-button
|
|
type="success"
|
|
plain
|
|
@click="handleExport"
|
|
:loading="exportLoading"
|
|
v-hasPermi="['crm:quotation:export']"
|
|
>
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
|
</el-button> -->
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-tabs v-model="activeName" @tab-click="handleTabClick">
|
|
<el-tab-pane label="我负责的" name="1" />
|
|
<el-tab-pane label="我参与的" name="2" />
|
|
<el-tab-pane label="下属负责的" name="3" />
|
|
</el-tabs>
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
<el-table-column label="客户名称" align="center" prop="customerId" width="250">
|
|
<template #default="scope">
|
|
<!-- <el-link
|
|
:underline="false"
|
|
type="primary"
|
|
@click="openCustomerDetail(scope.row.customerId)"
|
|
> -->
|
|
{{ scope.row.customerName }}
|
|
<!-- </el-link> -->
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="报价单编号" align="center" prop="no" width="200" >
|
|
<template #default="scope">
|
|
<el-link :underline="false" type="primary" @click="openDetail(scope.row.id)">
|
|
{{ scope.row.no }}
|
|
</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="商机负责人" align="center" prop="requestorUserName" width="120">
|
|
<!-- <template #default="scope">
|
|
|
|
{{getName(userOptions, scope.row.creator)}}
|
|
|
|
</template> -->
|
|
</el-table-column>
|
|
<el-table-column label="拓展人" align="center" prop="clueDeveloperName" width="120">
|
|
<!-- <template #default="scope">
|
|
{{getName(userOptions, scope.row.expandingUserId)}}
|
|
</template> -->
|
|
</el-table-column>
|
|
<el-table-column label="维护人" align="center" prop="maintainerName" width="120">
|
|
<!-- <template #default="scope">
|
|
{{getName(userOptions, scope.row.maintenanceUserId)}}
|
|
|
|
</template> -->
|
|
</el-table-column>
|
|
<el-table-column label="账期" align="center" prop="paymentTerm" width="120">
|
|
<template #default="scope">
|
|
<dict-tag :type="'payment_term'" :value="scope.row.paymentTerm" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="授信方式" align="center" prop="creditMethod" width="110">
|
|
<template #default="scope">
|
|
<dict-tag :type="'credit_method'" :value="scope.row.creditMethod" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目难度" align="center" prop="projectDifficultyName" width="180" />
|
|
<!-- <el-table-column label="授信计算周期" align="center" prop="creditCalcCycle" width="120" /> -->
|
|
<!-- <template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.CREDIT_CALC_CYCLE" :value="scope.row.creditCalcCycle" />
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="授信额度" align="center" prop="creditLimit" width="180" />
|
|
<el-table-column label="合作主体" align="center" prop="partnerCompanyName" width="150" />
|
|
<el-table-column label="审批状态" align="center" prop="auditStatus" width="100">
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.CRM_AUDIT_STATUS" :value="scope.row.auditStatus" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="客户确认状态" align="center" prop="confirmStatus" width="110">
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.CRM_CONFIRM_STATUS" :value="scope.row.confirmStatus" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="创建时间"
|
|
align="center"
|
|
prop="createTime"
|
|
width="180px"
|
|
>
|
|
{{ moment(createTime).format('YYYY-MM-DD')}}
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" fixed="right" min-width="180px" v-if="activeName == 2 || activeName == 3">
|
|
<template #default="scope">
|
|
<div style="display:flex">
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openFormDetail(scope.row)"
|
|
>
|
|
详情
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleProcessDetail(scope.row)"
|
|
v-hasPermi="['crm:customer-suggestion:query']"
|
|
v-if="scope.row.auditStatus != 0"
|
|
>
|
|
进度
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" fixed="right" min-width="180px" v-if="activeName == 1">
|
|
<template #default="scope">
|
|
<div style="display:flex">
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openFormDetail(scope.row)"
|
|
>
|
|
详情
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openFormEdit(scope.row)"
|
|
v-hasPermi="['crm:quotation:update']"
|
|
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus === 3"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleProcessDetail(scope.row)"
|
|
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 3"
|
|
>
|
|
进度
|
|
</el-button>
|
|
<!-- <el-button
|
|
link
|
|
type="primary"
|
|
@click="handleEnter(scope.row)"
|
|
v-hasPermi="['crm:quotation:customerConfirm']"
|
|
v-if="scope.row.auditStatus == 2 && scope.row.confirmStatus == 0"
|
|
>
|
|
客户确认
|
|
</el-button> -->
|
|
<!-- <el-button
|
|
link
|
|
type="primary"
|
|
@click="handleEnter(scope.row)"
|
|
v-hasPermi="['crm:quotation:customerConfirm']"
|
|
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 2"
|
|
>
|
|
打印
|
|
</el-button> -->
|
|
<el-dropdown
|
|
v-if="(scope.row.auditStatus == 0 || scope.row.auditStatus == 2 || scope.row.auditStatus === 3) && scope.row.confirmStatus == 0"
|
|
@command="(command) => handleCommand(command, scope.row)"
|
|
v-hasPermi="[
|
|
'crm:quotation:delete',
|
|
'crm:customer-suggestion:query',
|
|
'system:permission:assign-user-role',
|
|
'crm:quotation:customerConfirm'
|
|
]"
|
|
>
|
|
<el-button type="primary" link>更多<Icon icon="ep:d-arrow-right" /> </el-button>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item
|
|
command="handleSubmit"
|
|
v-if="checkPermi(['crm:contract:update']) && (scope.row.auditStatus === 0 || scope.row.auditStatus === 3)"
|
|
>
|
|
提交审核
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
command="handleEnter"
|
|
v-if="checkPermi(['crm:quotation:customerConfirm']) && scope.row.auditStatus == 2 && scope.row.confirmStatus == 0"
|
|
>
|
|
客户确认
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
command="handleEnter"
|
|
v-if="scope.row.confirmStatus == 0"
|
|
>
|
|
打印
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
command="handleProcessDetail"
|
|
v-if="scope.row.auditStatus == 1 || scope.row.auditStatus == 3"
|
|
>
|
|
进度
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
command="handleDelete"
|
|
v-if="checkPermi(['crm:quotation:delete']) && scope.row.auditStatus === 0"
|
|
>
|
|
删除
|
|
</el-dropdown-item>
|
|
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
|
<Pagination
|
|
:total="total"
|
|
v-model:page="queryParams.pageNo"
|
|
v-model:limit="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
</ContentWrap>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { QuotationApi, QuotationVO } from '@/api/crm/quotation'
|
|
import * as CustomerApi from '@/api/crm/customer'
|
|
import * as UserApi from '@/api/system/user'
|
|
import * as DeptApi from '@/api/system/dept'
|
|
import { TabsPaneContext } from 'element-plus'
|
|
import { checkPermi } from '@/utils/permission'
|
|
import moment from 'moment';
|
|
//
|
|
|
|
/** CRM 方案报价 列表 */
|
|
defineOptions({ name: 'Quotation' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const userOptions = ref<UserApi.UserVO[]>([]) // 用户列表
|
|
const customerList = ref([]) // 客户列表的数据
|
|
|
|
const { push } = useRouter()
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<QuotationVO[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
no: undefined,
|
|
sceneType: '1', // 默认和 activeName 相等
|
|
customerId: undefined,
|
|
ownerUserId: undefined,
|
|
partnerCompanyId: undefined,
|
|
confirmStatus: undefined,
|
|
createTime: []
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const activeName = ref('1') // 列表 tab
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
const data = await QuotationApi.getQuotationPage(queryParams)
|
|
list.value = data.list
|
|
total.value = data.total
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.pageNo = 1
|
|
getList()
|
|
}
|
|
|
|
const openDetail = (id: number) => {
|
|
router.push({ name: 'QuotationDetail', query: { id: id } })
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
queryFormRef.value.resetFields()
|
|
handleQuery()
|
|
}
|
|
|
|
/** tab 切换 */
|
|
const handleTabClick = (tab: TabsPaneContext) => {
|
|
queryParams.sceneType = tab.paneName
|
|
handleQuery()
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openFormEdit = (row: Object) => {
|
|
|
|
router.push({ name: 'QuotationEdit', query: { id: row.id} })
|
|
}
|
|
const openFormAdd = () => {
|
|
router.push({ name: 'QuotationAdd' })
|
|
}
|
|
|
|
const openFormDetail = (row: Object) => {
|
|
|
|
router.push({ name: 'QuotationDetail', query: { id: row.id } })
|
|
}
|
|
/** 操作分发 */
|
|
const handleCommand = (command: string, row: UserApi.UserVO) => {
|
|
switch (command) {
|
|
case 'handleSubmit':
|
|
handleSubmit(row)
|
|
break
|
|
case 'handleDelete':
|
|
handleDelete(row.id)
|
|
break
|
|
case 'handleProcessDetail':
|
|
handleProcessDetail(row)
|
|
break
|
|
case 'handleEnter':
|
|
handleEnter(row)
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
/** 提交审核 **/
|
|
const handleSubmit = async (row: QuotationVO) => {
|
|
await message.confirm(`您确定提交审核吗?`)
|
|
await QuotationApi.submitContract(row.id)
|
|
message.success('提交审核成功!')
|
|
await getList()
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await QuotationApi.deleteQuotation(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 审批进度 */
|
|
const router = useRouter() // 路由
|
|
const handleProcessDetail = (row) => {
|
|
router.push({
|
|
name: 'BpmProcessInstanceDetail',
|
|
query: {
|
|
id: row.processInstanceId
|
|
}
|
|
})
|
|
}
|
|
|
|
const handleEnter = async (row) => {
|
|
await QuotationApi.enterQuotation({id: row.id})
|
|
message.success('操作成功!')
|
|
getList()
|
|
|
|
}
|
|
const getName = (opt, val) => {
|
|
const arr = opt.filter(v => v.id == val)
|
|
return arr.length ? arr[0]['nickname'] : ''
|
|
}
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await QuotationApi.exportQuotation(queryParams)
|
|
download.excel(data, 'CRM 方案报价.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 打开联系人详情 */
|
|
const openContactDetail = (id: number) => {
|
|
push({ name: 'CrmContactDetail', params: { id } })
|
|
}
|
|
|
|
/** 打开客户详情 */
|
|
const openCustomerDetail = (id: number) => {
|
|
push({ name: 'CrmCustomerDetail', params: { id } })
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
// 获得客户列表
|
|
customerList.value = await CustomerApi.getSelfCustomerSimpleList()
|
|
// 获得用户列表
|
|
userOptions.value = await UserApi.getSimpleUserList()
|
|
getList()
|
|
})
|
|
onActivated(()=>{
|
|
getList()
|
|
})
|
|
</script>
|
|
|