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
149072dc
Commit
149072dc
authored
Feb 27, 2024
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看删除 文件
parent
7464e3c9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
38 additions
and
6 deletions
+38
-6
App.vue
src/App.vue
+1
-0
BrowsingHistory.vue
src/views/SellTemplate/BrowsingHistory.vue
+3
-0
RecycleBin.vue
src/views/SellTemplate/RecycleBin.vue
+6
-2
Share.vue
src/views/SellTemplate/Share.vue
+3
-0
StarTarget.vue
src/views/SellTemplate/StarTarget.vue
+3
-0
journeyAdsList.vue
src/views/SellTemplate/components/journeyAdsList.vue
+19
-4
journeyAds.vue
src/views/SellTemplate/journeyAds.vue
+3
-0
No files found.
src/App.vue
View file @
149072dc
...
...
@@ -126,6 +126,7 @@ const sellHistoryTripTemplate = async (sellId:any,LogId:any) => {
if
(
LogId
){
queryMsg
=
{
Id
:
sellId
,
Status
:
1
}
dataRes
=
await
ConfigService
.
sellGetTemplateDetails
(
queryMsg
);
}
else
{
...
...
src/views/SellTemplate/BrowsingHistory.vue
View file @
149072dc
...
...
@@ -237,6 +237,9 @@
height
:
0px
;
}
}
::v-deep
(
.el-scrollbar__view
)
{
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/views/SellTemplate/RecycleBin.vue
View file @
149072dc
...
...
@@ -107,7 +107,8 @@
pageSize
:
50
,
pageCount
:
0
,
//总页数
FileName
:
''
,
FileType
:
-
1
FileType
:
-
1
,
IsDel
:
1
});
const
loading
=
ref
(
false
as
any
);
...
...
@@ -152,7 +153,7 @@
loading
.
value
=
true
;
try
{
if
(
queryObj
.
pageIndex
==
1
)
dataList
.
value
=
[];
let
pageRes
=
await
FolderService
.
Get
TripOtherRecycleBin
Page
(
queryObj
);
let
pageRes
=
await
FolderService
.
Get
MyTripFolder
Page
(
queryObj
);
if
(
pageRes
.
data
.
resultCode
==
ApiResult
.
SUCCESS
)
{
let
arrList
=
function
(
list
)
{
list
.
forEach
((
x
)
=>
{
...
...
@@ -259,5 +260,8 @@
height
:
0px
;
}
}
::v-deep
(
.el-scrollbar__view
)
{
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/views/SellTemplate/Share.vue
View file @
149072dc
...
...
@@ -319,6 +319,9 @@ checkPositionHandler(props.position)
getDocumentData
()
</
script
>
<
style
>
.el-table
.el-table__cell
{
padding
:
0
;
}
.sample-table
{
font-size
:
12px
!important
;
font-family
:
microsoft
yahei
!important
;
...
...
src/views/SellTemplate/StarTarget.vue
View file @
149072dc
...
...
@@ -331,5 +331,8 @@
height
:
0px
;
}
}
::v-deep
(
.el-scrollbar__view
)
{
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/views/SellTemplate/components/journeyAdsList.vue
View file @
149072dc
...
...
@@ -35,9 +35,12 @@
</div>
<div
class=
"temp-tr col q-ml-md file-name"
:class=
"
{'cusor-pointer':scope.row.FileType==0}">
<el-tooltip
v-if=
"!scope.row.editTitle"
effect=
"dark"
:content=
"scope.row.FileName"
>
<div
@
click
.
stop=
"scope.row.FileType?OffEdit():editDelete(scope.row,2)"
>
<
!--
<
div
@
click
.
stop=
"scope.row.FileType?OffEdit():editDelete(scope.row,2)"
>
{{
scope
.
row
.
FileName
?
scope
.
row
.
FileName
:
'-'
}}
</div>
</div>
-->
<div
truncated
v-html=
"scope.row.FileName.replaceAll(lastKeyword,`
<span
class=
'text-waring'
>
${lastKeyword}
</span>
`)"
@click.stop="scope.row.FileType?OffEdit():editDelete(scope.row,2)">
</div>
</el-tooltip>
<el-input
class=
"journeyAds-Input"
...
...
@@ -251,6 +254,7 @@ import CopyFile from "./CopyFile.vue";
const
editObj
=
reactive
({});
const
filterFileNameStatus
=
ref
(
false
)
const
showItemId
=
ref
(
0
)
const
lastKeyword
=
ref
(
''
)
if
(
props
.
currentMenu
==
0
){
datas
.
Title
=
'最近浏览'
datas
.
emptyTitle
=
'没有最近浏览文档'
...
...
@@ -607,10 +611,11 @@ import CopyFile from "./CopyFile.vue";
watch
(()
=>
props
.
list
,
(
n
,
o
)
=>
{
if
(
props
.
list
)
{
lastKeyword
.
value
=
queryObj
.
value
.
FileName
nextTick
(()
=>
{
dataList
.
value
=
props
.
list
})
}
}
else
lastKeyword
.
value
=
''
})
watch
(()
=>
props
.
navigations
,
(
n
,
o
)
=>
{
...
...
@@ -619,7 +624,9 @@ import CopyFile from "./CopyFile.vue";
</
script
>
<
style
lang=
"scss"
>
.el-table
.el-table__cell
{
padding
:
0
;
}
.journeyAds-Input
{
padding-right
:
20px
;
position
:
relative
;
...
...
@@ -629,9 +636,17 @@ import CopyFile from "./CopyFile.vue";
background
:
#f5f5f5
;
}
}
.el-table
{
height
:
100%
!
important
;
}
.sample-table
{
font-size
:
12px
!
important
;
font-family
:
microsoft
yahei
!
important
;
}
.
sample-table
:
:
v-deep
(
.
el-table--fit
){
height
:
100%
;
}
.sample-table
.el-table-column--selection
{
border
:
none
!
important
;
...
...
src/views/SellTemplate/journeyAds.vue
View file @
149072dc
...
...
@@ -349,4 +349,7 @@ querySearchHandler();
height
:
0px
;
}
}
::v-deep
(
.el-scrollbar__view
)
{
height
:
100%
;
}
</
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