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
6d0231d4
authored
Feb 04, 2024
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRM:优化合同列表界面
parent
3ad68c32
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
19 deletions
+75
-19
src/views/crm/contact/index.vue
+1
-1
src/views/crm/contract/index.vue
+74
-18
No files found.
src/views/crm/contact/index.vue
View file @
6d0231d4
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
v-for=
"item in customerList"
v-for=
"item in customerList"
:key=
"item.id"
:key=
"item.id"
:label=
"item.name"
:label=
"item.name"
:value=
"item.id"
:value=
"item.id
!
"
/>
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
...
...
src/views/crm/contract/index.vue
View file @
6d0231d4
...
@@ -57,44 +57,84 @@
...
@@ -57,44 +57,84 @@
<!-- TODO 芋艿:各种字段要调整 -->
<!-- TODO 芋艿:各种字段要调整 -->
<ContentWrap>
<ContentWrap>
<el-table
v-loading=
"loading"
:data=
"list"
:show-overflow-tooltip=
"true"
:stripe=
"true"
>
<el-table
v-loading=
"loading"
:data=
"list"
:show-overflow-tooltip=
"true"
:stripe=
"true"
>
<el-table-column
align=
"center"
label=
"合同编号"
prop=
"no"
width=
"130"
/>
<el-table-column
align=
"center"
fixed=
"left"
label=
"合同编号"
prop=
"no"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"合同名称"
prop=
"name"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"合同名称"
prop=
"name"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"合同状态"
prop=
"auditStatus"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"客户名称"
prop=
"customerName"
width=
"120"
>
<el-table-column
align=
"center"
label=
"客户名称"
prop=
"customerName"
width=
"130"
/>
<template
#
default=
"scope"
>
<el-link
:underline=
"false"
type=
"primary"
@
click=
"openCustomerDetail(scope.row.customerId)"
>
{{
scope
.
row
.
customerName
}}
</el-link>
</
template
>
</el-table-column>
<!-- TODO @puhui999:做了商机详情后,可以把这个超链接加上 -->
<el-table-column
align=
"center"
label=
"商机名称"
prop=
"businessName"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"商机名称"
prop=
"businessName"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"合同金额(元)"
prop=
"price"
width=
"130"
/>
<el-table-column
<el-table-column
:formatter=
"dateFormatter"
align=
"center"
align=
"center"
label=
"下单时间"
label=
"下单时间"
prop=
"orderDate"
prop=
"orderDate"
width=
"180"
width=
"120"
:formatter=
"dateFormatter2"
/>
/>
<el-table-column
<el-table-column
:formatter=
"dateFormatter"
align=
"center"
align=
"center"
label=
"开始时间"
label=
"合同金额"
prop=
"price"
width=
"130"
:formatter=
"fenToYuanFormat"
/>
<el-table-column
align=
"center"
label=
"合同开始时间"
prop=
"startTime"
prop=
"startTime"
width=
"180"
width=
"120"
:formatter=
"dateFormatter2"
/>
/>
<el-table-column
<el-table-column
:formatter=
"dateFormatter"
align=
"center"
align=
"center"
label=
"结束时间"
label=
"
合同
结束时间"
prop=
"endTime"
prop=
"endTime"
width=
"180"
width=
"120"
:formatter=
"dateFormatter2"
/>
/>
<el-table-column
align=
"center"
label=
"客户签约人"
prop=
"contactName"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"客户签约人"
prop=
"contactName"
width=
"130"
>
<
template
#
default=
"scope"
>
<el-link
:underline=
"false"
type=
"primary"
@
click=
"openContactDetail(scope.row.contactId)"
>
{{
scope
.
row
.
contactName
}}
</el-link>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"公司签约人"
prop=
"signUserName"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"公司签约人"
prop=
"signUserName"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"备注"
prop=
"remark"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"备注"
prop=
"remark"
width=
"130"
/>
<el-table-column
align=
"center"
label=
"审核状态"
prop=
"auditStatus"
width=
"130"
/>
<!-- TODO @puhui999:后续可加 【已收款金额】、【未收款金额】 -->
<el-table-column
align=
"center"
label=
"负责人"
prop=
"ownerUserName"
width=
"120"
/>
<el-table-column
align=
"center"
label=
"创建人"
prop=
"creatorName"
width=
"120"
/>
<el-table-column
<el-table-column
:formatter=
"dateFormatter"
:formatter=
"dateFormatter"
align=
"center"
align=
"center"
label=
"
最后跟进
时间"
label=
"
更新
时间"
prop=
"
contactLast
Time"
prop=
"
update
Time"
width=
"180"
width=
"180
px
"
/>
/>
<el-table-column
:formatter=
"dateFormatter"
align=
"center"
label=
"创建时间"
prop=
"createTime"
width=
"180px"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"合同状态"
prop=
"auditStatus"
width=
"120"
>
<
template
#
default=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.CRM_AUDIT_STATUS"
:value=
"scope.row.auditStatus"
/>
</
template
>
</el-table-column>
<el-table-column
fixed=
"right"
label=
"操作"
width=
"250"
>
<el-table-column
fixed=
"right"
label=
"操作"
width=
"250"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
<el-button
<el-button
...
@@ -105,6 +145,7 @@
...
@@ -105,6 +145,7 @@
>
>
编辑
编辑
</el-button>
</el-button>
<!-- TODO @puhui999:可以加下判断,什么情况下,可以审批; -->
<el-button
<el-button
v-hasPermi=
"['crm:contract:update']"
v-hasPermi=
"['crm:contract:update']"
link
link
...
@@ -145,10 +186,12 @@
...
@@ -145,10 +186,12 @@
<ContractForm
ref=
"formRef"
@
success=
"getList"
/>
<ContractForm
ref=
"formRef"
@
success=
"getList"
/>
</template>
</template>
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
{
dateFormatter
,
dateFormatter2
}
from
'@/utils/formatTime'
import
download
from
'@/utils/download'
import
download
from
'@/utils/download'
import
*
as
ContractApi
from
'@/api/crm/contract'
import
*
as
ContractApi
from
'@/api/crm/contract'
import
ContractForm
from
'./ContractForm.vue'
import
ContractForm
from
'./ContractForm.vue'
import
{
fenToYuanFormat
}
from
'@/utils/formatter'
import
{
DICT_TYPE
}
from
'@/utils/dict'
defineOptions
({
name
:
'CrmContract'
})
defineOptions
({
name
:
'CrmContract'
})
...
@@ -237,10 +280,23 @@ const handleApprove = async (row: ContractApi.ContractVO) => {
...
@@ -237,10 +280,23 @@ const handleApprove = async (row: ContractApi.ContractVO) => {
message
.
success
(
'提交审核成功!'
)
message
.
success
(
'提交审核成功!'
)
await
getList
()
await
getList
()
}
}
/** 打开合同详情 */
const
{
push
}
=
useRouter
()
const
{
push
}
=
useRouter
()
const
openDetail
=
(
id
:
number
)
=>
{
const
openDetail
=
(
id
:
number
)
=>
{
push
({
name
:
'CrmContractDetail'
,
params
:
{
id
}
})
push
({
name
:
'CrmContractDetail'
,
params
:
{
id
}
})
}
}
/** 打开客户详情 */
const
openCustomerDetail
=
(
id
:
number
)
=>
{
push
({
name
:
'CrmCustomerDetail'
,
params
:
{
id
}
})
}
/** 打开联系人详情 */
const
openContactDetail
=
(
id
:
number
)
=>
{
push
({
name
:
'CrmContactDetail'
,
params
:
{
id
}
})
}
/** 初始化 **/
/** 初始化 **/
onMounted
(()
=>
{
onMounted
(()
=>
{
getList
()
getList
()
...
...
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