摘要:
this.$router.push({ path:'/跳转的页面'}); 阅读全文
摘要:
面试试题系统管理 框架是ruoyi-ui 删除的接口请求可以使用post请求 或者 delete请求 post请求要把参数改成data export function topicDelete (data) { return request({ url: 'api/topic/delete', met 阅读全文
摘要:
如果是get请求参数就要写成 params export function topicList (params) { return request({ url: '/api/topic/list', method: 'get', params }) } 如果是post请求参数就要写成 data ex 阅读全文
摘要:
渲染出列表后使用 后端传来参数直接使用参数就行:questionName 使用参数 getList (questionName) { topicList({ page: this.page - 1, size: this.size, questionName: questionName }).the 阅读全文