return_url前面的属性为undefined(通常情况下是单词拼写错误)
return {
list: [], // 数据列表
total: ''
}
type check failed for prop "total". Expected Number with value 0, got String with value ""
传值类型错误 total应该设为数字型, 这里的total设置的是字符串型 所以给total设为0(数字型)就可以解决这个报错