|
|
@@ -105,7 +105,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 获取安全检查项目下拉
|
|
|
- getSecurityTemplateSelect() {
|
|
|
+ getSecurityTemplateTypeSelect() {
|
|
|
return $http("/security/template/item/select");
|
|
|
},
|
|
|
|
|
|
@@ -123,4 +123,33 @@ export default {
|
|
|
getIndexNotice() {
|
|
|
return $http("/index/notice", {});
|
|
|
},
|
|
|
+
|
|
|
+ // 发布船舶安检
|
|
|
+ addSecurityCheck(data) {
|
|
|
+ return $http("/security/check/add", data);
|
|
|
+ },
|
|
|
+ // 发起船舶安检-安检模板下拉选择
|
|
|
+ getAddTemplateSelect(data) {
|
|
|
+ return $http("/security/check/add/template/select", data);
|
|
|
+ },
|
|
|
+ // 发起船舶安检-根据模板选择船舶
|
|
|
+ getAddTemplateShipSelect(data) {
|
|
|
+ return $http("/security/check/add/template/ship/select", data);
|
|
|
+ },
|
|
|
+ // 安检列表
|
|
|
+ getSecurityCheckList(data) {
|
|
|
+ return $http("/security/check/list", data);
|
|
|
+ },
|
|
|
+ // 船舶安检详情
|
|
|
+ getSecurityCheckDetail(data) {
|
|
|
+ return $http("/security/check/ship/detail", data);
|
|
|
+ },
|
|
|
+ // 审核安检项目
|
|
|
+ checkSecurityItem(data) {
|
|
|
+ return $http("/security/check/ship/item/check", data);
|
|
|
+ },
|
|
|
+ // 船舶安检列表
|
|
|
+ getSecurityCheckShipList(data) {
|
|
|
+ return $http("/security/check/ship/list", data);
|
|
|
+ },
|
|
|
};
|