@@ -1 +0,0 @@
-Subproject commit 65bde4324c6c7a3009ad75ad003f52273abc8ce3
@@ -1,5 +1,4 @@
// pages/user/user.js
-const {http} = require("../../utils/util")
const {getOrder} = require("../../API/appraise")
var getOrderOption = {
data: {
@@ -0,0 +1,16 @@
+const { http } = require('./util')
+const request = {
+ get(url, option){
+ return http(url, { method: 'GET', ...option })
+ },
+ delete(url, option){
+ return http(url, option)
+ post(url, option){
+ return http(url, { method: 'POST', ...option })
+ }
+}
+
+module.exports = {
+ request