Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pptist
Project
Project
Details
Activity
Releases
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
viitto
pptist
Commits
7448cfc1
Commit
7448cfc1
authored
Feb 26, 2024
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
列表关键词查询
parent
ec8e32a1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
43 additions
and
4 deletions
+43
-4
BrowsingHistory.vue
src/views/SellTemplate/BrowsingHistory.vue
+3
-1
RecycleBin.vue
src/views/SellTemplate/RecycleBin.vue
+1
-0
StarTarget.vue
src/views/SellTemplate/StarTarget.vue
+1
-0
journeyAdsList.vue
src/views/SellTemplate/components/journeyAdsList.vue
+37
-3
journeyAds.vue
src/views/SellTemplate/journeyAds.vue
+1
-0
No files found.
src/views/SellTemplate/BrowsingHistory.vue
View file @
7448cfc1
...
...
@@ -18,6 +18,7 @@
</div>
</div>
<div>
<!--
<el-dropdown
v-if=
"datas.selectedDatas.length>0"
trigger=
"click"
class=
"q-px-md"
>
<el-button>
<el-icon><CopyDocument
/></el-icon>
...
...
@@ -43,7 +44,7 @@
>
</el-dropdown-menu>
</
template
>
</el-dropdown>
</el-dropdown>
-->
</div>
</div>
</div>
...
...
@@ -235,6 +236,7 @@
queryObj
.
FileId
=
obj
.
FileId
}
if
(
obj
.
OrderByType
)
queryObj
.
OrderByType
=
obj
.
OrderByType
if
(
obj
.
FileName
)
queryObj
.
FileName
=
obj
.
FileName
}
datas
.
RefreshLoading
=
true
;
queryObj
.
pageIndex
=
1
;
...
...
src/views/SellTemplate/RecycleBin.vue
View file @
7448cfc1
...
...
@@ -224,6 +224,7 @@
datas
.
selectedDatas
=
[]
}
if
(
obj
.
OrderByType
)
queryObj
.
OrderByType
=
obj
.
OrderByType
if
(
obj
.
FileName
)
queryObj
.
FileName
=
obj
.
FileName
if
(
obj
.
Navigations
)
Navigations
.
value
=
obj
.
Navigations
}
datas
.
journeyAds
.
RefreshLoading
=
true
;
...
...
src/views/SellTemplate/StarTarget.vue
View file @
7448cfc1
...
...
@@ -297,6 +297,7 @@
datas
.
selectedDatas
=
[]
}
if
(
obj
.
OrderByType
)
queryObj
.
OrderByType
=
obj
.
OrderByType
if
(
obj
.
FileName
)
queryObj
.
FileName
=
obj
.
FileName
if
(
obj
.
Navigations
)
Navigations
.
value
=
obj
.
Navigations
}
datas
.
journeyAds
.
RefreshLoading
=
true
;
...
...
src/views/SellTemplate/components/journeyAdsList.vue
View file @
7448cfc1
<
template
>
<div
style=
"min-width: '700px';height: 100%;"
>
<div
style=
"min-width: '700px';height: 100%;"
ref=
"currentRootDom"
>
<table
class=
"text-small"
style=
"width: 100%"
>
<tr
@
click=
"OffEdit"
>
<th
class=
"text-left"
style=
"width: 20px;
"
>
<th
class=
"text-left"
:style=
"
{width: currentMenu==3||currentMenu==4?'20px':'0px'}
">
<el-checkbox
v-if=
"currentMenu==3||currentMenu==4"
size=
"sm"
class=
"SelectAllBox"
...
...
@@ -12,7 +12,29 @@
/>
</th>
<th
colspan=
"2"
class=
"text-light"
>
<div
class=
"text-left q-pl-md"
>
文档名称
</div>
<div
class=
"row items-center"
>
<div
class=
"text-left q-pl-md"
>
文档名称
</div>
<div>
<el-popover
:width=
"200"
trigger=
"click"
@
before-enter=
"()=>filterFileNameStatus=true"
@
before-leave=
"()=>filterFileNameStatus=false"
>
<template
#
reference
>
<el-icon
size=
"14px"
class=
"q-ml-md cusor-pointer"
>
<ArrowDown
v-if=
"!filterFileNameStatus"
/>
<ArrowUp
v-else
/>
</el-icon>
</
template
>
<el-input
v-model=
"queryObj.FileName"
placeholder=
"请输入文档关键字"
size=
"mini"
class=
"full-width"
/>
<div
class=
"q-mt-md text-right"
>
<el-button
link
class=
"q-mr-sm"
>
<span
class=
"text-bolder pingfangr"
@
click=
"setFilterNameHandler(0)"
>
重置
</span>
</el-button>
<el-button
link
type=
"primary"
>
<span
class=
"text-bolder pingfangr"
@
click=
"setFilterNameHandler(1)"
>
确认
</span>
</el-button>
</div>
</el-popover>
</div>
</div>
</th>
<th
class=
"text-light"
style=
"min-width: 150px; width: 150px"
>
<div
class=
"row items-center just-center pointer"
@
click
.
stop=
"currentMenu==-1?clickSort():''"
>
...
...
@@ -253,7 +275,18 @@ import CopyFile from "./CopyFile.vue";
const
deleteLoading
=
ref
<
any
>
(
null
);
const
removeShareLoading
=
ref
<
any
>
(
null
);
const
editObj
=
reactive
({});
const
filterFileNameStatus
=
ref
(
false
)
const
currentRootDom
=
ref
()
const
setFilterNameHandler
=
(
t
:
0
|
1
)
=>
{
filterFileNameStatus
.
value
=
false
if
(
!
t
)
queryObj
.
FileName
=
''
currentRootDom
.
value
.
click
()
let
obj
=
{
FileName
:
queryObj
.
FileName
}
emit
(
'refreshHandler'
,
obj
)
}
const
clickSort
=
(
type
:
any
)
=>
{
let
obj
=
{
OrderByType
:
queryObj
.
value
.
OrderByType
==
2
?
1
:
2
...
...
@@ -686,6 +719,7 @@ import CopyFile from "./CopyFile.vue";
}
.journeyAds-container
th
{
border-bottom
:
1px
solid
#f6f6f6
;
color
:
#A8ABB2
;
}
.journeyAds-container
th
:first-child
{
border
:
0
;
...
...
src/views/SellTemplate/journeyAds.vue
View file @
7448cfc1
...
...
@@ -307,6 +307,7 @@ const refreshHandler = (obj:any) => {
datas
.
selectedDatas
=
[]
}
if
(
obj
.
OrderByType
)
queryObj
.
OrderByType
=
obj
.
OrderByType
if
(
obj
.
FileName
==
''
||
obj
.
FileName
)
queryObj
.
FileName
=
obj
.
FileName
if
(
obj
.
Navigations
)
Navigations
.
value
=
obj
.
Navigations
}
datas
.
journeyAds
.
RefreshLoading
=
true
;
...
...
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