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
82936447
Commit
82936447
authored
Aug 19, 2024
by
yujinyao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户详情页面字段调整
parent
77a31264
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
247 additions
and
100 deletions
+247
-100
.env.development
.env.development
+2
-2
en_US.json
src/i18n/languages/en_US.json
+3
-1
zh_CN.json
src/i18n/languages/zh_CN.json
+3
-1
query.vue
src/views/ecw/customer/query.vue
+239
-96
No files found.
.env.development
View file @
82936447
...
...
@@ -6,10 +6,10 @@ VUE_APP_TITLE = 捷道管理系统-测试站
# 捷道管理系统/开发环境
#
VUE_APP_BASE_API = 'https://apitest.groupage.cn'
VUE_APP_BASE_API = 'https://apitest.groupage.cn'
# VUE_APP_BASE_API = 'http://110.41.143.128:48080'
VUE_APP_BASE_API = 'http://127.0.0.1:48080'
#
VUE_APP_BASE_API = 'http://127.0.0.1:48080'
# 路由懒加载
...
...
src/i18n/languages/en_US.json
View file @
82936447
...
...
@@ -4507,5 +4507,7 @@
"身份证认证状态"
:
"Identity card authentication status"
,
"角标字段"
:
"Subscript field"
,
"不清楚请留空,已设勿改"
:
"Unclear, please leave blank. It has been set to remain unchanged"
,
"退仓/已混箱品名"
:
"Returned/mixed Box"
"退仓/已混箱品名"
:
"Returned/mixed Box"
,
"基本"
:
"base"
,
"国籍"
:
"country"
}
src/i18n/languages/zh_CN.json
View file @
82936447
...
...
@@ -292,5 +292,7 @@
"立方数(CBM)"
:
"立方数(CBM)"
,
"选取文件"
:
"选取文件"
,
"查看提单 {selfNo} 柜号:{cubNo} 柜型:{cabinetLabel}"
:
"查看提单 {selfNo} 柜号:{cubNo} 柜型:{cabinetLabel}"
,
"退仓/已混箱品名"
:
"退仓/已混箱品名"
"退仓/已混箱品名"
:
"退仓/已混箱品名"
,
"基本"
:
"基本"
,
"国籍"
:
"国籍"
}
src/views/ecw/customer/query.vue
View file @
82936447
...
...
@@ -12,7 +12,7 @@
<el-button
v-hasPermi=
"['ecw:customer:query-delete']"
type=
"danger"
size=
"small"
@
click=
"deleteCustomerFn()"
>
{{
$t
(
'
删除
'
)
}}
</el-button>
</div>
</div>
<el-card
style=
"margin-top: 15px;"
>
<el-card
style=
"margin-top: 15px;"
v-show=
"false"
>
<el-descriptions
:column=
"4"
border
>
<el-descriptions-item
:label=
"$t('客户编号')"
>
{{
customer
.
number
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('客户名称')"
><span
style=
"white-space: pre-wrap;"
>
{{
customer
.
name
}}
</span></el-descriptions-item>
...
...
@@ -60,96 +60,70 @@
<
/el-descriptions
>
<
/el-card
>
<
el
-
card
style
=
"
margin-top: 15px
"
>
<
h3
>
{{
$t
(
'
联系人
'
)
}}
<
/h3
>
<
el
-
card
style
=
"
margin-top: 15px;
"
>
<
el
-
descriptions
:
title
=
"
$t('基本')
"
:
column
=
"
3
"
border
>
<
template
slot
=
"
extra
"
>
<
el
-
button
type
=
"
primary
"
size
=
"
small
"
@
click
=
"
showMore = !showMore
"
>
{{
showMore
?
$t
(
'
隐藏
'
)
:
$t
(
'
更多
'
)
}}
<
/el-button
>
<
/template
>
<
el
-
table
:
data
=
"
customerContacts
"
style
=
"
width: 100%
"
border
>
<
el
-
table
-
column
prop
=
"
department
"
:
label
=
"
$t('部门')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
position
"
:
label
=
"
$t('职位')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
name
"
:
label
=
"
$t('联系人')
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户编号')
"
>
{{
customer
.
number
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户名称')
"
><
span
style
=
"
white-space: pre-wrap;
"
>
{{
customer
.
name
}}
<
/span></
el
-
descriptions
-
item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('国籍')
"
>
{{
$l
(
customer
,
'
countryName
'
)
}}
{{
customer
.
countryName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户来源')
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_SOURCE
,
customer
.
source
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户状态')
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_STATUS
,
customer
.
status
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户经理')
"
>
{{
customer
.
customerServiceName
}}
<
/el-descriptions-item
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
nameEn
"
:
label
=
"
$t('联系人英文名称')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
phoneNew
"
:
label
=
"
$t('联系方式')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
+
{{
row
.
areaCode
}}
{{
row
.
phoneNew
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
userid
"
:
label
=
"
$t('关联账号')
"
:
formatter
=
"
userIdFormatter
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
social
"
:
label
=
"
$t('社交软件')
"
:
formatter
=
"
(row, column, cellValue) => getDictDataLabel(DICT_TYPE.SOCIAL, cellValue)
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
socialNumber
"
:
label
=
"
$t('社交软件号码')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
email
"
:
label
=
"
$t('邮箱')
"
>
<
/el-table-column
>
<
/el-table
>
<
/el-card
>
<
el
-
card
style
=
"
margin-top: 15px;
"
>
<
h3
>
{{
$t
(
'
银行账户
'
)
}}
<
/h3
>
<
el
-
table
:
data
=
"
customer.customerBankBackVOList
"
border
>
<
el
-
table
-
column
:
label
=
"
$t('编号')
"
type
=
"
index
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('账户名称')
"
prop
=
"
accountName
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('币别')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
$l
(
currecyList
.
find
(
i
=>
row
.
currency
==
i
.
id
),
'
title
'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行名称')
"
prop
=
"
bankName
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行账户')
"
prop
=
"
bankAccount
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行代码')
"
prop
=
"
bankCode
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('账户类型')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
Number
(
row
.
accountType
)
===
1
?
$t
(
'
公账
'
)
:
$t
(
'
私账
'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('状态')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
row
.
status
?
$t
(
'
正常
'
)
:
$t
(
'
停用
'
)
}}
<
el
-
descriptions
-
item
:
label
=
"
$t('询盘信息')
"
>
{{
customer
.
inquiry
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('备注')
"
>
{{
customer
.
remarks
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('图片')
"
>
<
image
-
display
:
picture
-
urls
=
"
customer.picture ? customer.picture.split(',') : []
"
>
<
el
-
button
type
=
"
text
"
>
查看图片
<
/el-button
>
<
/image-display
>
<
/el-descriptions-item
>
<
template
v
-
if
=
"
showMore
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户等级')
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_LEVEL
,
customer
.
level
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('推介人')
"
>
{{
customer
.
promoterName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户生日')
"
>
{{
parseTime
(
customer
.
birthday
,
'
{y
}
-{m
}
-{d
}
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('业绩类型')
"
>
{{
customer
.
isNew
?
$t
(
'
新客户
'
)
:
$t
(
'
老客户
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('资源类型')
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.ECW_CUSTOMER_RESOURCE_TYPE
"
:
value
=
"
customer.resourceType
"
><
/dict-tag
>
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户英文名称')
"
>
{{
customer
.
nameEn
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('联系地址')
"
>
{{
customer
.
address
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
首次成交时间
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
掉入公海时间
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
获取方式
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
创建入口
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
捞取时间
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
归属时间
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('创建人')
"
>
{{
customer
.
founderName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('创建时间')
"
>
{{
parseTime
(
customer
.
createTime
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
最后更新人
"
><
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
最后更新时间
"
><
/el-descriptions-item
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行地址')
"
prop
=
"
bankAddress
"
><
/el-table-column
>
<
/el-table
>
<
/el-descriptions
>
<
/el-card
>
<
el
-
tabs
v
-
model
=
"
activeName
"
style
=
"
margin-top: 15px
"
type
=
"
border-card
"
>
<
el
-
tab
-
pane
name
=
"
order
"
:
label
=
"
$t('订单')
"
>
<
el
-
descriptions
:
column
=
"
2
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('海空联运/海运拼柜/海运整柜/专线空运')
"
>
{{
orderStatisticsObj
.
hklyTotal
||
0
}}
/
{{
orderStatisticsObj
.
hypgTotal
||
0
}}
/
{{
orderStatisticsObj
.
hyzgTotal
||
0
}}
/
{{
orderStatisticsObj
.
zxkyTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('最后交易日期')
"
>
{{
orderStatisticsObj
.
lastBusinessDate
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('全部订单/控货订单')
"
>
{{
orderStatisticsObj
.
allOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
controlOrderTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('最后交易单号')
"
>
{{
orderStatisticsObj
.
lastBusinessOrderNo
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('报价/下单/入仓')
"
>
{{
orderStatisticsObj
.
offerOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
pickOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
wareHousingTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('储存量')
"
>
{{
orderStatisticsObj
.
stock
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('已出货订单')
"
>
{{
orderStatisticsObj
.
shipmentTotal
||
0
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
el
-
card
class
=
"
box-card
"
>
<
div
slot
=
"
header
"
class
=
"
clearfix
"
>
<
el
-
form
:
inline
=
"
true
"
>
...
...
@@ -196,6 +170,7 @@
<
/router-link
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
报价单
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('唛头')
"
align
=
"
center
"
prop
=
"
marks
"
/>
<
el
-
table
-
column
:
label
=
"
$t('总箱数/入仓箱数')
"
align
=
"
center
"
prop
=
"
sumNum
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
...
...
@@ -232,6 +207,7 @@
<
dict
-
tag
:
type
=
"
DICT_TYPE.ECW_TRANSPORT_TYPE
"
:
value
=
"
row.transportId
"
/>
/ {{row.objectiveName
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
运输方式-渠道/目的仓
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('控货')
"
align
=
"
center
"
prop
=
"
transportId
"
>
<
template
slot
-
scope
=
"
{row
}
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.INFRA_BOOLEAN_STRING
"
:
value
=
"
row.isCargoControl
"
/>
...
...
@@ -247,7 +223,13 @@
{{
parseTime
(
row
.
rucangTime
)
}}
<
/template
>
<
/el-table-column
>
<
/el-table
>
<
el
-
table
-
column
:
label
=
"
$t('创建时间')
"
align
=
"
center
"
prop
=
"
createTime
"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"
装柜/出仓时间
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"
到仓时间
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"
提货率
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"
客户经理
"
align
=
"
center
"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"
业绩归属客户方
"
align
=
"
center
"
><
/el-table-column
>
<
/el-table
>
<
pagination
@
pagination
=
"
getorderList
"
:
page
.
sync
=
"
queryParams.page
"
:
limit
.
sync
=
"
queryParams.rows
"
:
total
=
"
orderTotal
"
><
/pagination
>
<
/el-card
>
<
/el-tab-pane
>
...
...
@@ -273,12 +255,26 @@
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
consignorName
"
:
label
=
"
$t('
客户名称
')
"
:
label
=
"
$t('
联系人
')
"
>
<
template
v
-
slot
>
{{
customer
.
name
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('联系方式')
"
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
始化仓
"
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
运输方式-渠道/目的仓
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
objectiveName
"
:
label
=
"
$t('目的地')
"
...
...
@@ -301,6 +297,22 @@
:
label
=
"
$t('负责人')
"
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"
报价有效期
"
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('客户经理')
"
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('创建时间')
"
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('操作')
"
>
<
/el-table-column
>
<
/el-table
>
<
pagination
@
pagination
=
"
getInfoListOfferPage
"
:
page
.
sync
=
"
infoListOfferFrom.pageNo
"
:
limit
.
sync
=
"
infoListOfferFrom.pageSize
"
:
total
=
"
infoListOfferTotal
"
><
/pagination
>
<
/el-tab-pane
>
...
...
@@ -341,17 +353,57 @@
<
pagination
v
-
show
=
"
infoListReceiptList.length
"
:
total
=
"
infoListReceiptTotal
"
:
page
.
sync
=
"
infoListReceiptFrom.pageNo
"
:
limit
.
sync
=
"
infoListReceiptFrom.pageSize
"
@
pagination
=
"
infoListReceiptFn
"
/>
<
/el-tab-pane
>
<
el
-
tab
-
pane
name
=
"
d
ata
"
:
label
=
"
$t('数据')
"
>
<
el
-
tab
-
pane
name
=
"
d
eliver
"
label
=
"
发货评估
"
>
<
el
-
descriptions
:
column
=
"
2
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('海空联运/海运拼柜/海运整柜/专线空运')
"
>
{{
orderStatisticsObj
.
hklyTotal
||
0
}}
/
{{
orderStatisticsObj
.
hypgTotal
||
0
}}
/
{{
orderStatisticsObj
.
hyzgTotal
||
0
}}
/
{{
orderStatisticsObj
.
zxkyTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('最后交易日期')
"
>
{{
orderStatisticsObj
.
lastBusinessDate
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('全部订单/控货订单')
"
>
{{
orderStatisticsObj
.
allOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
controlOrderTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('最后交易单号')
"
>
{{
orderStatisticsObj
.
lastBusinessOrderNo
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('报价/下单/入仓')
"
>
{{
orderStatisticsObj
.
offerOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
pickOrderTotal
||
0
}}
/
{{
orderStatisticsObj
.
wareHousingTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('储存量')
"
>
{{
orderStatisticsObj
.
stock
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('已出货订单')
"
>
{{
orderStatisticsObj
.
shipmentTotal
||
0
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('客户类别')
"
>
{{
getDictDatas2
(
DICT_TYPE
.
CUSTOMER_TYPE
,
(
customer
.
type
||
''
).
split
(
'
,
'
)).
map
(
e
=>
isChinese
?
e
.
label
:
e
.
labelEn
).
join
(
'
,
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('出货渠道')
"
>
{{
getDictDatas2
(
DICT_TYPE
.
ECW_CUSTOMER_TRANSPORT_TYPE
,
(
customer
.
transportType
||
''
).
split
(
'
,
'
)).
map
(
e
=>
isChinese
?
e
.
label
:
e
.
labelEn
).
join
(
'
,
'
)
}}
<!--
<
dict
-
tag
v
-
if
=
"
customer.transportType
"
v
-
for
=
"
item in (customer.transportType || '').split(',')
"
:
type
=
"
DICT_TYPE.ECW_CUSTOMER_TRANSPORT_TYPE
"
:
value
=
"
item
"
><
/dict-tag>--
>
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('常提货网点')
"
>
{{
$l
(
customer
,
'
pickupPointName
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('主营类别')
"
>
{{
$l
(
customer
,
'
productTypeName
'
)
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
/el-tab-pane
>
<
el
-
tab
-
pane
name
=
"
financial
"
label
=
"
财务资料
"
>
<
el
-
descriptions
:
column
=
"
2
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('公司名称')
"
>
{{
customer
.
company
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('公司英文名称')
"
>
{{
customer
.
companyEn
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
v
-
if
=
"
permissions.includes('ecw:customer:query-card')
"
:
label
=
"
$t('身份证姓名')
"
>
{{
customer
.
carName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
v
-
if
=
"
permissions.includes('ecw:customer:query-card')
"
:
label
=
"
$t('身份证号码')
"
>
{{
customer
.
carNo
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('结算方式')
"
>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_BALANCE
,
customer
.
balance
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('付款人姓名')
"
>
{{
customer
.
payerName
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
el
-
card
class
=
"
box-card
"
>
<
div
slot
=
"
header
"
>
开票信息
<
/div
>
<
el
-
descriptions
:
column
=
"
2
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('发票抬头')
"
>
{{
customer
.
invoiceTitle
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('纳税人识别号')
"
>
{{
customer
.
licenseNumber
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('开户行')
"
>
{{
customer
.
bank
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('账户')
"
>
{{
customer
.
bankNumber
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('项目')
"
>
{{
customer
.
project
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('开票地址')
"
>
{{
customer
.
billingAddress
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('开票电话')
"
>
{{
customer
.
billingTell
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('税率')
"
>
{{
customer
.
taxRate
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
/el-card
>
<
/el-tab-pane
>
<
el
-
tab
-
pane
name
=
"
special
"
label
=
"
特殊设置
"
>
<
el
-
descriptions
:
column
=
"
2
"
>
<
el
-
descriptions
-
item
:
label
=
"
$t('是否显示提单价格')
"
>
<
el
-
switch
v
-
model
=
"
customer.isShowTidanPrice
"
disabled
><
/el-switch
>
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('到仓确认')
"
>
{{
customer
.
arrivalConfirm
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('重货标准')
"
>
{{
customer
.
weightUnit
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('泡货标准')
"
>
{{
customer
.
lightUnit
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
/el-tab-pane
>
<
el
-
tab
-
pane
name
=
"
empower
"
:
label
=
"
$t('品牌授权')
"
>
<
el
-
table
border
style
=
"
width:100%
"
:
data
=
"
brandAuthorizationList
"
>
<
el
-
table
-
column
type
=
"
index
"
:
prop
=
"
$t('序号')
"
><
/el-table-column
>
...
...
@@ -454,6 +506,96 @@
<
customer
-
log
:
customerId
=
"
id
"
v
-
if
=
"
'operationLog' === activeName
"
><
/customer-log
>
<
/el-tab-pane
>
<
/el-tabs
>
<
el
-
card
style
=
"
margin-top: 15px
"
>
<
h3
>
{{
$t
(
'
联系人
'
)
}}
<
/h3
>
<
el
-
table
:
data
=
"
customerContacts
"
style
=
"
width: 100%
"
border
>
<
el
-
table
-
column
prop
=
"
department
"
:
label
=
"
$t('部门')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
position
"
:
label
=
"
$t('职位')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
name
"
:
label
=
"
$t('联系人')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
nameEn
"
:
label
=
"
$t('联系人英文名称')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
phoneNew
"
:
label
=
"
$t('联系方式')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
+
{{
row
.
areaCode
}}
{{
row
.
phoneNew
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
userid
"
:
label
=
"
$t('关联账号')
"
:
formatter
=
"
userIdFormatter
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
social
"
:
label
=
"
$t('社交软件')
"
:
formatter
=
"
(row, column, cellValue) => getDictDataLabel(DICT_TYPE.SOCIAL, cellValue)
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
socialNumber
"
:
label
=
"
$t('社交软件号码')
"
>
<
/el-table-column
>
<
el
-
table
-
column
prop
=
"
email
"
:
label
=
"
$t('邮箱')
"
>
<
/el-table-column
>
<
/el-table
>
<
/el-card
>
<
el
-
card
style
=
"
margin-top: 15px;
"
>
<
h3
>
{{
$t
(
'
银行账户
'
)
}}
<
/h3
>
<
el
-
table
:
data
=
"
customer.customerBankBackVOList
"
border
>
<
el
-
table
-
column
:
label
=
"
$t('编号')
"
type
=
"
index
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('账户名称')
"
prop
=
"
accountName
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('币别')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
$l
(
currecyList
.
find
(
i
=>
row
.
currency
==
i
.
id
),
'
title
'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行名称')
"
prop
=
"
bankName
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行账户')
"
prop
=
"
bankAccount
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行代码')
"
prop
=
"
bankCode
"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('账户类型')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
Number
(
row
.
accountType
)
===
1
?
$t
(
'
公账
'
)
:
$t
(
'
私账
'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('状态')
"
>
<
template
v
-
slot
=
"
{row
}
"
>
{{
row
.
status
?
$t
(
'
正常
'
)
:
$t
(
'
停用
'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('银行地址')
"
prop
=
"
bankAddress
"
><
/el-table-column
>
<
/el-table
>
<
/el-card
>
<
/el-col
>
<
/el-row
>
<
el
-
dialog
...
...
@@ -669,7 +811,7 @@ export default {
pageNo
:
1
,
pageSize
:
10
,
total
:
0
}
,
}
,
getCustomerGradeList
:[],
customerCreditLogFrom
:{
pageNo
:
1
,
...
...
@@ -700,7 +842,8 @@ export default {
pageSize
:
10
,
}
,
infoListReceiptTotal
:
0
,
country
:
''
country
:
''
,
showMore
:
true
}
}
,
computed
:
{
...
...
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