perf: theme

This commit is contained in:
xiaoxian521
2021-12-24 10:46:39 +08:00
parent ef91f113ee
commit 5070568b89
7 changed files with 51 additions and 5 deletions

View File

@@ -18,8 +18,8 @@ http.request('get', '/xxx?message=' + msg);
import { http } from "/@/utils/http";
// params传参
http.request('get', '/xxx', { params: param });
http.request('post', '/xxx', { params: param });
// data传参
http.request('get', '/xxx', { data: param });
http.request('post', '/xxx', { data: param });
```