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
27b19f3e
Commit
27b19f3e
authored
Feb 22, 2024
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改分享
parent
b18678d0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
139 additions
and
89 deletions
+139
-89
ConfigService.ts
src/services/ConfigService.ts
+14
-0
ShareForm.vue
src/views/SellTemplate/components/ShareForm.vue
+124
-88
journeyAds.vue
src/views/SellTemplate/components/journeyAds.vue
+1
-1
No files found.
src/services/ConfigService.ts
View file @
27b19f3e
...
...
@@ -143,5 +143,19 @@ class ConfigService{
static
async
SetShareAsync
(
params
:{
ShareFileId
:
number
,
ShareList
:{
ShareType
:
number
,
ShareTargetIds
:
string
,
EditType
:
string
}[]}):
Promise
<
HttpResponse
>
{
return
Api
.
Post
(
"triptemplate_SetTripShare"
,
params
)
}
static
async
GetShareAsync
(
FileId
:
number
):
Promise
<
HttpResponse
>
{
let
msg
=
{
FileId
}
return
Api
.
Post
(
"triptemplate_GetTripShareDetails"
,
msg
)
}
static
async
RemoveShareAsync
(
ShareId
:
number
):
Promise
<
HttpResponse
>
{
let
msg
=
{
ShareId
}
return
Api
.
Post
(
"triptemplate_RemoveTripShare"
,
msg
)
}
static
async
UpdateShareAsync
(
params
:{
ShareId
:
number
,
ShareTargetIds
:
string
,
EditType
:
string
}):
Promise
<
HttpResponse
>
{
return
Api
.
Post
(
"triptemplate_EditTripShare"
,
params
)
}
}
export
default
ConfigService
;
\ No newline at end of file
src/views/SellTemplate/components/ShareForm.vue
View file @
27b19f3e
This diff is collapsed.
Click to expand it.
src/views/SellTemplate/components/journeyAds.vue
View file @
27b19f3e
...
...
@@ -177,7 +177,7 @@
</div>
<el-divider
class=
"no-bg q-mt-lg"
v-if=
"queryObj.pageCount == queryObj.pageIndex && !loading"
v-if=
"queryObj.pageCount == queryObj.pageIndex && !loading
&& queryObj.pageCount != 1
"
>
<span
class=
"text-small bg-white"
...
...
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