eight
2024-08-28 2bc74ebfec4a30beddc66fd55be4947e5f7cf498
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<template>
  <!-- 操作栏 -->
  <el-row justify="end">
    <el-button @click="openForm">
      <Icon class="mr-5px" icon="system-uicons:contacts" />
      创建联系人
    </el-button>
    <el-button
      v-if="queryParams.businessId"
      v-hasPermi="['crm:contact:create-business']"
      @click="openBusinessModal"
    >
      <Icon class="mr-5px" icon="ep:circle-plus" />
      关联
    </el-button>
    <el-button
      v-if="queryParams.businessId"
      v-hasPermi="['crm:contact:delete-business']"
      @click="deleteContactBusinessList"
    >
      <Icon class="mr-5px" icon="ep:remove" />
      解除关联
    </el-button>
  </el-row>
 
  <!-- 列表 -->
  <ContentWrap class="mt-10px">
    <el-table
      ref="contactRef"
      v-loading="loading"
      :data="list"
      :show-overflow-tooltip="true"
      :stripe="true"
    >
      <el-table-column v-if="queryParams.businessId" type="selection" width="55" />
      <el-table-column align="center" fixed="left" label="姓名" prop="name">
        <template #default="scope">
          <el-link :underline="false" type="primary" @click="openDetail(scope.row.id)">
            {{ scope.row.name }}
          </el-link>
        </template>
      </el-table-column>
      <el-table-column align="center" label="手机号" prop="mobile" />
      <el-table-column align="center" label="职位" prop="post" />
      <el-table-column align="center" label="直属上级" prop="parentName" />
      <el-table-column align="center" label="是否关键决策人" min-width="100" prop="master">
        <template #default="scope">
          <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.master" />
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页 -->
    <Pagination
      v-model:limit="queryParams.pageSize"
      v-model:page="queryParams.pageNo"
      :total="total"
      @pagination="getList"
    />
  </ContentWrap>
 
  <!-- 表单弹窗:添加 -->
  <ContactForm ref="formRef" @success="getList" />
  <!-- 关联商机选择弹框 -->
  <ContactListModal
    v-if="customerId"
    ref="contactModalRef"
    :customer-id="customerId"
    @success="createContactBusinessList"
  />
</template>
<script lang="ts" setup>
import * as ContactApi from '@/api/crm/contact'
import ContactForm from './../ContactForm.vue'
import { DICT_TYPE } from '@/utils/dict'
import { BizTypeEnum } from '@/api/crm/permission'
import ContactListModal from './ContactListModal.vue'
 
defineOptions({ name: 'CrmContactList' })
const props = defineProps<{
  bizType: number // 业务类型
  bizId: number // 业务编号
  customerId?: number // 特殊:客户编号;在【商机】详情中,可以传递客户编号,默认新建的联系人关联到该客户
  businessId?: number // 特殊:商机编号;在【商机】详情中,可以传递商机编号,默认新建的联系人关联到该商机
}>()
 
const loading = ref(true) // 列表的加载中
const total = ref(0) // 列表的总页数
const list = ref([]) // 列表的数据
const queryParams = reactive({
  pageNo: 1,
  pageSize: 10,
  customerId: undefined as unknown, // 允许 undefined + number
  businessId: undefined as unknown // 允许 undefined + number
})
const message = useMessage()
 
/** 查询列表 */
const getList = async () => {
  loading.value = true
  try {
    // 置空参数
    queryParams.customerId = undefined
    // 执行查询
    let data = { list: [], total: 0 }
    switch (props.bizType) {
      case BizTypeEnum.CRM_CUSTOMER:
        queryParams.customerId = props.bizId
        data = await ContactApi.getContactPageByCustomer(queryParams)
        break
      case BizTypeEnum.CRM_BUSINESS:
        queryParams.businessId = props.bizId
        data = await ContactApi.getContactPageByBusiness(queryParams)
        break
      default:
        return
    }
    list.value = data.list
    total.value = data.total
  } finally {
    loading.value = false
  }
}
 
/** 搜索按钮操作 */
const handleQuery = () => {
  queryParams.pageNo = 1
  getList()
}
 
/** 添加操作 */
const formRef = ref()
const openForm = () => {
  formRef.value.open('create', undefined, props.customerId, props.businessId)
}
 
/** 打开联系人详情 */
const { push } = useRouter()
const openDetail = (id: number) => {
  push({ name: 'CrmContactDetail', params: { id } })
}
 
/** 打开联系人与商机的关联弹窗 */
const contactModalRef = ref()
const openBusinessModal = () => {
  contactModalRef.value.open()
}
const createContactBusinessList = async (contactIds: number[]) => {
  const data = {
    businessId: props.bizId,
    contactIds: contactIds
  } as ContactApi.ContactBusiness2ReqVO
  contactRef.value.getSelectionRows().forEach((row: ContactApi.ContactVO) => {
    data.contactIds.push(row.id)
  })
  await ContactApi.createContactBusinessList2(data)
  // 刷新列表
  message.success('关联联系人成功')
  handleQuery()
}
 
/** 解除联系人与商机的关联 */
const contactRef = ref()
const deleteContactBusinessList = async () => {
  const data = {
    businessId: props.bizId,
    contactIds: contactRef.value.getSelectionRows().map((row: ContactApi.ContactVO) => row.id)
  } as ContactApi.ContactBusiness2ReqVO
  if (data.contactIds.length === 0) {
    return message.error('未选择联系人')
  }
  await ContactApi.deleteContactBusinessList2(data)
  // 刷新列表
  message.success('取关联系人成功')
  handleQuery()
}
 
/** 监听打开的 bizId + bizType,从而加载最新的列表 */
watch(
  () => [props.bizId, props.bizType],
  () => {
    handleQuery()
  },
  { immediate: true, deep: true }
)
</script>