Parcourir la source

雇主端服务标准

gaoyognxing il y a 4 ans
Parent
commit
b57515d85e

+ 1 - 1
client/pages/customer/servantsettings/servantsettings.js

@@ -53,7 +53,7 @@ Page({
         }
     }
         //console.log(servantselectedlist);
-      request.httpServicePost(apiUrl.insertNewservantappletservicePath,{employRelationNo:employRelationNo,subjectList:servantselectedlist,subjectType:"SN000002"}).then(data=>{
+      request.httpServicePost(apiUrl.employerServiceStandard,{employRelationNo:employRelationNo,subjectList:servantselectedlist,subjectType:"SN000001"}).then(data=>{
         my.alert({
           title: data,
         });

+ 4 - 1
client/util/apiUrl.js

@@ -59,6 +59,8 @@ const selectMonthlyReportPath = baseService + "/monthly/selectMonthlyReport";
 
 //GET /monthly/selectMonthLyReportInfo   获取月报详细信息
 const selectMonthLyReportInfoPath = baseService + "/monthly/selectMonthLyReportInfo";
+//雇主的服务标准
+const employerServiceStandard = baseService + "/servicestandard/insertNewServiceStandards";
 
 export default{
 registerUserPath,
@@ -83,5 +85,6 @@ userReadNoticePath,
 customerDescribleInfo,
 servantDescribleInfo,
 selectMonthlyReportPath,
-selectMonthLyReportInfoPath
+selectMonthLyReportInfoPath,
+employerServiceStandard
 }