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
564add04
Commit
564add04
authored
Aug 08, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 客户日志接口修改
parent
abc8910b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
20 deletions
+19
-20
customerLog.vue
src/components/allCustomers/components/customerLog.vue
+10
-11
integralDataPage.vue
src/components/wechatmembers/integralDataPage.vue
+9
-9
No files found.
src/components/allCustomers/components/customerLog.vue
View file @
564add04
...
...
@@ -14,21 +14,21 @@
<p
class=
"font14 tip-p"
v-if=
"!memberId"
>
展示近一年的日志
</p>
</div>
<el-table
:data=
"tableData"
style=
"width: 100%"
>
<el-table-column
prop=
"createTime"
label=
"时间"
min-width=
"1
00
px"
>
<el-table-column
prop=
"createTime"
label=
"时间"
min-width=
"1
38
px"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
createTime
|
formatDate
(
'ymd'
)
}}
<br
/>
{{
scope
.
row
.
createTime
|
formatDate
(
'hms'
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"operType"
label=
"日志类型"
min-width=
"1
00
px"
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operReason"
label=
"事由"
min-width=
"1
00
px"
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operContent"
label=
"日志详情"
min-width=
"
230
px"
show-overflow-tooltip
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operRemark"
label=
"备注"
min-width=
"2
3
0px"
show-overflow-tooltip
>
<el-table-column
prop=
"operType"
label=
"日志类型"
min-width=
"1
66
px"
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operReason"
label=
"事由"
min-width=
"1
38
px"
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operContent"
label=
"日志详情"
min-width=
"
301
px"
show-overflow-tooltip
:formatter=
"(row, col, val) => val || '--'"
/>
<el-table-column
prop=
"operRemark"
label=
"备注"
min-width=
"2
9
0px"
show-overflow-tooltip
>
<
template
slot-scope=
"{ row }"
>
<span
v-if=
"row.operRemark"
v-html=
"row.operRemark"
/>
<span
v-else
>
--
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"操作"
width=
"80
"
v-if=
"memberId"
>
<el-table-column
prop=
""
label=
"操作"
min-width=
"77px
"
v-if=
"memberId"
>
<
template
slot-scope=
"{ row }"
>
<el-button
v-if=
"row.operType == '客户合并' && row.referLogId && (row.referLogId != -1 && row.referLogId != '')"
type=
"text"
@
click=
"goLink('/customerLog',row.referLogId)"
>
查看
</el-button>
<p
v-else
>
--
</p>
...
...
@@ -99,16 +99,15 @@ export default {
methods
:
{
// 级联搜索
filterMethod
(
e
)
{
console
.
log
(
e
.
length
);
if
(
e
&&
e
.
length
>
0
)
{
if
(
e
[
0
])
{
//
if(e[0]) {
this
.
logPageParam
.
operType
=
e
[
0
];
}
else
if
(
e
[
1
])
{
//
}else if (e[1]) {
this
.
logPageParam
.
operReason
=
e
[
1
]
}
//
}
}
else
{
this
.
logPageParam
.
operType
=
null
;
//
this.logPageParam.operReason = null;
this
.
logPageParam
.
operReason
=
null
;
}
this
.
logPageParam
.
currentPage
=
1
;
this
.
getLogPage
();
...
...
src/components/wechatmembers/integralDataPage.vue
View file @
564add04
...
...
@@ -72,7 +72,7 @@
<el-table-column
prop=
"callBeginTime"
label=
"时间"
min-width=
"11
0
px"
min-width=
"11
8
px"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
createTime
|
formatDate
(
'ymd'
)
}}
<br
/>
{{
scope
.
row
.
createTime
|
formatDate
(
'hms'
)
}}
...
...
@@ -81,7 +81,7 @@
<el-table-column
prop=
"intervalInout"
label=
"日志类型"
min-width=
"
8
0px"
min-width=
"
12
0px"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.intervalInout == 1"
>
积分获取
</span>
...
...
@@ -91,12 +91,12 @@
<el-table-column
prop=
"memberIntegralName"
label=
"事由"
min-width=
"
90
px"
min-width=
"
108
px"
></el-table-column>
<el-table-column
prop=
"intervalHistory"
label=
"日志详情"
min-width=
"
80
px"
min-width=
"
132
px"
>
<
template
slot-scope=
"scope"
>
<span
:style=
"
{color: scope.row.intervalHistory > 0 ? 'green' : 'red'}">
{{
scope
.
row
.
intervalHistory
}}
</span>
...
...
@@ -111,28 +111,28 @@
<span>{{ row.frozenStatus==1?'冻结':'可用' }}</span>
</template>
</el-table-column> -->
<el-table-column
prop=
"sourceType"
label=
"来源渠道"
min-width=
"
80
px"
:formatter=
"formatSourceType"
></el-table-column>
<el-table-column
prop=
"sourceType"
label=
"来源渠道"
min-width=
"
98
px"
:formatter=
"formatSourceType"
></el-table-column>
<el-table-column
prop=
"remark"
label=
"备注"
min-width=
"1
60
px"
min-width=
"1
28
px"
></el-table-column>
<el-table-column
prop=
"mainStoreName"
label=
"服务门店"
min-width=
"1
60
px"
min-width=
"1
46
px"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop=
"openStoreName"
label=
"开卡门店"
min-width=
"1
60
px"
min-width=
"1
41
px"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop=
"intervalEffect"
label=
"积分成本主体"
min-width=
"1
10
px"
min-width=
"1
32
px"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
...
...
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