HD_wangm hace 5 meses
padre
commit
fd661c794e
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. 16 0
      api/order/detail.uts

+ 16 - 0
api/order/detail.uts

@@ -0,0 +1,16 @@
+/**
+ * 工作台详情接口
+ */
+import { request } from '../../utils/request'
+
+/**
+ * 根据 ID 获取承包商详情
+ * @param id 承包商 ID
+ */
+export const getOrderInfoById = (id: string): Promise<any> => {
+    return request({
+        url: `/gxt/order/${id}`,
+        method: 'GET'
+    })
+}
+