@@ -107,9 +107,10 @@ export default {
async remoteMethod(platform_name) {
this.selectLoading = true
this.options = []
- const { code, data, message } = await asyncRequest.platlist({ platform_name })
+ const { code, data, message } = await asyncRequest.platlist({ platform_name, page: 1, size: 1000, noRelation: true })
if (code === 0) {
const { list } = data
+ console.log(list)
this.options = list
return list
} else if (code >= 100 && code <= 104) {