zhouhao
2022-01-11 e9a40ce57907184ee48d2aab1c3dab4a2e61c7ab
src/api/index.js
@@ -12,7 +12,7 @@
const api = {
    //刷新人脸识别失败后订单状态
    refreshFaceStatus(data) {
    getBizStatus(data) {
        return $http.post('/inside/getBizStatus', data);
    },
      //授信前置页面调取接口
@@ -29,9 +29,9 @@
        return $http.post('/inside/getApplyStatus', data);
    },
    //绑卡人脸识别
    faceIdUrl(data) {
        return $http.post('/faceId/url', data);
    //刷新人脸识别失败后订单状态
    refreshFaceStatus(data) {
        return $http.post('/inside/refreshFaceStatus', data);
    },
     //人脸识别结果
     faceIdResult(data) {  
@@ -44,7 +44,7 @@
    },
      //发送授权验证码
      sendVerifyCode(data) {  
            return $http.post('/signContract/sendVerifyCode', data);
            return $http.post('/inside/getMessageCode', data);
      },
        //校验授权码
        checkVerifyCode(data) {  
@@ -54,6 +54,14 @@
         signContract(data) {  
            return $http.post('/signContract/signContract3', data);
      },
         //签署合同
         signContInfo(data) {
          return $http.post('/inside/signContInfo', data);
    },
         //合同预览
         getContInfo(data) {
          return $http.post('/inside/getContInfo', data);
    },
    // ========================================
    
}