Kaynağa Gözat

JLHWEB: 1、补充接口

JohnnyChan 1 hafta önce
ebeveyn
işleme
d4eb063273

+ 3 - 0
JLHWEB/src/api/interface/index.ts

@@ -1312,6 +1312,9 @@ export namespace Mattress {
     interfaceList: any[];
     qdList: any[];
   }
+  export interface ReqGetResetWiptype {
+    qdList: any[];
+  }
   export interface ReqMattressImport {
     mattressid?: number;
     mattresstypeid: number;

+ 7 - 0
JLHWEB/src/api/modules/quote.ts

@@ -176,3 +176,10 @@ export const GetMattressPackagMx = (params: Mattress.ReqMattressImport) => {
 export const GetMattressSubspecs = (params: Mattress.ReqRefreshMattressInterface) => {
   return http.post<Mattress.ResMattressSubspecs>(PORT1 + `/GetMattressSubspecs`, params);
 };
+
+/**
+ * @name 床垫报价:主副规格
+ */
+export const GetResetWiptype = (params: Mattress.ReqGetResetWiptype) => {
+  return http.post<Mattress.ReqGetResetWiptype>(PORT1 + `/GetResetWiptype`, params);
+};