|
@@ -151,17 +151,17 @@ export default {
|
|
|
},
|
|
|
async searchHandle(keyword){
|
|
|
this.searchLoading = true
|
|
|
- const param = {
|
|
|
- AdminId:Number(localStorage.getItem("AdminId")),
|
|
|
+ pptInterface.getPptListV2({
|
|
|
Keyword:keyword,
|
|
|
- IsPrivate:true
|
|
|
- }
|
|
|
- const res = this.$parent.currentLang!=='en'
|
|
|
- ?await pptInterface.searchPPTByKeyWorld(param)
|
|
|
- :await pptEnInterface.searchPPTByKeyWorld(param)
|
|
|
- if(res.Ret!==200) return
|
|
|
- this.searchOptions = res.Data.List||[]
|
|
|
- this.searchLoading = false
|
|
|
+ PageSize: 100,
|
|
|
+ CurrentIndex: 1,
|
|
|
+ Source: 1,
|
|
|
+ ClassifyId: 0,
|
|
|
+ }).then(res => {
|
|
|
+ this.searchLoading = false;
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.searchOptions = res.Data.List||[];
|
|
|
+ })
|
|
|
},
|
|
|
nodeChange(data,node){
|
|
|
if(data.PptId){
|