Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
member
member
Commits
4120b1ca
Commit
4120b1ca
authored
Nov 22, 2021
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: update
parent
16cdd879
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
customerDetail.less
src/components/allCustomers/customerDetail.less
+6
-2
customerDetail.vue
src/components/allCustomers/customerDetail.vue
+2
-2
info.js
src/components/allCustomers/info.js
+7
-0
No files found.
src/components/allCustomers/customerDetail.less
View file @
4120b1ca
...
...
@@ -187,12 +187,16 @@
border: 1px solid #e4e7ed;
box-sizing: border-box;
transition: all 0.3s;
&.integral:hover,
&.coupon:hover {
&:hover {
cursor: pointer;
transform: translateY(-5px);
box-shadow: 0 2px 7px rgba(122, 138, 203, 0.2);
}
&.balance.nohover:hover{
cursor: default;
transform: translateY(0);
box-shadow: none;
}
.icon-wrap {
display: flex;
justify-content: center;
...
...
src/components/allCustomers/customerDetail.vue
View file @
4120b1ca
...
...
@@ -142,8 +142,8 @@
<!-- 资产信息 -->
<
template
v-if=
"section.name==='assets'"
>
<ul
class=
"card-list-wrap max1600"
>
<li
:class=
"['card-item',item.iconTheme]"
v-for=
"item in section.childrenList"
:key=
"item"
@
click=
"goLink(item.path)"
>
<li
:class=
"['card-item',item.iconTheme
,memberInfo.storedValueFlag?'':'nohover'
]"
v-for=
"item in section.childrenList"
:key=
"item"
@
click=
"
item.iconTheme==='balance'?goStoreValue():
goLink(item.path)"
>
<p
:class=
"['icon-wrap', item.iconTheme]"
><i
:class=
"['iconfont', item.icon]"
></i>
</p>
<div
class=
"middle"
>
...
...
src/components/allCustomers/info.js
View file @
4120b1ca
...
...
@@ -348,6 +348,13 @@ export default {
goLink
(
v
)
{
if
(
v
)
this
.
$router
.
push
({
path
:
v
,
query
:
{
memberId
:
this
.
memberId
}
});
},
goStoreValue
()
{
if
(
this
.
memberInfo
.
storedValueFlag
)
{
this
.
$router
.
push
({
path
:
'/storedValue'
,
query
:
{
memberId
:
this
.
memberId
}
});
}
else
{
this
.
$message
.
info
(
"未对接储值明细,暂无数据"
);
}
},
handleSizeChange
(
v
)
{
this
.
logPageParam
.
pageSize
=
v
;
this
.
logPageParam
.
currentPage
=
1
;
...
...
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