Commit 118c4915 authored by zhengke's avatar zhengke

Merge branch '1.2.0' of http://gitlab.oytour.com/viitto/pptist into 1.2.0

parents dfee44a0 8eeca947
...@@ -157,5 +157,19 @@ class ConfigService{ ...@@ -157,5 +157,19 @@ class ConfigService{
static async SetShareAsync(params:{ShareFileId:number,ShareList:{ShareType:number,ShareTargetIds:string,EditType:string}[]}):Promise<HttpResponse>{ static async SetShareAsync(params:{ShareFileId:number,ShareList:{ShareType:number,ShareTargetIds:string,EditType:string}[]}):Promise<HttpResponse>{
return Api.Post("triptemplate_SetTripShare",params) 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; export default ConfigService;
\ No newline at end of file
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
</div> </div>
<el-divider <el-divider
class="no-bg q-mt-lg" class="no-bg q-mt-lg"
v-if="queryObj.pageCount == queryObj.pageIndex && !loading" v-if="queryObj.pageCount == queryObj.pageIndex && !loading && queryObj.pageCount != 1"
> >
<span <span
class="text-small bg-white" 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