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
d69960af
Commit
d69960af
authored
May 17, 2019
by
member
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of 115.159.76.241:gicmember/member into dev
parents
339b12dd
a2f53e8f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
46 additions
and
48 deletions
+46
-48
posmembers.js
src/components/posmembers/posmembers.js
+6
-6
posmembers.vue
src/components/posmembers/posmembers.vue
+7
-7
ajaxmembersinfo.vue
src/components/wechatmembers/ajaxmembersinfo.vue
+4
-4
total.js
src/components/wechatmembers/total.js
+6
-6
wechat-total.vue
src/components/wechatmembers/wechat-total.vue
+8
-9
wechatmembers.js
src/components/wechatmembers/wechatmembers.js
+7
-7
wechatmembers.vue
src/components/wechatmembers/wechatmembers.vue
+8
-9
No files found.
src/components/posmembers/posmembers.js
View file @
d69960af
...
...
@@ -173,8 +173,8 @@ export default {
if
(
tempVal
==
"attentionDate"
)
{
returnVal
=
"关注时间"
;
}
if
(
tempVal
==
"costFee
Receivable
"
)
{
returnVal
=
"消费总额"
;
if
(
tempVal
==
"costFee
Paid
"
)
{
returnVal
=
"消费总额
(实付)
"
;
}
if
(
tempVal
==
"costTimes"
)
{
returnVal
=
"消费次数"
;
...
...
@@ -182,8 +182,8 @@ export default {
if
(
tempVal
==
"lastCostTime"
)
{
returnVal
=
"最近消费时间"
;
}
if
(
tempVal
==
"lastCost
Receivable
"
)
{
returnVal
=
"最近消费"
;
if
(
tempVal
==
"lastCost
Paid
"
)
{
returnVal
=
"最近消费
(实付)
"
;
}
if
(
tempVal
==
"avgCost"
)
{
returnVal
=
"客单价"
;
...
...
@@ -236,8 +236,8 @@ export default {
if
(
tempVal
==
"lastCost"
)
{
returnVal
=
"最近消费(应收)"
;
}
if
(
tempVal
==
"highCost
Receivable
"
)
{
returnVal
=
"最高单笔"
;
if
(
tempVal
==
"highCost
Paid
"
)
{
returnVal
=
"最高单笔
(实付)
"
;
}
if
(
tempVal
==
"highCost"
)
{
returnVal
=
"最高单笔(应收)"
;
...
...
src/components/posmembers/posmembers.vue
View file @
d69960af
...
...
@@ -155,7 +155,7 @@
<el-table-column
:fixed=
"item === 'name'"
:width=
"item == 'name' ? '150' : ''"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Receivable' || item == 'grade' || item == 'status' || item == 'channel' || item == 'frozenStatus' || item == 'costFeeReceivable' || item == 'lastCostReceivable
'"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Paid' || item == 'grade' || item == 'status' || item == 'channel' || item == 'frozenStatus' || item == 'costFeePaid' || item == 'lastCostPaid
'"
:prop=
"item"
:label=
"item | formatField"
>
...
...
@@ -325,17 +325,17 @@
<span
v-else-if=
"item == 'cardNo'"
>
{{
scope
.
row
.
cardNo
}}
</span>
<span
v-else-if=
"item == 'costFee
Receivable
'"
>
{{
scope
.
row
.
costFee
Receivable
}}
<span
v-else-if=
"item == 'costFee
Paid
'"
>
{{
scope
.
row
.
costFee
Paid
}}
</span>
<span
v-else-if=
"item == 'lastCost
Receivable
'"
>
{{
scope
.
row
.
lastCost
Receivable
}}
<span
v-else-if=
"item == 'lastCost
Paid
'"
>
{{
scope
.
row
.
lastCost
Paid
}}
</span>
<span
v-else-if=
"item == 'highCost'"
>
{{
scope
.
row
.
highCost
}}
</span>
<span
v-else-if=
"item == 'highCost
Receivable
'"
>
{{
scope
.
row
.
highCost
Receivable
}}
<span
v-else-if=
"item == 'highCost
Paid
'"
>
{{
scope
.
row
.
highCost
Paid
}}
</span>
<div
v-else-if=
"item == 'frozenStatus'"
>
<span
...
...
src/components/wechatmembers/ajaxmembersinfo.vue
View file @
d69960af
...
...
@@ -6,7 +6,7 @@
<div
class=
"record-navitem"
>
<!-- 这里跑数据的时候去反了 -->
<p
class=
"lheigth40"
>
消费总额(实付)
</p>
<p
class=
"record-txt"
>
¥
{{
memberInfo
.
costFee
Receivable
|
fomatFloat
}}
</p>
<p
class=
"record-txt"
>
¥
{{
memberInfo
.
costFee
Paid
|
fomatFloat
}}
</p>
</div>
<div
class=
"record-navitem"
>
<p
class=
"lheigth40"
>
消费总额(应收)
</p>
...
...
@@ -34,7 +34,7 @@
</div>
<div
class=
"record-navitem"
>
<p
class=
"lheigth40"
>
最高单笔(实付)
</p>
<p
class=
"record-txt"
>
{{
memberInfo
.
highCost
Receivable
|
fomatFloat
}}
</p>
<p
class=
"record-txt"
>
{{
memberInfo
.
highCost
Paid
|
fomatFloat
}}
</p>
</div>
<div
class=
"record-navitem"
>
<p
class=
"lheigth40"
>
最高单笔(应收)
</p>
...
...
@@ -591,8 +591,8 @@ export default {
highCost
:
temp
.
highCost
,
costCategoryCount
:
temp
.
costCategoryCount
,
avgDiscount
:
temp
.
avgDiscount
,
costFee
Receivable
:
temp
.
costFeeReceivable
,
highCost
Receivable
:
temp
.
highCostReceivable
costFee
Paid
:
temp
.
costFeePaid
,
highCost
Paid
:
temp
.
highCostPaid
};
}
else
{
checkFalse
(
res
.
data
.
message
);
...
...
src/components/wechatmembers/total.js
View file @
d69960af
...
...
@@ -227,17 +227,17 @@ export default {
if
(
tempVal
==
"frozenStatus"
)
{
returnVal
=
"会员状态"
;
}
if
(
tempVal
==
"costFee
Receivable
"
)
{
returnVal
=
"消费总额"
;
if
(
tempVal
==
"costFee
Paid
"
)
{
returnVal
=
"消费总额
(实付)
"
;
}
if
(
tempVal
==
"lastCost
Receivable
"
)
{
returnVal
=
"最近消费"
;
if
(
tempVal
==
"lastCost
Paid
"
)
{
returnVal
=
"最近消费
(实付)
"
;
}
if
(
tempVal
==
"highCost"
)
{
returnVal
=
"最高单笔(应收)"
;
}
if
(
tempVal
==
"highCost
Receivable
"
)
{
returnVal
=
"最高单笔"
;
if
(
tempVal
==
"highCost
Paid
"
)
{
returnVal
=
"最高单笔
(实付)
"
;
}
return
returnVal
;
},
...
...
src/components/wechatmembers/wechat-total.vue
View file @
d69960af
...
...
@@ -165,7 +165,7 @@
:key=
"index"
>
<el-table-column
:fixed=
"item === 'name'"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Receivable' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeeReceivable' || item == 'lastCostReceivable
'"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Paid' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeePaid' || item == 'lastCostPaid
'"
:prop=
"item"
:label=
"item | formatField"
width=
"160"
...
...
@@ -341,17 +341,17 @@
<span
v-else-if=
"item == 'cardNo'"
>
{{
scope
.
row
.
cardNo
}}
</span>
<span
v-else-if=
"item == 'costFee
Receivable
'"
>
{{
scope
.
row
.
costFee
Receivable
}}
<span
v-else-if=
"item == 'costFee
Paid
'"
>
{{
scope
.
row
.
costFee
Paid
}}
</span>
<span
v-else-if=
"item == 'lastCost
Receivable
'"
>
{{
scope
.
row
.
lastCost
Receivable
}}
<span
v-else-if=
"item == 'lastCost
Paid
'"
>
{{
scope
.
row
.
lastCost
Paid
}}
</span>
<span
v-else-if=
"item == 'highCost'"
>
{{
scope
.
row
.
highCost
}}
</span>
<span
v-else-if=
"item == 'highCost
Receivable
'"
>
{{
scope
.
row
.
highCost
Receivable
}}
<span
v-else-if=
"item == 'highCost
Paid
'"
>
{{
scope
.
row
.
highCost
Paid
}}
</span>
<div
v-else-if=
"item == 'frozenStatus'"
>
<span
...
...
@@ -1079,4 +1079,4 @@ export default { ...wechattotal };
color
:
#1890ff
;
cursor
:
pointer
;
}
</
style
>
\ No newline at end of file
</
style
>
src/components/wechatmembers/wechatmembers.js
View file @
d69960af
...
...
@@ -227,18 +227,18 @@ export default {
if
(
tempVal
==
"frozenStatus"
)
{
returnVal
=
"会员状态"
;
}
if
(
tempVal
==
"costFee
Receivable
"
)
{
returnVal
=
"消费总额"
;
if
(
tempVal
==
"costFee
Paid
"
)
{
returnVal
=
"消费总额
(实付)
"
;
}
if
(
tempVal
==
"lastCost
Receivable
"
)
{
returnVal
=
"最近消费"
;
if
(
tempVal
==
"lastCost
Paid
"
)
{
returnVal
=
"最近消费
(实付)
"
;
}
if
(
tempVal
==
"highCost"
)
{
returnVal
=
"最高单笔(应收)"
;
}
if
(
tempVal
==
"highCost
Receivable
"
)
{
returnVal
=
"最高单笔"
;
}
if
(
tempVal
==
"highCost
Paid
"
)
{
returnVal
=
"最高单笔
(实付)
"
;
}
return
returnVal
;
},
formatFieldName
:
function
(
val
)
{
...
...
src/components/wechatmembers/wechatmembers.vue
View file @
d69960af
...
...
@@ -163,7 +163,7 @@
:key=
"index"
>
<el-table-column
:fixed=
"item === 'name'"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Receivable' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeeReceivable' || item == 'lastCostReceivable
'"
v-if=
"item == 'name' || item == 'highCost' || item == 'highCost
Paid' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeePaid' || item == 'lastCostPaid
'"
:prop=
"item"
:label=
"item | formatField"
width=
"160"
...
...
@@ -337,17 +337,17 @@
<span
v-else-if=
"item == 'cardNo'"
>
{{
scope
.
row
.
cardNo
}}
</span>
<span
v-else-if=
"item == 'costFee
Receivable
'"
>
{{
scope
.
row
.
costFee
Receivable
}}
<span
v-else-if=
"item == 'costFee
Paid
'"
>
{{
scope
.
row
.
costFee
Paid
}}
</span>
<span
v-else-if=
"item == 'lastCost
Receivable
'"
>
{{
scope
.
row
.
lastCost
Receivable
}}
<span
v-else-if=
"item == 'lastCost
Paid
'"
>
{{
scope
.
row
.
lastCost
Paid
}}
</span>
<span
v-else-if=
"item == 'highCost'"
>
{{
scope
.
row
.
highCost
}}
</span>
<span
v-else-if=
"item == 'highCost
Receivable
'"
>
{{
scope
.
row
.
highCost
Receivable
}}
<span
v-else-if=
"item == 'highCost
Paid
'"
>
{{
scope
.
row
.
highCost
Paid
}}
</span>
<div
v-else-if=
"item == 'frozenStatus'"
>
<span
...
...
@@ -1068,4 +1068,4 @@ export default { ...wechatmembers };
color
:
#1890ff
;
cursor
:
pointer
;
}
</
style
>
\ No newline at end of file
</
style
>
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