Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ed22e02b
authored
Nov 27, 2023
by
zyna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crm联系人review修改
parent
57b20f18
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
116 deletions
+43
-116
src/views/crm/contact/ContactForm.vue
+1
-1
src/views/crm/contact/detail/ContactDetails.vue
+2
-2
src/views/crm/contact/detail/index.vue
+1
-1
src/views/crm/contact/index.vue
+39
-112
No files found.
src/views/crm/contact/ContactForm.vue
View file @
ed22e02b
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"客户
名称
"
prop=
"customerName"
>
<el-form-item
label=
"客户"
prop=
"customerName"
>
<el-select
v-model=
"formData.customerId"
placeholder=
"请选择客户"
value-key=
"id"
lable-key=
"name"
>
<el-select
v-model=
"formData.customerId"
placeholder=
"请选择客户"
value-key=
"id"
lable-key=
"name"
>
<el-option
v-for=
"item in customerList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
/>
<el-option
v-for=
"item in customerList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
/>
</el-select>
</el-select>
...
...
src/views/crm/contact/detail/ContactDetails.vue
View file @
ed22e02b
<!--
<!--
* @Author: zyna
* @Author: zyna
* @Date: 2023-11-26 10:39:46
* @Date: 2023-11-26 10:39:46
* @LastEditTime: 2023-11-2
6 20:43:43
* @LastEditTime: 2023-11-2
7 23:43:25
* @FilePath: \yudao-ui-admin-vue3\src\views\crm\contact\detail\ContactDetails.vue
* @FilePath: \yudao-ui-admin-vue3\src\views\crm\contact\detail\ContactDetails.vue
* @Description:
* @Description:
-->
-->
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<el-descriptions-item
label=
"姓名"
>
<el-descriptions-item
label=
"姓名"
>
{{ contact.name }}
{{ contact.name }}
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"客户
名称
"
>
<el-descriptions-item
label=
"客户"
>
{{ contact.customerName }}
{{ contact.customerName }}
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"手机"
>
<el-descriptions-item
label=
"手机"
>
...
...
src/views/crm/contact/detail/index.vue
View file @
ed22e02b
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
</div>
</div>
<ContentWrap
class=
"mt-10px"
>
<ContentWrap
class=
"mt-10px"
>
<el-descriptions
:column=
"5"
direction=
"vertical"
>
<el-descriptions
:column=
"5"
direction=
"vertical"
>
<el-descriptions-item
label=
"客户
名称
"
>
<el-descriptions-item
label=
"客户"
>
{{
contact
.
customerName
}}
{{
contact
.
customerName
}}
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"职务"
>
<el-descriptions-item
label=
"职务"
>
...
...
src/views/crm/contact/index.vue
View file @
ed22e02b
<
template
>
<
template
>
<ContentWrap>
<ContentWrap>
<!-- 搜索工作栏 -->
<!-- 搜索工作栏 -->
<!-- TODO zyna:筛选项,按照需求简化下 -->
<el-form
class=
"-mb-15px"
:model=
"queryParams"
ref=
"queryFormRef"
:inline=
"true"
label-width=
"68px"
>
<el-form
<el-form-item
label=
"客户"
prop=
"customerId"
>
class=
"-mb-15px"
<el-select
:model=
"queryParams"
v-model=
"queryParams.customerId"
placeholder=
"请选择客户"
value-key=
"id"
lable-key=
"name"
ref=
"queryFormRef"
@
keyup
.
enter=
"handleQuery"
clearable
>
:inline=
"true"
<el-option
v-for=
"item in customerList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
/>
label-width=
"68px"
</el-select>
>
<el-form-item
label=
"客户编号"
prop=
"customerId"
>
<el-input
v-model=
"queryParams.customerId"
placeholder=
"请输入客户编号"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"姓名"
prop=
"name"
>
<el-form-item
label=
"姓名"
prop=
"name"
>
<el-input
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入姓名"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
v-model=
"queryParams.name"
placeholder=
"请输入姓名"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"手机号"
prop=
"mobile"
>
<el-form-item
label=
"手机号"
prop=
"mobile"
>
<el-input
<el-input
v-model=
"queryParams.mobile"
v-model=
"queryParams.mobile"
placeholder=
"请输入手机号"
clearable
@
keyup
.
enter=
"handleQuery"
placeholder=
"请输入手机号"
class=
"!w-240px"
/>
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"座机"
prop=
"telephone"
>
<el-form-item
label=
"座机"
prop=
"telephone"
>
<el-input
<el-input
v-model=
"queryParams.telephone"
v-model=
"queryParams.telephone"
placeholder=
"请输入电话"
clearable
@
keyup
.
enter=
"handleQuery"
placeholder=
"请输入电话"
class=
"!w-240px"
/>
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"QQ"
prop=
"qq"
>
<el-form-item
label=
"QQ"
prop=
"qq"
>
<el-input
<el-input
v-model=
"queryParams.qq"
placeholder=
"请输入QQ"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
v-model=
"queryParams.qq"
placeholder=
"请输入QQ"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"微信"
prop=
"wechat"
>
<el-form-item
label=
"微信"
prop=
"wechat"
>
<el-input
<el-input
v-model=
"queryParams.wechat"
v-model=
"queryParams.wechat"
placeholder=
"请输入微信"
clearable
@
keyup
.
enter=
"handleQuery"
placeholder=
"请输入微信"
class=
"!w-240px"
/>
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"电子邮箱"
prop=
"email"
>
<el-form-item
label=
"电子邮箱"
prop=
"email"
>
<el-input
<el-input
v-model=
"queryParams.email"
v-model=
"queryParams.email"
placeholder=
"请输入电子邮箱"
clearable
@
keyup
.
enter=
"handleQuery"
placeholder=
"请输入电子邮箱"
class=
"!w-240px"
/>
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
@
click=
"handleQuery"
><Icon
icon=
"ep:search"
class=
"mr-5px"
/>
搜索
</el-button>
<el-button
@
click=
"handleQuery"
>
<el-button
@
click=
"resetQuery"
><Icon
icon=
"ep:refresh"
class=
"mr-5px"
/>
重置
</el-button>
<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"
@
click=
"openForm('create')"
v-hasPermi=
"['crm:contact:create']"
>
<el-button
type=
"primary"
@
click=
"openForm('create')"
v-hasPermi=
"['crm:contact:create']"
>
<Icon
icon=
"ep:plus"
class=
"mr-5px"
/>
新增
<Icon
icon=
"ep:plus"
class=
"mr-5px"
/>
新增
</el-button>
</el-button>
<el-button
<el-button
type=
"success"
type=
"success"
plain
@
click=
"handleExport"
:loading=
"exportLoading"
plain
v-hasPermi=
"['crm:contact:export']"
>
@
click=
"handleExport"
:loading=
"exportLoading"
v-hasPermi=
"['crm:contact:export']"
>
<Icon
icon=
"ep:download"
class=
"mr-5px"
/>
导出
<Icon
icon=
"ep:download"
class=
"mr-5px"
/>
导出
</el-button>
</el-button>
</el-form-item>
</el-form-item>
...
@@ -102,7 +65,7 @@
...
@@ -102,7 +65,7 @@
}}
</el-link>
}}
</el-link>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"客户
名称
"
fixed=
"left"
align=
"center"
prop=
"customerName"
/>
<el-table-column
label=
"客户"
fixed=
"left"
align=
"center"
prop=
"customerName"
/>
<el-table-column
label=
"性别"
align=
"center"
prop=
"sex"
>
<el-table-column
label=
"性别"
align=
"center"
prop=
"sex"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.SYSTEM_USER_SEX"
:value=
"scope.row.sex"
/>
<dict-tag
:type=
"DICT_TYPE.SYSTEM_USER_SEX"
:value=
"scope.row.sex"
/>
...
@@ -114,48 +77,24 @@
...
@@ -114,48 +77,24 @@
<dict-tag
:type=
"DICT_TYPE.INFRA_BOOLEAN_STRING"
:value=
"scope.row.master"
/>
<dict-tag
:type=
"DICT_TYPE.INFRA_BOOLEAN_STRING"
:value=
"scope.row.master"
/>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"直属上级"
align=
"center"
prop=
"parentName"
/>
<el-table-column
label=
"直属上级"
align=
"center"
prop=
"parentName"
/>
<el-table-column
label=
"手机号"
align=
"center"
prop=
"mobile"
/>
<el-table-column
label=
"手机号"
align=
"center"
prop=
"mobile"
/>
<el-table-column
label=
"座机"
align=
"center"
prop=
"telephone"
/>
<el-table-column
label=
"座机"
align=
"center"
prop=
"telephone"
/>
<el-table-column
label=
"QQ"
align=
"center"
prop=
"qq"
/>
<el-table-column
label=
"QQ"
align=
"center"
prop=
"qq"
/>
<el-table-column
label=
"微信"
align=
"center"
prop=
"wechat"
/>
<el-table-column
label=
"微信"
align=
"center"
prop=
"wechat"
/>
<el-table-column
label=
"邮箱"
align=
"center"
prop=
"email"
/>
<el-table-column
label=
"邮箱"
align=
"center"
prop=
"email"
/>
<el-table-column
label=
"地址"
align=
"center"
prop=
"address"
/>
<el-table-column
label=
"地址"
align=
"center"
prop=
"address"
/>
<el-table-column
<el-table-column
label=
"下次联系时间"
align=
"center"
prop=
"nextTime"
width=
"180px"
:formatter=
"dateFormatter"
/>
label=
"下次联系时间"
align=
"center"
prop=
"nextTime"
width=
"180px"
:formatter=
"dateFormatter"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
<el-table-column
<el-table-column
label=
"最后跟进时间"
align=
"center"
prop=
"lastTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
label=
"最后跟进时间"
align=
"center"
prop=
"lastTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
<el-table-column
label=
"负责人"
align=
"center"
prop=
"ownerUserId"
>
<el-table-column
label=
"负责人"
align=
"center"
prop=
"ownerUserId"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
{{
scope
.
row
.
ownerUserName
}}
{{
scope
.
row
.
ownerUserName
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<!-- <el-table-column label="所属部门" align="center" prop="ownerUserId" /> -->
<!-- <el-table-column label="所属部门" align="center" prop="ownerUserId" /> -->
<el-table-column
<el-table-column
label=
"更新时间"
align=
"center"
prop=
"updateTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
label=
"更新时间"
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
align=
"center"
prop=
"updateTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
<!-- <el-table-column
<!-- <el-table-column
label="创建人"
label="创建人"
align="center"
align="center"
...
@@ -169,20 +108,10 @@
...
@@ -169,20 +108,10 @@
</el-table-column> -->
</el-table-column> -->
<el-table-column
label=
"操作"
align=
"center"
fixed=
"right"
width=
"200"
>
<el-table-column
label=
"操作"
align=
"center"
fixed=
"right"
width=
"200"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
<el-button
<el-button
plain
type=
"primary"
@
click=
"openForm('update', scope.row.id)"
v-hasPermi=
"['crm:contact:update']"
>
plain
type=
"primary"
@
click=
"openForm('update', scope.row.id)"
v-hasPermi=
"['crm:contact:update']"
>
编辑
编辑
</el-button>
</el-button>
<el-button
<el-button
plain
type=
"danger"
@
click=
"handleDelete(scope.row.id)"
v-hasPermi=
"['crm:contact:delete']"
>
plain
type=
"danger"
@
click=
"handleDelete(scope.row.id)"
v-hasPermi=
"['crm:contact:delete']"
>
删除
删除
</el-button>
</el-button>
</
template
>
</
template
>
...
@@ -190,11 +119,8 @@
...
@@ -190,11 +119,8 @@
</el-table>
</el-table>
<!-- 分页 -->
<!-- 分页 -->
<Pagination
<Pagination
:total=
"total"
:total=
"total"
v-model:page=
"queryParams.pageNo"
v-model:limit=
"queryParams.pageSize"
v-model:page=
"queryParams.pageNo"
@
pagination=
"getList"
/>
v-model:limit=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</ContentWrap>
</ContentWrap>
<!-- 表单弹窗:添加/修改 -->
<!-- 表单弹窗:添加/修改 -->
...
@@ -207,7 +133,6 @@ import download from '@/utils/download'
...
@@ -207,7 +133,6 @@ import download from '@/utils/download'
import
*
as
ContactApi
from
'@/api/crm/contact'
import
*
as
ContactApi
from
'@/api/crm/contact'
import
ContactForm
from
'./ContactForm.vue'
import
ContactForm
from
'./ContactForm.vue'
import
{
DICT_TYPE
}
from
'@/utils/dict'
import
{
DICT_TYPE
}
from
'@/utils/dict'
import
*
as
UserApi
from
'@/api/system/user'
import
*
as
CustomerApi
from
'@/api/crm/customer'
import
*
as
CustomerApi
from
'@/api/crm/customer'
defineOptions
({
name
:
'CrmContact'
})
defineOptions
({
name
:
'CrmContact'
})
...
@@ -218,6 +143,7 @@ const { t } = useI18n() // 国际化
...
@@ -218,6 +143,7 @@ const { t } = useI18n() // 国际化
const
loading
=
ref
(
true
)
// 列表的加载中
const
loading
=
ref
(
true
)
// 列表的加载中
const
total
=
ref
(
0
)
// 列表的总页数
const
total
=
ref
(
0
)
// 列表的总页数
const
list
=
ref
([])
// 列表的数据
const
list
=
ref
([])
// 列表的数据
const
customerList
=
ref
<
CustomerApi
.
CustomerVO
[]
>
([])
// 客户列表
const
queryParams
=
reactive
({
const
queryParams
=
reactive
({
pageNo
:
1
,
pageNo
:
1
,
pageSize
:
10
,
pageSize
:
10
,
...
@@ -282,7 +208,7 @@ const handleDelete = async (id: number) => {
...
@@ -282,7 +208,7 @@ const handleDelete = async (id: number) => {
message
.
success
(
t
(
'common.delSuccess'
))
message
.
success
(
t
(
'common.delSuccess'
))
// 刷新列表
// 刷新列表
await
getList
()
await
getList
()
}
catch
{}
}
catch
{
}
}
}
/** 导出按钮操作 */
/** 导出按钮操作 */
...
@@ -310,5 +236,6 @@ const openDetail = (id: number) => {
...
@@ -310,5 +236,6 @@ const openDetail = (id: number) => {
/** 初始化 **/
/** 初始化 **/
onMounted
(
async
()
=>
{
onMounted
(
async
()
=>
{
await
getList
()
await
getList
()
customerList
.
value
=
await
CustomerApi
.
queryAllList
()
})
})
</
script
>
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment