|
@@ -0,0 +1,446 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-row style="height: 700px">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-card header="客户列表">
|
|
|
+ <div class="customerSearch">
|
|
|
+ <div>
|
|
|
+ <el-select
|
|
|
+ v-model="searchData.customerType"
|
|
|
+ placeholder="类型"
|
|
|
+ style="width: 120px"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in userTypeList"
|
|
|
+ :key="item.ID"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.ID"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <div style="margin-left: 40px">
|
|
|
+ <el-input
|
|
|
+ v-model="userJson.name"
|
|
|
+ style="max-width: 600px"
|
|
|
+ placeholder="联系人"
|
|
|
+ class="input-with-select"
|
|
|
+ >
|
|
|
+ <template #append>
|
|
|
+ <el-button icon="Search" />
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </div>
|
|
|
+ <div style="margin-left: 40px">
|
|
|
+ <el-button
|
|
|
+ icon="plus"
|
|
|
+ @click="addCustomerShow = true"
|
|
|
+ >
|
|
|
+ 新增客户
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <div style="margin-left: 40px">
|
|
|
+ <el-button
|
|
|
+ @click="userTypeShow = true"
|
|
|
+ >
|
|
|
+ 客户类型
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-table
|
|
|
+ height="605px"
|
|
|
+ border
|
|
|
+ stripe
|
|
|
+ :data="customerList"
|
|
|
+ size="small"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ label="客户名称"
|
|
|
+ prop="name"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="客户电话"
|
|
|
+ prop="phone"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="客户邮箱"
|
|
|
+ prop="email"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="公司"
|
|
|
+ prop="company"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="职位"
|
|
|
+ prop="posts"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="客户类型"
|
|
|
+ prop="customerGenre.name"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="直系上司"
|
|
|
+ prop="genre"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ text
|
|
|
+ icon="Edit"
|
|
|
+ @click="customerEdit(scope.row)"
|
|
|
+ >
|
|
|
+ 编辑
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ text
|
|
|
+ icon="delete"
|
|
|
+ @click="deleteCustomer(scope.row)"
|
|
|
+ >
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ :current-page="pageSet.page"
|
|
|
+ :page-size="pageSet.pageSize"
|
|
|
+ :page-sizes="[10, 30, 50, 100]"
|
|
|
+ :total="pageSet.total"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ />
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-dialog
|
|
|
+ v-model="addCustomerShow"
|
|
|
+ width="35%"
|
|
|
+ title="新增客户"
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ label-width="100px"
|
|
|
+ label-position="left"
|
|
|
+ size="large"
|
|
|
+ >
|
|
|
+ <el-form-item label="客户名称:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.name"
|
|
|
+ placeholder="请输入客户名称"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="客户电话:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.phone"
|
|
|
+ placeholder="请输入客户电话"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="客户邮箱:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.email"
|
|
|
+ placeholder="请输入客户邮箱"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="公司:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.company"
|
|
|
+ placeholder="请输入公司名称"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="职位:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.posts"
|
|
|
+ placeholder="请输入公司职位"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="客户类型:">
|
|
|
+ <el-select
|
|
|
+ v-model="addCustomerJson.genre"
|
|
|
+ placeholder="类型"
|
|
|
+ clearable
|
|
|
+ @clear="addCustomerJson.genre = 0"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in userTypeList"
|
|
|
+ :key="item.ID"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.ID"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="直系上司:">
|
|
|
+ <el-input
|
|
|
+ v-model="addCustomerJson.supervisorId"
|
|
|
+ placeholder="选填"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <el-button
|
|
|
+ size="large"
|
|
|
+ type="primary"
|
|
|
+ @click="addCustomer"
|
|
|
+ >
|
|
|
+ 确认
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ v-model="userTypeShow"
|
|
|
+ title="费用类型"
|
|
|
+ width="40%"
|
|
|
+ >
|
|
|
+ <el-form>
|
|
|
+ <el-form-item
|
|
|
+ label="客户类型:"
|
|
|
+ size="large"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="changeUserValue"
|
|
|
+ style="width: 550px"
|
|
|
+ placeholder="请输入客户类型"
|
|
|
+ >
|
|
|
+ <template #prepend>
|
|
|
+ <el-select
|
|
|
+ v-model="userTypeSelect"
|
|
|
+ placeholder="请选择类型"
|
|
|
+ clearable
|
|
|
+ style="width: 140px"
|
|
|
+ @clear="clearUserType"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in userTypeList"
|
|
|
+ :key="item.ID"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.ID"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ <template #append>
|
|
|
+ <el-button @click="delUserType">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="large"
|
|
|
+ @click="editUserType"
|
|
|
+ >确定</el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ <el-drawer
|
|
|
+ v-model="editUserShow"
|
|
|
+ title="编辑客户"
|
|
|
+ width="40%"
|
|
|
+ >
|
|
|
+ <el-tabs>
|
|
|
+ <el-tab-pane label="基本信息"></el-tab-pane>
|
|
|
+ <el-tab-pane label="进度信息"></el-tab-pane>
|
|
|
+ <el-tab-pane label="需求信息"></el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </el-drawer>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import { reactive, onMounted, ref } from 'vue'
|
|
|
+import { getCustomerList, postCustomer, delCustomer, getCustomerType, postCustomerType, putCustomerType, delCustomerType } from '@/api/customer'
|
|
|
+import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
+defineOptions({
|
|
|
+ name: 'Customer'
|
|
|
+})
|
|
|
+
|
|
|
+const searchData = reactive({
|
|
|
+ contacts: '',
|
|
|
+ customerType: ''
|
|
|
+})
|
|
|
+
|
|
|
+const customerEdit = (scope) => {
|
|
|
+ editUserShow.value = true
|
|
|
+ console.log(scope)
|
|
|
+}
|
|
|
+
|
|
|
+const pageSet = reactive({
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 100
|
|
|
+})
|
|
|
+
|
|
|
+const handleCurrentChange = () => {}
|
|
|
+
|
|
|
+const handleSizeChange = () => {}
|
|
|
+
|
|
|
+// 客户类型
|
|
|
+const userTypeList = reactive([])
|
|
|
+
|
|
|
+// 查询客户类型
|
|
|
+const queryUserTypeList = () => {
|
|
|
+ getCustomerType().then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ userTypeList.length = 0
|
|
|
+ userTypeList.push(...res.data)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 编辑客户类型
|
|
|
+const userTypeShow = ref(false)
|
|
|
+const userTypeSelect = ref(0)
|
|
|
+const changeUserValue = ref('')
|
|
|
+const clearUserType = () => {
|
|
|
+ userTypeSelect.value = 0
|
|
|
+}
|
|
|
+const editUserType = () => {
|
|
|
+ if (changeUserValue.value.length === 0) {
|
|
|
+ ElMessage.error('请输入需要编辑的客户类型')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (userTypeSelect.value === 0) {
|
|
|
+ const postData = { name: changeUserValue.value }
|
|
|
+ postCustomerType(postData).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('新增客户类型成功')
|
|
|
+ changeUserValue.value = ''
|
|
|
+ queryUserTypeList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ const putData = {
|
|
|
+ id: userTypeSelect.value,
|
|
|
+ name: changeUserValue.value
|
|
|
+ }
|
|
|
+ putCustomerType(putData).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('修改客户类型成功')
|
|
|
+ userTypeSelect.value = 0
|
|
|
+ changeUserValue.value = ''
|
|
|
+ queryUserTypeList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 删除客户类型
|
|
|
+const delUserType = () => {
|
|
|
+ if (userTypeSelect.value === 0) {
|
|
|
+ ElMessage.error('请选择需要删除的客户类型')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ delCustomerType(userTypeSelect.value).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ userTypeSelect.value = 0
|
|
|
+ changeUserValue.value = ''
|
|
|
+ ElMessage.success('删除客户类型成功')
|
|
|
+ queryUserTypeList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 客户列表
|
|
|
+const userJson = reactive({
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10
|
|
|
+ },
|
|
|
+ name: ''
|
|
|
+})
|
|
|
+const customerList = reactive([])
|
|
|
+const queryCustomerList = () => {
|
|
|
+ getCustomerList(userJson).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const list = res.data.list
|
|
|
+ customerList.length = 0
|
|
|
+ customerList.push(...list)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 新增客户
|
|
|
+const addCustomerShow = ref(false)
|
|
|
+const addCustomerJson = reactive({
|
|
|
+ name: '刘总',
|
|
|
+ phone: '1823697451',
|
|
|
+ email: '405071532@qq.com',
|
|
|
+ company: '无',
|
|
|
+ posts: '总裁',
|
|
|
+ genre: 1,
|
|
|
+ supervisorId: 0
|
|
|
+})
|
|
|
+const addCustomer = () => {
|
|
|
+ for (const key in addCustomerJson) {
|
|
|
+ if (key === 'supervisorId') {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if (addCustomerJson[key] === '' || addCustomerJson[key] === 0) {
|
|
|
+ ElMessage.error('请将除直系上司id以外的所有信心填写完整')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ postCustomer(addCustomerJson).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ queryCustomerList()
|
|
|
+ addCustomerShow.value = false
|
|
|
+ ElMessage.success('添加客户成功')
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 删除客户
|
|
|
+const deleteCustomer = (row) => {
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ '确定删除此客户吗?',
|
|
|
+ '删除',
|
|
|
+ {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then(() => {
|
|
|
+ delCustomer(row.ID).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('删除客户成功')
|
|
|
+ queryCustomerList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ ElMessage({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消删除',
|
|
|
+ })
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 编辑客户信息
|
|
|
+const editUserShow = ref(false)
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ queryUserTypeList()
|
|
|
+ queryCustomerList()
|
|
|
+})
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+ .customerSearch {
|
|
|
+ width: 100%;
|
|
|
+ height: 50px;
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+</style>
|