Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-3
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
office
haoban-3
Commits
73c50248
Commit
73c50248
authored
Jul 18, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: dist
parent
83bc0e66
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
actCode.js
src/api/actCode.js
+3
-0
attractFlowLinkRouter.js
src/router/actCodeManageRouter/attractFlowLinkRouter.js
+5
-0
detail.vue
...views/salesleads/actCodeManage/attractFlowLink/detail.vue
+1
-1
operateLog.vue
src/views/salesleads/actCodeManage/operateLog.vue
+4
-4
No files found.
src/api/actCode.js
View file @
73c50248
...
...
@@ -71,3 +71,6 @@ export const businessType = params => getRequest('/haoban-manage3-web/log-record
// 获取 操作类型
export
const
optTypes
=
params
=>
getRequest
(
'/haoban-manage3-web/log-record/opt-types'
,
params
);
// 获取 操作人姓名/手机号
export
const
listUserBySearchName
=
params
=>
getRequest
(
'/haoban-manage3-web/list-user-by-search-name'
,
params
);
src/router/actCodeManageRouter/attractFlowLinkRouter.js
View file @
73c50248
...
...
@@ -50,6 +50,11 @@ const attractFlowLinkRouter = [
type
:
'edit'
},
component
:
_import
(
'salesleads/actCodeManage/attractFlowLink/landingPage'
,
'detail'
)
},
{
path
:
'/operationLog'
,
name
:
'操作日志'
,
component
:
_import
(
'salesleads/actCodeManage'
,
'operateLog'
)
}
];
...
...
src/views/salesleads/actCodeManage/attractFlowLink/detail.vue
View file @
73c50248
...
...
@@ -20,7 +20,7 @@
<el-form-item
label=
"链接标签"
required
prop=
"memberLabelId"
>
<el-button
plain
v-if=
"!form.memberLabelId"
@
click=
"tagsDialogVisible = true"
><i
class=
"iconfont-components3 icon-cp-PlusOutlined addPic"
></i>
添加标签
</el-button>
<el-tag
v-else
closable
@
close=
"handleTagCloseTag"
>
{{
form
.
memberLabelName
}}
</el-tag>
<dm-memberTag-group
:visiable
.
sync=
"tagsDialogVisible"
isHb
projectName=
"haobao-3"
@
save=
"saveTagPop"
></dm-memberTag-group>
<dm-memberTag-group
:visiable
.
sync=
"tagsDialogVisible"
projectName=
"haobao-3"
@
save=
"saveTagPop"
></dm-memberTag-group>
</el-form-item>
</div>
<dm-sub-title
type=
"line"
>
分配规则
</dm-sub-title>
...
...
src/views/salesleads/actCodeManage/operateLog.vue
View file @
73c50248
...
...
@@ -17,7 +17,7 @@
<el-input
placeholder=
"操作内容"
v-model=
"search.search"
style=
"width: 260px;margin-left: 10px"
clearable
prefix-icon=
"el-icon-search"
@
change=
"onSearch"
></el-input>
<el-date-picker
v-model=
"search.dateRange"
@
change=
"onSearch"
:picker-options=
"pickerOptions"
clearable
style=
"width: 256px;margin-left: 10px"
type=
"daterange"
value-format=
"yyyy-MM-dd"
range-separator=
"~"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</div>
<el-table
:data=
"tableData"
style=
"margin: 20px 0"
v-loading=
"loading"
>
<el-table
:data=
"tableData"
style=
"margin: 20px 0"
>
<el-table-column
label=
"业务模块"
prop=
"businessTypeName"
:formatter=
"(row, col, val) => val || '--'"
></el-table-column>
<el-table-column
label=
"操作事项"
prop=
"optTypeName"
:formatter=
"(row, col, val) => val || '--'"
></el-table-column>
<el-table-column
label=
"操作页面"
prop=
"optPage"
:formatter=
"(row, col, val) => val || '--'"
></el-table-column>
...
...
@@ -45,7 +45,7 @@
</template>
<
script
>
import
{
logList
,
businessType
,
optTypes
}
from
'@/api/actCode'
;
import
{
logList
,
businessType
,
optTypes
,
listUserBySearchName
}
from
'@/api/actCode'
;
export
default
{
name
:
'operateLog'
,
data
()
{
...
...
@@ -123,7 +123,7 @@ export default {
const
{
pageNum
,
pageSize
,
searchName
}
=
this
.
clerkListPager
;
const
params
=
{
searchName
,
pageNum
,
pageSize
};
params
.
requestProject
=
this
.
requestProject
;
this
.
axios
.
get
(
'/api-admin/list-user-by-search-name'
,
{
params
}
).
then
(
res
=>
{
listUserBySearchName
(
params
).
then
(
res
=>
{
const
{
errorCode
,
result
}
=
res
.
data
||
{};
if
(
pageNum
==
1
)
{
this
.
userList
=
[];
...
...
@@ -176,7 +176,7 @@ export default {
<
style
scoped
lang=
"less"
>
.right-wrap
{
height
:
auto
;
padding
:
20px
;
}
.text-overflow
{
width
:
100%
;
...
...
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