|
@@ -87,9 +87,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getTableData(){
|
|
|
- //目前只有英文的
|
|
|
+ this.tableLoading = true
|
|
|
if(this.customData.Source===1){
|
|
|
- this.tableLoading = true
|
|
|
customInterence.customEnHitNumber({
|
|
|
...this.tableParams,
|
|
|
CompanyId:this.customData.CompanyId - 10000000,
|
|
@@ -100,6 +99,16 @@ export default {
|
|
|
this.dataList = res.Data.List || []
|
|
|
this.total = res.Data.Paging.Totals
|
|
|
})
|
|
|
+ }else{
|
|
|
+ customInterence.getZNCustomClickList({
|
|
|
+ ...this.tableParams,
|
|
|
+ CompanyId:this.customData.CompanyId
|
|
|
+ }).then(res=>{
|
|
|
+ this.tableLoading = false
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.dataList = res.Data.List||[]
|
|
|
+ this.total = res.Data.Paging.Totals
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
handlePageChange(page){
|