Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
ee8b6e4e
Commit
ee8b6e4e
authored
Jun 23, 2022
by
黄卓
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
时间格式化
parent
77beeb39
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
index.vue
src/components/CustomerFollow/index.vue
+3
-0
edit.vue
src/views/ecw/customer/edit.vue
+1
-1
query.vue
src/views/ecw/customer/query.vue
+6
-4
No files found.
src/components/CustomerFollow/index.vue
View file @
ee8b6e4e
...
...
@@ -31,6 +31,7 @@
<el-table-column
prop=
"followTime"
label=
"跟进时间"
:formatter=
"(row, column, cellValue) => parseTime(cellValue)"
>
</el-table-column>
<el-table-column
...
...
@@ -122,6 +123,7 @@ import {createCustomerFollow, getCustomerFollowPage} from "@/api/ecw/customerFol
import
{
DICT_TYPE
,
getDictDataLabel
}
from
'
@/utils/dict
'
import
{
getCustomerContactsList
}
from
"
@/api/ecw/customerContacts
"
import
{
listServiceUser
}
from
"
@/api/system/user
"
import
{
parseTime
}
from
'
@/utils/ruoyi
'
export
default
{
/**
* 客户跟进
...
...
@@ -134,6 +136,7 @@ export default {
data
()
{
return
{
DICT_TYPE
,
parseTime
,
customerFollowList
:
[],
serviceUserList
:
[],
customerContactsList
:
[],
...
...
src/views/ecw/customer/edit.vue
View file @
ee8b6e4e
...
...
@@ -379,7 +379,7 @@ import {getWarehouseList} from "@/api/ecw/warehouse"
import
CustomerLineTable
from
'
@/components/CustomerLineTable
'
import
{
getCustomerSelect
}
from
"
@/api/ecw/customer
"
import
{
listServiceUser
}
from
"
@/api/system/user
"
import
{
getZhongPaoPage
}
from
"
../../../api/ecw/zhongPao
"
import
{
getZhongPaoPage
}
from
'
@/api/ecw/zhongPao
'
export
default
{
name
:
"
edit
"
,
...
...
src/views/ecw/customer/query.vue
View file @
ee8b6e4e
...
...
@@ -18,7 +18,7 @@
<el-descriptions-item
label=
"客户编号"
>
{{
customer
.
number
}}
</el-descriptions-item>
<el-descriptions-item
label=
"客户名称"
>
{{
customer
.
name
}}
</el-descriptions-item>
<el-descriptions-item
label=
"结算方式"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_BALANCE
,
customer
.
balance
)
}}
</el-descriptions-item>
<el-descriptions-item
label=
"客户生日"
>
{{
customer
.
birthday
}}
</el-descriptions-item>
<el-descriptions-item
label=
"客户生日"
>
{{
parseTime
(
customer
.
birthday
,
'
{y
}
-{m
}
-{d
}
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
客户等级
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_LEVEL
,
customer
.
level
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
国家
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
COUNTRY
,
customer
.
country
)
}}
<
/el-descriptions-item
>
<!--
<
el
-
descriptions
-
item
label
=
"
业务员
"
>
{{
customer
}}
<
/el-descriptions-item>--
>
...
...
@@ -29,7 +29,7 @@
<
el
-
descriptions
-
item
label
=
"
跟进客服
"
>
{{
customer
.
customerService
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
公司名称
"
>
{{
customer
.
company
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
联系地址
"
>
{{
customer
.
address
}}
<
/el-descriptions-item
>
<el-descriptions-item
label=
"创建时间"
>
{{
customer
.
createTime
}}
</el-descriptions-item>
<
el
-
descriptions
-
item
label
=
"
创建时间
"
>
{{
parseTime
(
customer
.
createTime
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
状态
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_STATUS
,
customer
.
status
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
主营类别
"
>
{{
productType
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
常提货网点
"
>
{{
pickupPoint
}}
<
/el-descriptions-item
>
...
...
@@ -177,8 +177,9 @@ import { DICT_TYPE, getDictDataLabel } from '@/utils/dict'
import
{
getProductTypeList
}
from
'
@/api/ecw/productType
'
import
{
getNodeList
}
from
'
@/api/ecw/node
'
import
DictSelector
from
"
@/components/DictSelector
"
import
CustomerComplaint
from
"
../customerComplaint
"
import
CustomerFollow
from
"
../../../components/CustomerFollow
"
import
CustomerFollow
from
"
@/components/CustomerFollow
"
import
{
parseTime
}
from
'
@/utils/ruoyi
'
import
CustomerComplaint
from
'
@/views/ecw/customerComplaint
'
export
default
{
name
:
'
query
'
,
...
...
@@ -206,6 +207,7 @@ export default {
return
{
DICT_TYPE
,
getDictDataLabel
,
parseTime
,
nodeList
:
[],
productTypeList
:
[],
customer
:
{
...
...
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