Commit 27b19f3e authored by 罗超's avatar 罗超

修改分享

parent b18678d0
......@@ -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
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment