sjz
2025-02-19 9790ff7ecc198ae3bbf10d5e3707a95d60ddab69
api/inspection.js
@@ -24,6 +24,18 @@
   })
}
export function getMtInspectionList() {
   return request({
      'url': '/check/getMtInspectionList?userNo=' + uni.getStorageSync('userInfo').code,
      'method': 'post',
      'header': {
         'Content-Type': 'application/json',
         'dataType': 'json',
         'Accept': 'application/json'
      }
   })
}
export function getInspectionInfo(checkNo) {
   return request({
      'url': '/check/getCheckInfo?checkNo=' + checkNo,
@@ -47,4 +59,28 @@
         'Accept': 'application/json'
      }
   })
}
export function getBadReason() {
   return request({
      'url': '/check/getBadReason?userNo=' + uni.getStorageSync('userInfo').code,
      'method': 'post',
      'header': {
         'Content-Type': 'application/json',
         'dataType': 'json',
         'Accept': 'application/json'
      }
   })
}
export function generateInfo(checkNo) {
   return request({
      'url': '/check/generateInfo?checkNo=' + checkNo,
      'method': 'post',
      'header': {
         'Content-Type': 'application/json',
         'dataType': 'json',
         'Accept': 'application/json'
      }
   })
}