perf: theme

This commit is contained in:
xiaoxian521
2021-12-24 10:55:59 +08:00
parent e6b2eefac5
commit 749633e32c
8 changed files with 52 additions and 6 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 });
```